From c5f6724a213f006419e86a7459aad38376ceef3b Mon Sep 17 00:00:00 2001 From: Florent Monbillard Date: Fri, 24 Jan 2025 17:47:56 -0500 Subject: [PATCH] Update privatedns API to 2024-06-01 --- .../containers/kubernetes_cluster_resource.go | 2 +- .../mysql/mysql_flexible_server_resource.go | 2 +- .../network/private_endpoint_resource.go | 2 +- .../postgresql_flexible_server_resource.go | 2 +- internal/services/privatedns/client/client.go | 6 +-- .../services/privatedns/client/helpers.go | 2 +- .../private_dns_a_record_data_source.go | 2 +- .../private_dns_a_record_resource.go | 2 +- .../private_dns_a_record_resource_test.go | 2 +- .../private_dns_aaaa_record_data_source.go | 2 +- .../private_dns_aaaa_record_resource.go | 2 +- .../private_dns_aaaa_record_resource_test.go | 2 +- .../private_dns_cname_record_data_source.go | 2 +- .../private_dns_cname_record_resource.go | 2 +- .../private_dns_cname_record_resource_test.go | 2 +- .../private_dns_mx_record_data_source.go | 2 +- .../private_dns_mx_record_resource.go | 2 +- .../private_dns_mx_record_resource_test.go | 2 +- .../private_dns_ptr_record_data_source.go | 2 +- .../private_dns_ptr_record_resource.go | 2 +- .../private_dns_ptr_record_resource_test.go | 2 +- .../private_dns_soa_record_data_source.go | 2 +- .../private_dns_srv_record_data_source.go | 2 +- .../private_dns_srv_record_resource.go | 2 +- .../private_dns_srv_record_resource_test.go | 2 +- .../private_dns_txt_record_data_source.go | 2 +- .../private_dns_txt_record_resource.go | 2 +- .../private_dns_txt_record_resource_test.go | 2 +- .../private_dns_zone_data_source.go | 2 +- .../privatedns/private_dns_zone_resource.go | 4 +- .../private_dns_zone_resource_test.go | 2 +- ...s_zone_virtual_network_link_data_source.go | 2 +- ..._dns_zone_virtual_network_link_resource.go | 2 +- ...zone_virtual_network_link_resource_test.go | 2 +- .../privatezones/README.md | 6 +-- .../privatezones/client.go | 0 .../privatezones/constants.go | 0 .../privatezones/id_privatednszone.go | 0 .../privatezones/method_createorupdate.go | 0 .../privatezones/method_delete.go | 0 .../privatezones/method_get.go | 0 .../privatezones/method_list.go | 0 .../method_listbyresourcegroup.go | 0 .../privatezones/method_update.go | 0 .../privatezones/model_privatezone.go | 0 .../model_privatezoneproperties.go | 0 .../privatezones/predicates.go | 0 .../privatezones/version.go | 4 +- .../recordsets/README.md | 6 +-- .../recordsets/client.go | 0 .../recordsets/constants.go | 0 .../recordsets/id_privatednszone.go | 0 .../recordsets/id_privatezone.go | 0 .../recordsets/id_recordtype.go | 0 .../recordsets/method_createorupdate.go | 0 .../recordsets/method_delete.go | 0 .../recordsets/method_get.go | 0 .../recordsets/method_list.go | 0 .../recordsets/method_listbytype.go | 0 .../recordsets/method_update.go | 0 .../recordsets/model_aaaarecord.go | 0 .../recordsets/model_arecord.go | 0 .../recordsets/model_cnamerecord.go | 0 .../recordsets/model_mxrecord.go | 0 .../recordsets/model_ptrrecord.go | 0 .../recordsets/model_recordset.go | 0 .../recordsets/model_recordsetproperties.go | 0 .../recordsets/model_soarecord.go | 0 .../recordsets/model_srvrecord.go | 0 .../recordsets/model_txtrecord.go | 0 .../recordsets/predicates.go | 0 .../recordsets/version.go | 4 +- .../virtualnetworklinks/README.md | 6 +-- .../virtualnetworklinks/client.go | 0 .../virtualnetworklinks/constants.go | 41 +++++++++++++++++++ .../virtualnetworklinks/id_privatednszone.go | 0 .../id_virtualnetworklink.go | 0 .../method_createorupdate.go | 0 .../virtualnetworklinks/method_delete.go | 0 .../virtualnetworklinks/method_get.go | 0 .../virtualnetworklinks/method_list.go | 0 .../virtualnetworklinks/method_update.go | 0 .../virtualnetworklinks/model_subresource.go | 0 .../model_virtualnetworklink.go | 0 .../model_virtualnetworklinkproperties.go | 1 + .../virtualnetworklinks/predicates.go | 0 .../virtualnetworklinks/version.go | 4 +- vendor/modules.txt | 6 +-- 88 files changed, 97 insertions(+), 55 deletions(-) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/README.md (96%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/client.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/constants.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/id_privatednszone.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/method_createorupdate.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/method_delete.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/method_get.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/method_list.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/method_listbyresourcegroup.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/method_update.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/model_privatezone.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/model_privatezoneproperties.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/predicates.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/privatezones/version.go (68%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/README.md (96%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/client.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/constants.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/id_privatednszone.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/id_privatezone.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/id_recordtype.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/method_createorupdate.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/method_delete.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/method_get.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/method_list.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/method_listbytype.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/method_update.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_aaaarecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_arecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_cnamerecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_mxrecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_ptrrecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_recordset.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_recordsetproperties.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_soarecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_srvrecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/model_txtrecord.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/predicates.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/recordsets/version.go (68%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/README.md (95%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/client.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/constants.go (73%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/id_privatednszone.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/id_virtualnetworklink.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/method_createorupdate.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/method_delete.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/method_get.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/method_list.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/method_update.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/model_subresource.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/model_virtualnetworklink.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/model_virtualnetworklinkproperties.go (87%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/predicates.go (100%) rename vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/{2020-06-01 => 2024-06-01}/virtualnetworklinks/version.go (67%) diff --git a/internal/services/containers/kubernetes_cluster_resource.go b/internal/services/containers/kubernetes_cluster_resource.go index ea916b50ebe8..930bcb13961a 100644 --- a/internal/services/containers/kubernetes_cluster_resource.go +++ b/internal/services/containers/kubernetes_cluster_resource.go @@ -25,7 +25,7 @@ import ( "github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2024-05-01/managedclusters" dnsValidate "github.com/hashicorp/go-azure-sdk/resource-manager/dns/2018-05-01/zones" "github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/workspaces" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" diff --git a/internal/services/mysql/mysql_flexible_server_resource.go b/internal/services/mysql/mysql_flexible_server_resource.go index 76117a579afd..6a601069dc52 100644 --- a/internal/services/mysql/mysql_flexible_server_resource.go +++ b/internal/services/mysql/mysql_flexible_server_resource.go @@ -19,7 +19,7 @@ import ( "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" "github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/serverfailover" "github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/servers" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" keyVaultValidate "github.com/hashicorp/terraform-provider-azurerm/internal/services/keyvault/validate" diff --git a/internal/services/network/private_endpoint_resource.go b/internal/services/network/private_endpoint_resource.go index 703e633960cd..3c941889aae8 100644 --- a/internal/services/network/private_endpoint_resource.go +++ b/internal/services/network/private_endpoint_resource.go @@ -22,7 +22,7 @@ import ( "github.com/hashicorp/go-azure-sdk/resource-manager/network/2024-03-01/privatednszonegroups" "github.com/hashicorp/go-azure-sdk/resource-manager/network/2024-03-01/privateendpoints" postgresqlServers "github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/servers" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/go-azure-sdk/resource-manager/redis/2024-03-01/redis" "github.com/hashicorp/go-azure-sdk/resource-manager/signalr/2023-02-01/signalr" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" diff --git a/internal/services/postgres/postgresql_flexible_server_resource.go b/internal/services/postgres/postgresql_flexible_server_resource.go index 7d5b7eb89cd4..b2bfa1916c83 100644 --- a/internal/services/postgres/postgresql_flexible_server_resource.go +++ b/internal/services/postgres/postgresql_flexible_server_resource.go @@ -20,7 +20,7 @@ import ( "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" "github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2021-06-01/serverrestart" "github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2023-06-01-preview/servers" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/client/client.go b/internal/services/privatedns/client/client.go index 036517ecb5d5..ff96bc606a31 100644 --- a/internal/services/privatedns/client/client.go +++ b/internal/services/privatedns/client/client.go @@ -6,9 +6,9 @@ package client import ( "fmt" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks" "github.com/hashicorp/terraform-provider-azurerm/internal/common" ) diff --git a/internal/services/privatedns/client/helpers.go b/internal/services/privatedns/client/helpers.go index a4fa70cf4aaa..a885e21c0016 100644 --- a/internal/services/privatedns/client/helpers.go +++ b/internal/services/privatedns/client/helpers.go @@ -8,7 +8,7 @@ import ( "fmt" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonids" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/go-azure-sdk/resource-manager/resources/2023-07-01/resourcegroups" ) diff --git a/internal/services/privatedns/private_dns_a_record_data_source.go b/internal/services/privatedns/private_dns_a_record_data_source.go index 38ab1aa9f37f..f2b6dbefc4fb 100644 --- a/internal/services/privatedns/private_dns_a_record_data_source.go +++ b/internal/services/privatedns/private_dns_a_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_a_record_resource.go b/internal/services/privatedns/private_dns_a_record_resource.go index 587a3c1b8e74..3598e6213c57 100644 --- a/internal/services/privatedns/private_dns_a_record_resource.go +++ b/internal/services/privatedns/private_dns_a_record_resource.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_a_record_resource_test.go b/internal/services/privatedns/private_dns_a_record_resource_test.go index 86900c519cce..b565a75bfc67 100644 --- a/internal/services/privatedns/private_dns_a_record_resource_test.go +++ b/internal/services/privatedns/private_dns_a_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_aaaa_record_data_source.go b/internal/services/privatedns/private_dns_aaaa_record_data_source.go index 0e44490391f3..a17b5a2bfebd 100644 --- a/internal/services/privatedns/private_dns_aaaa_record_data_source.go +++ b/internal/services/privatedns/private_dns_aaaa_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/set" diff --git a/internal/services/privatedns/private_dns_aaaa_record_resource.go b/internal/services/privatedns/private_dns_aaaa_record_resource.go index bde139eb3f17..152f4def3045 100644 --- a/internal/services/privatedns/private_dns_aaaa_record_resource.go +++ b/internal/services/privatedns/private_dns_aaaa_record_resource.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_aaaa_record_resource_test.go b/internal/services/privatedns/private_dns_aaaa_record_resource_test.go index b101dd5584e7..ffdb02978a75 100644 --- a/internal/services/privatedns/private_dns_aaaa_record_resource_test.go +++ b/internal/services/privatedns/private_dns_aaaa_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_cname_record_data_source.go b/internal/services/privatedns/private_dns_cname_record_data_source.go index 1b5b1cb52d04..e2b7e900357b 100644 --- a/internal/services/privatedns/private_dns_cname_record_data_source.go +++ b/internal/services/privatedns/private_dns_cname_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_cname_record_resource.go b/internal/services/privatedns/private_dns_cname_record_resource.go index 2f97720177a9..4e835de6509b 100644 --- a/internal/services/privatedns/private_dns_cname_record_resource.go +++ b/internal/services/privatedns/private_dns_cname_record_resource.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_cname_record_resource_test.go b/internal/services/privatedns/private_dns_cname_record_resource_test.go index d7676a1965dd..387e283d26e5 100644 --- a/internal/services/privatedns/private_dns_cname_record_resource_test.go +++ b/internal/services/privatedns/private_dns_cname_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_mx_record_data_source.go b/internal/services/privatedns/private_dns_mx_record_data_source.go index ceabd685f1ad..113ed1b2f0f6 100644 --- a/internal/services/privatedns/private_dns_mx_record_data_source.go +++ b/internal/services/privatedns/private_dns_mx_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_mx_record_resource.go b/internal/services/privatedns/private_dns_mx_record_resource.go index 9c6efcb9b252..f4dc7ceae8ff 100644 --- a/internal/services/privatedns/private_dns_mx_record_resource.go +++ b/internal/services/privatedns/private_dns_mx_record_resource.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_mx_record_resource_test.go b/internal/services/privatedns/private_dns_mx_record_resource_test.go index d45cec3f6678..9347adc9c34d 100644 --- a/internal/services/privatedns/private_dns_mx_record_resource_test.go +++ b/internal/services/privatedns/private_dns_mx_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_ptr_record_data_source.go b/internal/services/privatedns/private_dns_ptr_record_data_source.go index 6934249fc7d2..e57472203721 100644 --- a/internal/services/privatedns/private_dns_ptr_record_data_source.go +++ b/internal/services/privatedns/private_dns_ptr_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_ptr_record_resource.go b/internal/services/privatedns/private_dns_ptr_record_resource.go index d39acc9548c9..94396d4afd07 100644 --- a/internal/services/privatedns/private_dns_ptr_record_resource.go +++ b/internal/services/privatedns/private_dns_ptr_record_resource.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_ptr_record_resource_test.go b/internal/services/privatedns/private_dns_ptr_record_resource_test.go index efc0140b8c14..e95d8e93cfc6 100644 --- a/internal/services/privatedns/private_dns_ptr_record_resource_test.go +++ b/internal/services/privatedns/private_dns_ptr_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_soa_record_data_source.go b/internal/services/privatedns/private_dns_soa_record_data_source.go index 91673bdd75a5..e5cf68cd3c8f 100644 --- a/internal/services/privatedns/private_dns_soa_record_data_source.go +++ b/internal/services/privatedns/private_dns_soa_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_srv_record_data_source.go b/internal/services/privatedns/private_dns_srv_record_data_source.go index 83695860af2d..331fb66acc23 100644 --- a/internal/services/privatedns/private_dns_srv_record_data_source.go +++ b/internal/services/privatedns/private_dns_srv_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_srv_record_resource.go b/internal/services/privatedns/private_dns_srv_record_resource.go index d8b0863669af..fc6bb6601436 100644 --- a/internal/services/privatedns/private_dns_srv_record_resource.go +++ b/internal/services/privatedns/private_dns_srv_record_resource.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_srv_record_resource_test.go b/internal/services/privatedns/private_dns_srv_record_resource_test.go index 73b0ad827d97..887ae076b730 100644 --- a/internal/services/privatedns/private_dns_srv_record_resource_test.go +++ b/internal/services/privatedns/private_dns_srv_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_txt_record_data_source.go b/internal/services/privatedns/private_dns_txt_record_data_source.go index 41613c5451ac..29db6e9144d3 100644 --- a/internal/services/privatedns/private_dns_txt_record_data_source.go +++ b/internal/services/privatedns/private_dns_txt_record_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_txt_record_resource.go b/internal/services/privatedns/private_dns_txt_record_resource.go index b39f690d7549..483a5c334b3f 100644 --- a/internal/services/privatedns/private_dns_txt_record_resource.go +++ b/internal/services/privatedns/private_dns_txt_record_resource.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_txt_record_resource_test.go b/internal/services/privatedns/private_dns_txt_record_resource_test.go index a92d676ea852..370a16fc0abb 100644 --- a/internal/services/privatedns/private_dns_txt_record_resource_test.go +++ b/internal/services/privatedns/private_dns_txt_record_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_zone_data_source.go b/internal/services/privatedns/private_dns_zone_data_source.go index 3f68c07cad92..e929eaf3fb8c 100644 --- a/internal/services/privatedns/private_dns_zone_data_source.go +++ b/internal/services/privatedns/private_dns_zone_data_source.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/go-azure-helpers/resourcemanager/commonids" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_zone_resource.go b/internal/services/privatedns/private_dns_zone_resource.go index c30948b2e35a..3a94f47bf80b 100644 --- a/internal/services/privatedns/private_dns_zone_resource.go +++ b/internal/services/privatedns/private_dns_zone_resource.go @@ -11,8 +11,8 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_zone_resource_test.go b/internal/services/privatedns/private_dns_zone_resource_test.go index a120cf3f035f..a14674d83ec5 100644 --- a/internal/services/privatedns/private_dns_zone_resource_test.go +++ b/internal/services/privatedns/private_dns_zone_resource_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_zone_virtual_network_link_data_source.go b/internal/services/privatedns/private_dns_zone_virtual_network_link_data_source.go index 4145b3b68160..a8ae17ad23ef 100644 --- a/internal/services/privatedns/private_dns_zone_virtual_network_link_data_source.go +++ b/internal/services/privatedns/private_dns_zone_virtual_network_link_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/go-azure-helpers/lang/response" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" diff --git a/internal/services/privatedns/private_dns_zone_virtual_network_link_resource.go b/internal/services/privatedns/private_dns_zone_virtual_network_link_resource.go index 8369a9239ff3..717abf94f677 100644 --- a/internal/services/privatedns/private_dns_zone_virtual_network_link_resource.go +++ b/internal/services/privatedns/private_dns_zone_virtual_network_link_resource.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/go-azure-helpers/resourcemanager/commonids" "github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" "github.com/hashicorp/go-azure-helpers/resourcemanager/tags" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks" "github.com/hashicorp/terraform-provider-azurerm/helpers/azure" "github.com/hashicorp/terraform-provider-azurerm/helpers/tf" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/internal/services/privatedns/private_dns_zone_virtual_network_link_resource_test.go b/internal/services/privatedns/private_dns_zone_virtual_network_link_resource_test.go index 3d6be7283e8e..196e6b6fc78e 100644 --- a/internal/services/privatedns/private_dns_zone_virtual_network_link_resource_test.go +++ b/internal/services/privatedns/private_dns_zone_virtual_network_link_resource_test.go @@ -9,7 +9,7 @@ import ( "os" "testing" - "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks" + "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" "github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" "github.com/hashicorp/terraform-provider-azurerm/internal/clients" diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/README.md b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/README.md similarity index 96% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/README.md rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/README.md index aedf09996db8..f3eb9f5a7a6e 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/README.md +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/README.md @@ -1,7 +1,7 @@ -## `github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones` Documentation +## `github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones` Documentation -The `privatezones` SDK allows for interaction with Azure Resource Manager `privatedns` (API Version `2020-06-01`). +The `privatezones` SDK allows for interaction with Azure Resource Manager `privatedns` (API Version `2024-06-01`). This readme covers example usages, but further information on [using this SDK can be found in the project root](https://github.com/hashicorp/go-azure-sdk/tree/main/docs). @@ -9,7 +9,7 @@ This readme covers example usages, but further information on [using this SDK ca ```go import "github.com/hashicorp/go-azure-helpers/resourcemanager/commonids" -import "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones" +import "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones" ``` diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/client.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/client.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/client.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/client.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/constants.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/constants.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/constants.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/constants.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/id_privatednszone.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/id_privatednszone.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/id_privatednszone.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/id_privatednszone.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_createorupdate.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_createorupdate.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_createorupdate.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_createorupdate.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_delete.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_delete.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_delete.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_delete.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_get.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_get.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_get.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_get.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_list.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_list.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_list.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_list.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_listbyresourcegroup.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_listbyresourcegroup.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_listbyresourcegroup.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_listbyresourcegroup.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_update.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_update.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/method_update.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/method_update.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/model_privatezone.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/model_privatezone.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/model_privatezone.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/model_privatezone.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/model_privatezoneproperties.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/model_privatezoneproperties.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/model_privatezoneproperties.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/model_privatezoneproperties.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/predicates.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/predicates.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/predicates.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/predicates.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/version.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/version.go similarity index 68% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/version.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/version.go index f6c16bd3d7ac..b1105c70edd9 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones/version.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones/version.go @@ -3,8 +3,8 @@ package privatezones // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See NOTICE.txt in the project root for license information. -const defaultApiVersion = "2020-06-01" +const defaultApiVersion = "2024-06-01" func userAgent() string { - return "hashicorp/go-azure-sdk/privatezones/2020-06-01" + return "hashicorp/go-azure-sdk/privatezones/2024-06-01" } diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/README.md b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/README.md similarity index 96% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/README.md rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/README.md index e811d65bb641..0550235e449c 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/README.md +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/README.md @@ -1,14 +1,14 @@ -## `github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets` Documentation +## `github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets` Documentation -The `recordsets` SDK allows for interaction with Azure Resource Manager `privatedns` (API Version `2020-06-01`). +The `recordsets` SDK allows for interaction with Azure Resource Manager `privatedns` (API Version `2024-06-01`). This readme covers example usages, but further information on [using this SDK can be found in the project root](https://github.com/hashicorp/go-azure-sdk/tree/main/docs). ### Import Path ```go -import "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets" +import "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets" ``` diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/client.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/client.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/client.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/client.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/constants.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/constants.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/constants.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/constants.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/id_privatednszone.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/id_privatednszone.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/id_privatednszone.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/id_privatednszone.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/id_privatezone.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/id_privatezone.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/id_privatezone.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/id_privatezone.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/id_recordtype.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/id_recordtype.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/id_recordtype.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/id_recordtype.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_createorupdate.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_createorupdate.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_createorupdate.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_createorupdate.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_delete.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_delete.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_delete.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_delete.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_get.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_get.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_get.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_get.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_list.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_list.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_list.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_list.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_listbytype.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_listbytype.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_listbytype.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_listbytype.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_update.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_update.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/method_update.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/method_update.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_aaaarecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_aaaarecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_aaaarecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_aaaarecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_arecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_arecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_arecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_arecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_cnamerecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_cnamerecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_cnamerecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_cnamerecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_mxrecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_mxrecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_mxrecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_mxrecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_ptrrecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_ptrrecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_ptrrecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_ptrrecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_recordset.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_recordset.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_recordset.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_recordset.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_recordsetproperties.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_recordsetproperties.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_recordsetproperties.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_recordsetproperties.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_soarecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_soarecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_soarecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_soarecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_srvrecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_srvrecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_srvrecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_srvrecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_txtrecord.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_txtrecord.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/model_txtrecord.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/model_txtrecord.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/predicates.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/predicates.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/predicates.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/predicates.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/version.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/version.go similarity index 68% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/version.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/version.go index 3091b2a07561..cc37da2535c2 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets/version.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets/version.go @@ -3,8 +3,8 @@ package recordsets // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See NOTICE.txt in the project root for license information. -const defaultApiVersion = "2020-06-01" +const defaultApiVersion = "2024-06-01" func userAgent() string { - return "hashicorp/go-azure-sdk/recordsets/2020-06-01" + return "hashicorp/go-azure-sdk/recordsets/2024-06-01" } diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/README.md b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/README.md similarity index 95% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/README.md rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/README.md index 393c9449d9ce..307d7807c512 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/README.md +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/README.md @@ -1,14 +1,14 @@ -## `github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks` Documentation +## `github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks` Documentation -The `virtualnetworklinks` SDK allows for interaction with Azure Resource Manager `privatedns` (API Version `2020-06-01`). +The `virtualnetworklinks` SDK allows for interaction with Azure Resource Manager `privatedns` (API Version `2024-06-01`). This readme covers example usages, but further information on [using this SDK can be found in the project root](https://github.com/hashicorp/go-azure-sdk/tree/main/docs). ### Import Path ```go -import "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks" +import "github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks" ``` diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/client.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/client.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/client.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/client.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/constants.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/constants.go similarity index 73% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/constants.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/constants.go index a4dc3ff577e1..a5aff1657b64 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/constants.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/constants.go @@ -62,6 +62,47 @@ func parseProvisioningState(input string) (*ProvisioningState, error) { return &out, nil } +type ResolutionPolicy string + +const ( + ResolutionPolicyDefault ResolutionPolicy = "Default" + ResolutionPolicyNxDomainRedirect ResolutionPolicy = "NxDomainRedirect" +) + +func PossibleValuesForResolutionPolicy() []string { + return []string{ + string(ResolutionPolicyDefault), + string(ResolutionPolicyNxDomainRedirect), + } +} + +func (s *ResolutionPolicy) UnmarshalJSON(bytes []byte) error { + var decoded string + if err := json.Unmarshal(bytes, &decoded); err != nil { + return fmt.Errorf("unmarshaling: %+v", err) + } + out, err := parseResolutionPolicy(decoded) + if err != nil { + return fmt.Errorf("parsing %q: %+v", decoded, err) + } + *s = *out + return nil +} + +func parseResolutionPolicy(input string) (*ResolutionPolicy, error) { + vals := map[string]ResolutionPolicy{ + "default": ResolutionPolicyDefault, + "nxdomainredirect": ResolutionPolicyNxDomainRedirect, + } + if v, ok := vals[strings.ToLower(input)]; ok { + return &v, nil + } + + // otherwise presume it's an undefined value and best-effort it + out := ResolutionPolicy(input) + return &out, nil +} + type VirtualNetworkLinkState string const ( diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/id_privatednszone.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/id_privatednszone.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/id_privatednszone.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/id_privatednszone.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/id_virtualnetworklink.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/id_virtualnetworklink.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/id_virtualnetworklink.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/id_virtualnetworklink.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_createorupdate.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_createorupdate.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_createorupdate.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_createorupdate.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_delete.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_delete.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_delete.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_delete.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_get.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_get.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_get.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_get.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_list.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_list.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_list.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_list.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_update.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_update.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/method_update.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/method_update.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_subresource.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_subresource.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_subresource.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_subresource.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_virtualnetworklink.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_virtualnetworklink.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_virtualnetworklink.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_virtualnetworklink.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_virtualnetworklinkproperties.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_virtualnetworklinkproperties.go similarity index 87% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_virtualnetworklinkproperties.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_virtualnetworklinkproperties.go index 837fac336082..806c581524ca 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/model_virtualnetworklinkproperties.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/model_virtualnetworklinkproperties.go @@ -6,6 +6,7 @@ package virtualnetworklinks type VirtualNetworkLinkProperties struct { ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` RegistrationEnabled *bool `json:"registrationEnabled,omitempty"` + ResolutionPolicy *ResolutionPolicy `json:"resolutionPolicy,omitempty"` VirtualNetwork *SubResource `json:"virtualNetwork,omitempty"` VirtualNetworkLinkState *VirtualNetworkLinkState `json:"virtualNetworkLinkState,omitempty"` } diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/predicates.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/predicates.go similarity index 100% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/predicates.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/predicates.go diff --git a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/version.go b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/version.go similarity index 67% rename from vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/version.go rename to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/version.go index c2dfb866deb7..3c9470208289 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks/version.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks/version.go @@ -3,8 +3,8 @@ package virtualnetworklinks // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See NOTICE.txt in the project root for license information. -const defaultApiVersion = "2020-06-01" +const defaultApiVersion = "2024-06-01" func userAgent() string { - return "hashicorp/go-azure-sdk/virtualnetworklinks/2020-06-01" + return "hashicorp/go-azure-sdk/virtualnetworklinks/2024-06-01" } diff --git a/vendor/modules.txt b/vendor/modules.txt index 3f04b5497440..79ecf090440c 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -953,9 +953,9 @@ github.com/hashicorp/go-azure-sdk/resource-manager/postgresqlhsc/2022-11-08/conf github.com/hashicorp/go-azure-sdk/resource-manager/postgresqlhsc/2022-11-08/firewallrules github.com/hashicorp/go-azure-sdk/resource-manager/postgresqlhsc/2022-11-08/roles github.com/hashicorp/go-azure-sdk/resource-manager/powerbidedicated/2021-01-01/capacities -github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/privatezones -github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/recordsets -github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2020-06-01/virtualnetworklinks +github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/privatezones +github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/recordsets +github.com/hashicorp/go-azure-sdk/resource-manager/privatedns/2024-06-01/virtualnetworklinks github.com/hashicorp/go-azure-sdk/resource-manager/purview/2021-07-01/account github.com/hashicorp/go-azure-sdk/resource-manager/recoveryservices/2024-01-01/vaults github.com/hashicorp/go-azure-sdk/resource-manager/recoveryservices/2024-04-01/vaultcertificates