Skip to content

Commit 875e5b8

Browse files
author
SDK Automation
committed
Generated from ef362e1f672ae04861fedc2d56182f7e4608d04a
[AKS] Use POST operation for node image version (Azure#10294)
1 parent 2a21491 commit 875e5b8

Some content is hidden

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

41 files changed

+7756
-208
lines changed

sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Release History
22

3+
## 9.2.0 (2020-06-24)
4+
5+
**Features**
6+
7+
- Model ManagedClusterIdentity has a new parameter user_assigned_identities
8+
- Model ManagedClusterAADProfile has a new parameter enable_azure_rbac
9+
- Model ManagedClusterAgentPoolProfile has a new parameter proximity_placement_group_id
10+
- Model ManagedClusterAgentPoolProfileProperties has a new parameter proximity_placement_group_id
11+
- Model AgentPool has a new parameter proximity_placement_group_id
12+
- Added operation group PrivateEndpointConnectionsOperations
13+
314
## 9.1.0 (2020-06-03)
415

516
**Features**

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/_container_service_client.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ContainerServiceClient(MultiApiClientMixin, SDKClient):
4646
:type profile: azure.profiles.KnownProfiles
4747
"""
4848

49-
DEFAULT_API_VERSION = '2020-06-01'
49+
DEFAULT_API_VERSION = '2020-07-01'
5050
_PROFILE_TAG = "azure.mgmt.containerservice.ContainerServiceClient"
5151
LATEST_PROFILE = ProfileDefinition({
5252
_PROFILE_TAG: {
@@ -92,6 +92,7 @@ def models(cls, api_version=DEFAULT_API_VERSION):
9292
* 2020-03-01: :mod:`v2020_03_01.models<azure.mgmt.containerservice.v2020_03_01.models>`
9393
* 2020-04-01: :mod:`v2020_04_01.models<azure.mgmt.containerservice.v2020_04_01.models>`
9494
* 2020-06-01: :mod:`v2020_06_01.models<azure.mgmt.containerservice.v2020_06_01.models>`
95+
* 2020-07-01: :mod:`v2020_07_01.models<azure.mgmt.containerservice.v2020_07_01.models>`
9596
"""
9697
if api_version == '2017-07-01':
9798
from .v2017_07_01 import models
@@ -147,6 +148,9 @@ def models(cls, api_version=DEFAULT_API_VERSION):
147148
elif api_version == '2020-06-01':
148149
from .v2020_06_01 import models
149150
return models
151+
elif api_version == '2020-07-01':
152+
from .v2020_07_01 import models
153+
return models
150154
raise NotImplementedError("APIVersion {} is not available".format(api_version))
151155

152156
@property
@@ -164,6 +168,7 @@ def agent_pools(self):
164168
* 2020-03-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_03_01.operations.AgentPoolsOperations>`
165169
* 2020-04-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_04_01.operations.AgentPoolsOperations>`
166170
* 2020-06-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_06_01.operations.AgentPoolsOperations>`
171+
* 2020-07-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_07_01.operations.AgentPoolsOperations>`
167172
"""
168173
api_version = self._get_api_version('agent_pools')
169174
if api_version == '2019-02-01':
@@ -188,6 +193,8 @@ def agent_pools(self):
188193
from .v2020_04_01.operations import AgentPoolsOperations as OperationClass
189194
elif api_version == '2020-06-01':
190195
from .v2020_06_01.operations import AgentPoolsOperations as OperationClass
196+
elif api_version == '2020-07-01':
197+
from .v2020_07_01.operations import AgentPoolsOperations as OperationClass
191198
else:
192199
raise NotImplementedError("APIVersion {} is not available".format(api_version))
193200
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -222,6 +229,7 @@ def managed_clusters(self):
222229
* 2020-03-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_03_01.operations.ManagedClustersOperations>`
223230
* 2020-04-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_04_01.operations.ManagedClustersOperations>`
224231
* 2020-06-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_06_01.operations.ManagedClustersOperations>`
232+
* 2020-07-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_07_01.operations.ManagedClustersOperations>`
225233
"""
226234
api_version = self._get_api_version('managed_clusters')
227235
if api_version == '2018-03-31':
@@ -250,6 +258,8 @@ def managed_clusters(self):
250258
from .v2020_04_01.operations import ManagedClustersOperations as OperationClass
251259
elif api_version == '2020-06-01':
252260
from .v2020_06_01.operations import ManagedClustersOperations as OperationClass
261+
elif api_version == '2020-07-01':
262+
from .v2020_07_01.operations import ManagedClustersOperations as OperationClass
253263
else:
254264
raise NotImplementedError("APIVersion {} is not available".format(api_version))
255265
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -293,6 +303,7 @@ def operations(self):
293303
* 2020-03-01: :class:`Operations<azure.mgmt.containerservice.v2020_03_01.operations.Operations>`
294304
* 2020-04-01: :class:`Operations<azure.mgmt.containerservice.v2020_04_01.operations.Operations>`
295305
* 2020-06-01: :class:`Operations<azure.mgmt.containerservice.v2020_06_01.operations.Operations>`
306+
* 2020-07-01: :class:`Operations<azure.mgmt.containerservice.v2020_07_01.operations.Operations>`
296307
"""
297308
api_version = self._get_api_version('operations')
298309
if api_version == '2018-03-31':
@@ -321,6 +332,8 @@ def operations(self):
321332
from .v2020_04_01.operations import Operations as OperationClass
322333
elif api_version == '2020-06-01':
323334
from .v2020_06_01.operations import Operations as OperationClass
335+
elif api_version == '2020-07-01':
336+
from .v2020_07_01.operations import Operations as OperationClass
324337
else:
325338
raise NotImplementedError("APIVersion {} is not available".format(api_version))
326339
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -330,10 +343,13 @@ def private_endpoint_connections(self):
330343
"""Instance depends on the API version:
331344
332345
* 2020-06-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2020_06_01.operations.PrivateEndpointConnectionsOperations>`
346+
* 2020-07-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2020_07_01.operations.PrivateEndpointConnectionsOperations>`
333347
"""
334348
api_version = self._get_api_version('private_endpoint_connections')
335349
if api_version == '2020-06-01':
336350
from .v2020_06_01.operations import PrivateEndpointConnectionsOperations as OperationClass
351+
elif api_version == '2020-07-01':
352+
from .v2020_07_01.operations import PrivateEndpointConnectionsOperations as OperationClass
337353
else:
338354
raise NotImplementedError("APIVersion {} is not available".format(api_version))
339355
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# --------------------------------------------------------------------------
77
from .v2017_07_01.models import *
88
from .v2019_04_30.models import *
9-
from .v2020_06_01.models import *
9+
from .v2020_07_01.models import *

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_02_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,8 +738,9 @@ class ManagedCluster(Resource):
738738
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
739739
Control.
740740
:type enable_rbac: bool
741-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
742-
Pod security policy.
741+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
742+
Kubernetes pod security policy (preview). This feature is set for removal
743+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
743744
:type enable_pod_security_policy: bool
744745
:param network_profile: Profile of network configuration.
745746
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_02_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,8 +738,9 @@ class ManagedCluster(Resource):
738738
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
739739
Control.
740740
:type enable_rbac: bool
741-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
742-
Pod security policy.
741+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
742+
Kubernetes pod security policy (preview). This feature is set for removal
743+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
743744
:type enable_pod_security_policy: bool
744745
:param network_profile: Profile of network configuration.
745746
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_04_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,8 +722,9 @@ class ManagedCluster(Resource):
722722
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
723723
Control.
724724
:type enable_rbac: bool
725-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
726-
Pod security policy.
725+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
726+
Kubernetes pod security policy (preview). This feature is set for removal
727+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
727728
:type enable_pod_security_policy: bool
728729
:param network_profile: Profile of network configuration.
729730
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_04_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,8 +722,9 @@ class ManagedCluster(Resource):
722722
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
723723
Control.
724724
:type enable_rbac: bool
725-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
726-
Pod security policy.
725+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
726+
Kubernetes pod security policy (preview). This feature is set for removal
727+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
727728
:type enable_pod_security_policy: bool
728729
:param network_profile: Profile of network configuration.
729730
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_06_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,9 @@ class ManagedCluster(Resource):
879879
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
880880
Control.
881881
:type enable_rbac: bool
882-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
883-
Pod security policy.
882+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
883+
Kubernetes pod security policy (preview). This feature is set for removal
884+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
884885
:type enable_pod_security_policy: bool
885886
:param network_profile: Profile of network configuration.
886887
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_06_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,9 @@ class ManagedCluster(Resource):
879879
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
880880
Control.
881881
:type enable_rbac: bool
882-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
883-
Pod security policy.
882+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
883+
Kubernetes pod security policy (preview). This feature is set for removal
884+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
884885
:type enable_pod_security_policy: bool
885886
:param network_profile: Profile of network configuration.
886887
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_08_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -884,8 +884,9 @@ class ManagedCluster(Resource):
884884
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
885885
Control.
886886
:type enable_rbac: bool
887-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
888-
Pod security policy.
887+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
888+
Kubernetes pod security policy (preview). This feature is set for removal
889+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
889890
:type enable_pod_security_policy: bool
890891
:param network_profile: Profile of network configuration.
891892
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_08_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -884,8 +884,9 @@ class ManagedCluster(Resource):
884884
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
885885
Control.
886886
:type enable_rbac: bool
887-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
888-
Pod security policy.
887+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
888+
Kubernetes pod security policy (preview). This feature is set for removal
889+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
889890
:type enable_pod_security_policy: bool
890891
:param network_profile: Profile of network configuration.
891892
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_10_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,8 +886,9 @@ class ManagedCluster(Resource):
886886
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
887887
Control.
888888
:type enable_rbac: bool
889-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
890-
Pod security policy.
889+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
890+
Kubernetes pod security policy (preview). This feature is set for removal
891+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
891892
:type enable_pod_security_policy: bool
892893
:param network_profile: Profile of network configuration.
893894
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_10_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,8 +886,9 @@ class ManagedCluster(Resource):
886886
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
887887
Control.
888888
:type enable_rbac: bool
889-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
890-
Pod security policy.
889+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
890+
Kubernetes pod security policy (preview). This feature is set for removal
891+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
891892
:type enable_pod_security_policy: bool
892893
:param network_profile: Profile of network configuration.
893894
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_11_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,8 +903,9 @@ class ManagedCluster(Resource):
903903
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
904904
Control.
905905
:type enable_rbac: bool
906-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
907-
Pod security policy.
906+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
907+
Kubernetes pod security policy (preview). This feature is set for removal
908+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
908909
:type enable_pod_security_policy: bool
909910
:param network_profile: Profile of network configuration.
910911
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_11_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,8 +903,9 @@ class ManagedCluster(Resource):
903903
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
904904
Control.
905905
:type enable_rbac: bool
906-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
907-
Pod security policy.
906+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
907+
Kubernetes pod security policy (preview). This feature is set for removal
908+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
908909
:type enable_pod_security_policy: bool
909910
:param network_profile: Profile of network configuration.
910911
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_01_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,8 +903,9 @@ class ManagedCluster(Resource):
903903
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
904904
Control.
905905
:type enable_rbac: bool
906-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
907-
Pod security policy.
906+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
907+
Kubernetes pod security policy (preview). This feature is set for removal
908+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
908909
:type enable_pod_security_policy: bool
909910
:param network_profile: Profile of network configuration.
910911
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_01_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,8 +903,9 @@ class ManagedCluster(Resource):
903903
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
904904
Control.
905905
:type enable_rbac: bool
906-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
907-
Pod security policy.
906+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
907+
Kubernetes pod security policy (preview). This feature is set for removal
908+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
908909
:type enable_pod_security_policy: bool
909910
:param network_profile: Profile of network configuration.
910911
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_02_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -916,8 +916,9 @@ class ManagedCluster(Resource):
916916
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
917917
Control.
918918
:type enable_rbac: bool
919-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
920-
Pod security policy.
919+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
920+
Kubernetes pod security policy (preview). This feature is set for removal
921+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
921922
:type enable_pod_security_policy: bool
922923
:param network_profile: Profile of network configuration.
923924
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_02_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -916,8 +916,9 @@ class ManagedCluster(Resource):
916916
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
917917
Control.
918918
:type enable_rbac: bool
919-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
920-
Pod security policy.
919+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
920+
Kubernetes pod security policy (preview). This feature is set for removal
921+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
921922
:type enable_pod_security_policy: bool
922923
:param network_profile: Profile of network configuration.
923924
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_03_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -923,8 +923,9 @@ class ManagedCluster(Resource):
923923
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
924924
Control.
925925
:type enable_rbac: bool
926-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
927-
Pod security policy.
926+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
927+
Kubernetes pod security policy (preview). This feature is set for removal
928+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
928929
:type enable_pod_security_policy: bool
929930
:param network_profile: Profile of network configuration.
930931
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_03_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -923,8 +923,9 @@ class ManagedCluster(Resource):
923923
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
924924
Control.
925925
:type enable_rbac: bool
926-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
927-
Pod security policy.
926+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
927+
Kubernetes pod security policy (preview). This feature is set for removal
928+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
928929
:type enable_pod_security_policy: bool
929930
:param network_profile: Profile of network configuration.
930931
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_04_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -954,8 +954,9 @@ class ManagedCluster(Resource):
954954
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
955955
Control.
956956
:type enable_rbac: bool
957-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
958-
Pod security policy.
957+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
958+
Kubernetes pod security policy (preview). This feature is set for removal
959+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
959960
:type enable_pod_security_policy: bool
960961
:param network_profile: Profile of network configuration.
961962
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_04_01/models/_models_py3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -954,8 +954,9 @@ class ManagedCluster(Resource):
954954
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
955955
Control.
956956
:type enable_rbac: bool
957-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
958-
Pod security policy.
957+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
958+
Kubernetes pod security policy (preview). This feature is set for removal
959+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
959960
:type enable_pod_security_policy: bool
960961
:param network_profile: Profile of network configuration.
961962
:type network_profile:

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_06_01/models/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,8 +958,9 @@ class ManagedCluster(Resource):
958958
:param enable_rbac: Whether to enable Kubernetes Role-Based Access
959959
Control.
960960
:type enable_rbac: bool
961-
:param enable_pod_security_policy: (PREVIEW) Whether to enable Kubernetes
962-
Pod security policy.
961+
:param enable_pod_security_policy: (DEPRECATING) Whether to enable
962+
Kubernetes pod security policy (preview). This feature is set for removal
963+
on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
963964
:type enable_pod_security_policy: bool
964965
:param network_profile: Profile of network configuration.
965966
:type network_profile:

0 commit comments

Comments
 (0)