Skip to content

Commit 9a1a5f1

Browse files
authored
dependencies: go-azure-sdk - update to v0.20260415.1165701 (#32156)
[ENHANCEMENT] * dependencies: `go-azure-sdk` - update to `v0.20260415.1165701`
1 parent ca5680b commit 9a1a5f1

File tree

88 files changed

+787
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+787
-220
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ require (
1717
github.com/google/go-cmp v0.7.0
1818
github.com/google/uuid v1.6.0
1919
github.com/hashicorp/go-azure-helpers v0.76.2
20-
github.com/hashicorp/go-azure-sdk/resource-manager v0.20260407.1111603
21-
github.com/hashicorp/go-azure-sdk/sdk v0.20260407.1111603
20+
github.com/hashicorp/go-azure-sdk/resource-manager v0.20260415.1165701
21+
github.com/hashicorp/go-azure-sdk/sdk v0.20260415.1165701
2222
github.com/hashicorp/go-cty v1.5.0
2323
github.com/hashicorp/go-hclog v1.6.3
2424
github.com/hashicorp/go-multierror v1.1.1

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY
114114
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
115115
github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA=
116116
github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA=
117-
github.com/hashicorp/go-azure-sdk/resource-manager v0.20260407.1111603 h1:+6ww87+CGth80b/YIrZe4FNhwYTZwDNC+Fbk4wDfTvY=
118-
github.com/hashicorp/go-azure-sdk/resource-manager v0.20260407.1111603/go.mod h1:qmJoaeeX0Wc4NnFZUXni9iKukomO027JgpI9RYi4/G8=
119-
github.com/hashicorp/go-azure-sdk/sdk v0.20260407.1111603 h1:bjrARFvixNJcOyHxK0H0FQ6O/Pj6P4Wov97f60cqEM4=
120-
github.com/hashicorp/go-azure-sdk/sdk v0.20260407.1111603/go.mod h1:f7jjJ/cl52ErcUVFr0XXmY+8Qajgi/AM3QbB6HVw5oc=
117+
github.com/hashicorp/go-azure-sdk/resource-manager v0.20260415.1165701 h1:rjU5cMppeXZWPJW5OGudJTbz9P8YOcZnAv7XMjF2WrQ=
118+
github.com/hashicorp/go-azure-sdk/resource-manager v0.20260415.1165701/go.mod h1:vi9fQaFaRMIhoSw/7JHIaDbVACtDLlHwdkSbD3WOtgk=
119+
github.com/hashicorp/go-azure-sdk/sdk v0.20260415.1165701 h1:Oz0jgA1bHr371fwv/LfnFWSc1zsUrh9IWIKJuUhzcss=
120+
github.com/hashicorp/go-azure-sdk/sdk v0.20260415.1165701/go.mod h1:f7jjJ/cl52ErcUVFr0XXmY+8Qajgi/AM3QbB6HVw5oc=
121121
github.com/hashicorp/go-checkpoint v0.5.0 h1:MFYpPZCnQqQTE18jFwSII6eUQrD/oxMFp3mlgcqk5mU=
122122
github.com/hashicorp/go-checkpoint v0.5.0/go.mod h1:7nfLNL10NsxqO4iWuW6tWW0HjZuDrwkBuEQsVcpCOgg=
123123
github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=

internal/services/automation/automation_runbook_resource.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,7 @@ func resourceAutomationRunbookRead(d *pluginsdk.ResourceData, meta interface{})
429429
return fmt.Errorf("retrieving content for Automation Runbook %s: %+v", id, err)
430430
}
431431
}
432-
433-
if v := contentResp.Model; v != nil && *v != nil {
434-
d.Set("content", string(*v))
435-
}
432+
d.Set("content", string(pointer.From(contentResp.Model)))
436433

437434
jsMap := make(map[uuid.UUID]jobschedule.JobScheduleProperties)
438435
automationAccountId := jobschedule.NewAutomationAccountID(id.SubscriptionId, id.ResourceGroupName, id.AutomationAccountName)

internal/services/monitor/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-11/datacollectionruleassociations"
2525
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-11/datacollectionrules"
2626
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-15-preview/scheduledqueryrules"
27-
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-04-03/azuremonitorworkspaces"
27+
"github.com/hashicorp/go-azure-sdk/resource-manager/monitor/2023-04-03/azuremonitorworkspaces"
2828
"github.com/hashicorp/terraform-provider-azurerm/internal/common"
2929
)
3030

internal/services/monitor/monitor_workspace_data_source.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/hashicorp/go-azure-helpers/lang/response"
1313
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema"
1414
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
15-
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-04-03/azuremonitorworkspaces"
15+
"github.com/hashicorp/go-azure-sdk/resource-manager/monitor/2023-04-03/azuremonitorworkspaces"
1616
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"
1717
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk"
1818
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation"

internal/services/monitor/monitor_workspace_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/hashicorp/go-azure-helpers/lang/response"
1313
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema"
1414
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
15-
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-04-03/azuremonitorworkspaces"
15+
"github.com/hashicorp/go-azure-sdk/resource-manager/monitor/2023-04-03/azuremonitorworkspaces"
1616
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"
1717
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk"
1818
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation"

internal/services/monitor/monitor_workspace_resource_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/hashicorp/go-azure-helpers/lang/pointer"
1212
"github.com/hashicorp/go-azure-helpers/lang/response"
13-
"github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-04-03/azuremonitorworkspaces"
13+
"github.com/hashicorp/go-azure-sdk/resource-manager/monitor/2023-04-03/azuremonitorworkspaces"
1414
"github.com/hashicorp/terraform-provider-azurerm/internal/acceptance"
1515
"github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check"
1616
"github.com/hashicorp/terraform-provider-azurerm/internal/clients"

vendor/github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2020-02-02/componentsapis/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2020-02-02/componentsapis/method_componentsupdatetags.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2020-02-02/componentsapis/model_tagsresource.go renamed to vendor/github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2020-02-02/componentsapis/model_applicationinsightscommontypestagsresource.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)