Skip to content

Commit

Permalink
Generated from ef362e1f672ae04861fedc2d56182f7e4608d04a
Browse files Browse the repository at this point in the history
[AKS] Use POST operation for node image version (Azure#10294)
  • Loading branch information
SDK Automation committed Aug 5, 2020
1 parent 2a21491 commit 875e5b8
Show file tree
Hide file tree
Showing 41 changed files with 7,756 additions and 208 deletions.
11 changes: 11 additions & 0 deletions sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Release History

## 9.2.0 (2020-06-24)

**Features**

- Model ManagedClusterIdentity has a new parameter user_assigned_identities
- Model ManagedClusterAADProfile has a new parameter enable_azure_rbac
- Model ManagedClusterAgentPoolProfile has a new parameter proximity_placement_group_id
- Model ManagedClusterAgentPoolProfileProperties has a new parameter proximity_placement_group_id
- Model AgentPool has a new parameter proximity_placement_group_id
- Added operation group PrivateEndpointConnectionsOperations

## 9.1.0 (2020-06-03)

**Features**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ContainerServiceClient(MultiApiClientMixin, SDKClient):
:type profile: azure.profiles.KnownProfiles
"""

DEFAULT_API_VERSION = '2020-06-01'
DEFAULT_API_VERSION = '2020-07-01'
_PROFILE_TAG = "azure.mgmt.containerservice.ContainerServiceClient"
LATEST_PROFILE = ProfileDefinition({
_PROFILE_TAG: {
Expand Down Expand Up @@ -92,6 +92,7 @@ def models(cls, api_version=DEFAULT_API_VERSION):
* 2020-03-01: :mod:`v2020_03_01.models<azure.mgmt.containerservice.v2020_03_01.models>`
* 2020-04-01: :mod:`v2020_04_01.models<azure.mgmt.containerservice.v2020_04_01.models>`
* 2020-06-01: :mod:`v2020_06_01.models<azure.mgmt.containerservice.v2020_06_01.models>`
* 2020-07-01: :mod:`v2020_07_01.models<azure.mgmt.containerservice.v2020_07_01.models>`
"""
if api_version == '2017-07-01':
from .v2017_07_01 import models
Expand Down Expand Up @@ -147,6 +148,9 @@ def models(cls, api_version=DEFAULT_API_VERSION):
elif api_version == '2020-06-01':
from .v2020_06_01 import models
return models
elif api_version == '2020-07-01':
from .v2020_07_01 import models
return models
raise NotImplementedError("APIVersion {} is not available".format(api_version))

@property
Expand All @@ -164,6 +168,7 @@ def agent_pools(self):
* 2020-03-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_03_01.operations.AgentPoolsOperations>`
* 2020-04-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_04_01.operations.AgentPoolsOperations>`
* 2020-06-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_06_01.operations.AgentPoolsOperations>`
* 2020-07-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_07_01.operations.AgentPoolsOperations>`
"""
api_version = self._get_api_version('agent_pools')
if api_version == '2019-02-01':
Expand All @@ -188,6 +193,8 @@ def agent_pools(self):
from .v2020_04_01.operations import AgentPoolsOperations as OperationClass
elif api_version == '2020-06-01':
from .v2020_06_01.operations import AgentPoolsOperations as OperationClass
elif api_version == '2020-07-01':
from .v2020_07_01.operations import AgentPoolsOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand Down Expand Up @@ -222,6 +229,7 @@ def managed_clusters(self):
* 2020-03-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_03_01.operations.ManagedClustersOperations>`
* 2020-04-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_04_01.operations.ManagedClustersOperations>`
* 2020-06-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_06_01.operations.ManagedClustersOperations>`
* 2020-07-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_07_01.operations.ManagedClustersOperations>`
"""
api_version = self._get_api_version('managed_clusters')
if api_version == '2018-03-31':
Expand Down Expand Up @@ -250,6 +258,8 @@ def managed_clusters(self):
from .v2020_04_01.operations import ManagedClustersOperations as OperationClass
elif api_version == '2020-06-01':
from .v2020_06_01.operations import ManagedClustersOperations as OperationClass
elif api_version == '2020-07-01':
from .v2020_07_01.operations import ManagedClustersOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand Down Expand Up @@ -293,6 +303,7 @@ def operations(self):
* 2020-03-01: :class:`Operations<azure.mgmt.containerservice.v2020_03_01.operations.Operations>`
* 2020-04-01: :class:`Operations<azure.mgmt.containerservice.v2020_04_01.operations.Operations>`
* 2020-06-01: :class:`Operations<azure.mgmt.containerservice.v2020_06_01.operations.Operations>`
* 2020-07-01: :class:`Operations<azure.mgmt.containerservice.v2020_07_01.operations.Operations>`
"""
api_version = self._get_api_version('operations')
if api_version == '2018-03-31':
Expand Down Expand Up @@ -321,6 +332,8 @@ def operations(self):
from .v2020_04_01.operations import Operations as OperationClass
elif api_version == '2020-06-01':
from .v2020_06_01.operations import Operations as OperationClass
elif api_version == '2020-07-01':
from .v2020_07_01.operations import Operations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -330,10 +343,13 @@ def private_endpoint_connections(self):
"""Instance depends on the API version:
* 2020-06-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2020_06_01.operations.PrivateEndpointConnectionsOperations>`
* 2020-07-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2020_07_01.operations.PrivateEndpointConnectionsOperations>`
"""
api_version = self._get_api_version('private_endpoint_connections')
if api_version == '2020-06-01':
from .v2020_06_01.operations import PrivateEndpointConnectionsOperations as OperationClass
elif api_version == '2020-07-01':
from .v2020_07_01.operations import PrivateEndpointConnectionsOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# --------------------------------------------------------------------------
from .v2017_07_01.models import *
from .v2019_04_30.models import *
from .v2020_06_01.models import *
from .v2020_07_01.models import *
Original file line number Diff line number Diff line change
Expand Up @@ -738,8 +738,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -738,8 +738,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -879,8 +879,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -879,8 +879,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,8 +884,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,8 +884,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -886,8 +886,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -886,8 +886,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -903,8 +903,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -903,8 +903,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -903,8 +903,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -903,8 +903,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -916,8 +916,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -916,8 +916,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -923,8 +923,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -923,8 +923,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -954,8 +954,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -954,8 +954,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -958,8 +958,9 @@ class ManagedCluster(Resource):
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
Control.
:type enable_rbac: bool
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
Pod security policy.
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
Kubernetes pod security policy (preview). This feature is set for removal
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
:type enable_pod_security_policy: bool
:param network_profile: Profile of network configuration.
:type network_profile:
Expand Down
Loading

0 comments on commit 875e5b8

Please sign in to comment.