From 4dc8d4840e80bde4ce075c336f18dd080658cefb Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Thu, 7 Dec 2023 14:43:15 +0100 Subject: [PATCH] dependencies: updating to `v0.20231207.1122031` of `github.com/hashicorp/go-azure-sdk` --- go.mod | 2 +- go.sum | 4 ++-- .../sdk/client/resourcemanager/poller_lro.go | 2 ++ .../hashicorp/go-azure-sdk/sdk/environments/helpers.go | 10 +++++----- vendor/modules.txt | 2 +- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index f02c3c013952..3147a84dbd8b 100644 --- a/go.mod +++ b/go.mod @@ -17,7 +17,7 @@ require ( github.com/google/go-cmp v0.5.9 github.com/google/uuid v1.3.1 github.com/hashicorp/go-azure-helpers v0.64.0 - github.com/hashicorp/go-azure-sdk v0.20231129.1103252 + github.com/hashicorp/go-azure-sdk v0.20231207.1122031 github.com/hashicorp/go-hclog v1.5.0 github.com/hashicorp/go-multierror v1.1.1 github.com/hashicorp/go-uuid v1.0.3 diff --git a/go.sum b/go.sum index cc28bb6a85fe..6ccf4548f937 100644 --- a/go.sum +++ b/go.sum @@ -113,8 +113,8 @@ github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brv github.com/hashicorp/go-azure-helpers v0.12.0/go.mod h1:Zc3v4DNeX6PDdy7NljlYpnrdac1++qNW0I4U+ofGwpg= github.com/hashicorp/go-azure-helpers v0.64.0 h1:JNTt0F7tbApmpmF9hzNq2TN1lduOiXJFkMFoAPVctK8= github.com/hashicorp/go-azure-helpers v0.64.0/go.mod h1:ELmZ65vzHJNTk6ml4jsPD+xq2gZb7t78D35s+XN02Kk= -github.com/hashicorp/go-azure-sdk v0.20231129.1103252 h1:H5SzxFYj++yIwN4o3WeEz0qMDFDOGeQt+H/j0yyhhz8= -github.com/hashicorp/go-azure-sdk v0.20231129.1103252/go.mod h1:MfF4SCtGLaSP7OeJk+Y3xd4MQL5tFbz31c+ERP1S9D0= +github.com/hashicorp/go-azure-sdk v0.20231207.1122031 h1:WQiPkUa6KgEFHCRNw7Ylv4896im7hoYbA0/Xef2cMhE= +github.com/hashicorp/go-azure-sdk v0.20231207.1122031/go.mod h1:b5nMCVXXrqnjFGBmtpJZ0lFvghDm+FiuWmjjAMFu6Ug= github.com/hashicorp/go-checkpoint v0.5.0 h1:MFYpPZCnQqQTE18jFwSII6eUQrD/oxMFp3mlgcqk5mU= github.com/hashicorp/go-checkpoint v0.5.0/go.mod h1:7nfLNL10NsxqO4iWuW6tWW0HjZuDrwkBuEQsVcpCOgg= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= diff --git a/vendor/github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager/poller_lro.go b/vendor/github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager/poller_lro.go index a910f53449f7..86a1e5171c40 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager/poller_lro.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager/poller_lro.go @@ -164,6 +164,8 @@ func (p *longRunningOperationPoller) Poll(ctx context.Context) (result *pollers. // whilst the standard set above should be sufficient, some APIs differ from the spec and should be documented below: // Dashboard@2022-08-01 returns `Accepted` rather than `InProgress` during creation "Accepted": pollers.PollingStatusInProgress, + // EventGrid@2022-06-15 returns `Active` rather than `InProgress` during creation + "Active": pollers.PollingStatusInProgress, // NetAppVolumeReplication @ 2023-05-01 returns `AuthorizeReplication` during authorizing replication "AuthorizeReplication": pollers.PollingStatusInProgress, // NetAppVolumeReplication @ 2023-05-01 returns `BreakReplication` during breaking replication diff --git a/vendor/github.com/hashicorp/go-azure-sdk/sdk/environments/helpers.go b/vendor/github.com/hashicorp/go-azure-sdk/sdk/environments/helpers.go index 6f71964f3b89..81cf19d57b52 100644 --- a/vendor/github.com/hashicorp/go-azure-sdk/sdk/environments/helpers.go +++ b/vendor/github.com/hashicorp/go-azure-sdk/sdk/environments/helpers.go @@ -51,7 +51,7 @@ func BatchAPI(endpoint string) *ApiEndpoint { endpoint: pointer.To(endpoint), appId: pointer.To(batchAppId), name: "Batch", - resourceIdentifier: pointer.To("https://batch.core.windows.net"), + resourceIdentifier: pointer.To(endpoint), } } @@ -121,7 +121,7 @@ func ManagedHSMAPI(endpoint, domainSuffix string) Api { endpoint: pointer.To(endpoint), appId: pointer.To(managedHSMAppId), name: "ManagedHSM", - resourceIdentifier: pointer.To("https://managedhsm.azure.net"), + resourceIdentifier: pointer.To(endpoint), } } @@ -141,7 +141,7 @@ func MicrosoftGraphAPI(endpoint string) *ApiEndpoint { endpoint: pointer.To(endpoint), appId: pointer.To(microsoftGraphAppId), name: "MicrosoftGraph", - resourceIdentifier: pointer.To("https://graph.microsoft.com"), + resourceIdentifier: pointer.To(endpoint), } } @@ -181,7 +181,7 @@ func ResourceManagerAPI(endpoint string) *ApiEndpoint { endpoint: pointer.To(endpoint), appId: pointer.To(azureServiceManagementAppId), name: "ResourceManager", - resourceIdentifier: pointer.To("https://management.azure.com"), + resourceIdentifier: pointer.To(endpoint), } } @@ -191,7 +191,7 @@ func ServiceBusAPI(endpoint, domainSuffix string) Api { endpoint: pointer.To(endpoint), appId: pointer.To(serviceBusAppId), name: "ServiceBus", - resourceIdentifier: pointer.To("https://servicebus.azure.net"), + resourceIdentifier: pointer.To(endpoint), } } diff --git a/vendor/modules.txt b/vendor/modules.txt index 1bb8f4b6ad48..ed14c8d88d06 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -157,7 +157,7 @@ github.com/hashicorp/go-azure-helpers/resourcemanager/tags github.com/hashicorp/go-azure-helpers/resourcemanager/zones github.com/hashicorp/go-azure-helpers/sender github.com/hashicorp/go-azure-helpers/storage -# github.com/hashicorp/go-azure-sdk v0.20231129.1103252 +# github.com/hashicorp/go-azure-sdk v0.20231207.1122031 ## explicit; go 1.21 github.com/hashicorp/go-azure-sdk/resource-manager/aad/2021-05-01/domainservices github.com/hashicorp/go-azure-sdk/resource-manager/aadb2c/2021-04-01-preview