Skip to content

Commit 3130669

Browse files
sreallymatthqhqhqhqhqhqhqhqhqhqhq
authored andcommitted
appconfiguration - upgrade API version from 2023-03-01 to 2024-05-01 (hashicorp#28700)
1 parent a19b6b3 commit 3130669

File tree

74 files changed

+148
-55
lines changed

Some content is hidden

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

74 files changed

+148
-55
lines changed

internal/services/appconfiguration/app_configuration.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/hashicorp/go-azure-helpers/lang/pointer"
1313
"github.com/hashicorp/go-azure-helpers/lang/response"
1414
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
15-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
16-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/replicas"
15+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
16+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/replicas"
1717
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk"
1818
"github.com/jackofallops/kermit/sdk/appconfiguration/1.0/appconfiguration"
1919
)

internal/services/appconfiguration/app_configuration_data_source.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/hashicorp/go-azure-helpers/resourcemanager/identity"
1414
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
1515
"github.com/hashicorp/go-azure-helpers/resourcemanager/tags"
16-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
17-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/replicas"
16+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
17+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/replicas"
1818
"github.com/hashicorp/terraform-provider-azurerm/internal/clients"
1919
"github.com/hashicorp/terraform-provider-azurerm/internal/services/appconfiguration/validate"
2020
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk"

internal/services/appconfiguration/app_configuration_feature_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/hashicorp/go-azure-helpers/lang/pointer"
1717
"github.com/hashicorp/go-azure-helpers/lang/response"
1818
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonids"
19-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
19+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
2020
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
2121
"github.com/hashicorp/terraform-provider-azurerm/helpers/tf"
2222
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"

internal/services/appconfiguration/app_configuration_key_data_source.go

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

1212
"github.com/Azure/go-autorest/autorest"
1313
"github.com/hashicorp/go-azure-helpers/lang/pointer"
14-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
14+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
1515
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"
1616
"github.com/hashicorp/terraform-provider-azurerm/internal/services/appconfiguration/parse"
1717
"github.com/hashicorp/terraform-provider-azurerm/internal/tags"

internal/services/appconfiguration/app_configuration_key_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/Azure/go-autorest/autorest"
1515
"github.com/hashicorp/go-azure-helpers/lang/pointer"
1616
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonids"
17-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
17+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
1818
"github.com/hashicorp/terraform-provider-azurerm/helpers/tf"
1919
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"
2020
"github.com/hashicorp/terraform-provider-azurerm/internal/services/appconfiguration/migration"

internal/services/appconfiguration/app_configuration_keys_data_source.go

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

1212
"github.com/Azure/go-autorest/autorest"
1313
"github.com/hashicorp/go-azure-helpers/lang/pointer"
14-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
14+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
1515
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"
1616
"github.com/hashicorp/terraform-provider-azurerm/internal/services/appconfiguration/parse"
1717
"github.com/hashicorp/terraform-provider-azurerm/internal/tags"

internal/services/appconfiguration/app_configuration_resource.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import (
1919
"github.com/hashicorp/go-azure-helpers/resourcemanager/identity"
2020
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
2121
"github.com/hashicorp/go-azure-helpers/resourcemanager/tags"
22-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
23-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/deletedconfigurationstores"
24-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/operations"
25-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/replicas"
22+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
23+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/deletedconfigurationstores"
24+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/operations"
25+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/replicas"
2626
"github.com/hashicorp/go-azure-sdk/sdk/client"
2727
"github.com/hashicorp/go-azure-sdk/sdk/client/pollers"
2828
"github.com/hashicorp/terraform-provider-azurerm/helpers/tf"

internal/services/appconfiguration/app_configuration_resource_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"regexp"
1010
"testing"
1111

12-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
12+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
1313
"github.com/hashicorp/terraform-provider-azurerm/internal/acceptance"
1414
"github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check"
1515
"github.com/hashicorp/terraform-provider-azurerm/internal/clients"

internal/services/appconfiguration/client/client.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"fmt"
88

99
"github.com/Azure/go-autorest/autorest"
10-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
11-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/deletedconfigurationstores"
12-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/operations"
13-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/replicas"
10+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
11+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/deletedconfigurationstores"
12+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/operations"
13+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/replicas"
1414
authWrapper "github.com/hashicorp/go-azure-sdk/sdk/auth/autorest"
1515
"github.com/hashicorp/go-azure-sdk/sdk/environments"
1616
"github.com/hashicorp/terraform-provider-azurerm/internal/common"

internal/services/appconfiguration/client/helpers.go

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

1313
"github.com/hashicorp/go-azure-helpers/lang/response"
1414
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonids"
15-
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2023-03-01/configurationstores"
15+
"github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores"
1616
)
1717

1818
var (

0 commit comments

Comments
 (0)