Skip to content

Commit da0f72e

Browse files
jmcshanejmcshan2
authored and
jmcshan2
committed
Upgrading containerservice API to 2020-04-01 to support new features
1 parent f3e1e1e commit da0f72e

17 files changed

+70
-40
lines changed

azurerm/internal/services/containers/client/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package client
33
import (
44
"github.com/Azure/azure-sdk-for-go/services/containerinstance/mgmt/2018-10-01/containerinstance"
55
"github.com/Azure/azure-sdk-for-go/services/containerregistry/mgmt/2018-09-01/containerregistry"
6-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
6+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
77
"github.com/Azure/go-autorest/autorest/azure"
88
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/common"
99
)

azurerm/internal/services/containers/kubernetes_addons.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
7+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
88
"github.com/Azure/go-autorest/autorest/azure"
99
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1010
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"

azurerm/internal/services/containers/kubernetes_cluster_data_source.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"time"
77

8-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
8+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
99
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1010
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"
1111
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/kubernetes"

azurerm/internal/services/containers/kubernetes_cluster_node_pool_data_source.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"time"
66

7-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
7+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
88
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
99
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
1010
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"

azurerm/internal/services/containers/kubernetes_cluster_node_pool_resource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"time"
88

9-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
9+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
1010
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1111
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
1212
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"

azurerm/internal/services/containers/kubernetes_cluster_resource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
10+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
1111
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1212
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
1313
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"

azurerm/internal/services/containers/kubernetes_cluster_validate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"strings"
88

9-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
9+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
1010
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1111
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/services/containers/client"
1212
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"

azurerm/internal/services/containers/kubernetes_nodepool.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package containers
33
import (
44
"fmt"
55

6-
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice"
6+
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice"
77
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
88
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
99
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"

vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice/agentpools.go vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice/agentpools.go

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice/managedclusters.go vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice/managedclusters.go

+19-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice/models.go vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice/models.go

+34-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-03-01/containerservice/operations.go vendor/github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-04-01/containerservice/operations.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)