Skip to content

Commit d84085d

Browse files
Azure CLI BotSDKAuto
andauthored
[AutoRelease] t1-containerservice-2021-06-17-42969 (Azure#19291)
* CodeGen from PR 14709 in Azure/azure-rest-api-specs java mgmt, aks, add needed json (Azure#14709) * version,CHANGELOG Co-authored-by: SDKAuto <[email protected]> Co-authored-by: PythonSdkPipelines <PythonSdkPipelines>
1 parent 16a364b commit d84085d

File tree

46 files changed

+10909
-28
lines changed

Some content is hidden

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

46 files changed

+10909
-28
lines changed

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

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

3+
## 12.0.0 (2021-06-17)
4+
5+
**Features**
6+
7+
- Model ManagedClusterAPIServerAccessProfile has a new parameter enable_private_cluster_public_fqdn
8+
- Model AgentPool has a new parameter enable_ultra_ssd
9+
- Model ManagedClusterAgentPoolProfile has a new parameter enable_ultra_ssd
10+
- Model ManagedClusterAgentPoolProfileProperties has a new parameter enable_ultra_ssd
11+
- Added operation ManagedClustersOperations.list_outbound_network_dependencies_endpoints
12+
13+
**Breaking changes**
14+
15+
- Operation ManagedClustersOperations.list_cluster_admin_credentials has a new signature
16+
- Operation ManagedClustersOperations.list_cluster_monitoring_user_credentials has a new signature
17+
- Operation ManagedClustersOperations.list_cluster_user_credentials has a new signature
18+
319
## 11.2.0 (2021-04-07)
420

521
**Features**

sdk/containerservice/azure-mgmt-containerservice/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"autorest": "V2",
33
"use": "@microsoft.azure/autorest.python@~4.0.71",
4-
"commit": "8c3c899722a412e9e61264459d6426e64925cd68",
4+
"commit": "1f0bb3f63b1664ace42cfdf646d8b2382d7b7b22",
55
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
66
"autorest_command": "autorest specification/containerservice/resource-manager/readme.md --keep-version-file --multiapi --no-async --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk [email protected]/autorest.python@~4.0.71 --version=V2",
77
"readme": "specification/containerservice/resource-manager/readme.md"

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

Lines changed: 26 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 = '2021-03-01'
49+
DEFAULT_API_VERSION = '2021-05-01'
5050
_PROFILE_TAG = "azure.mgmt.containerservice.ContainerServiceClient"
5151
LATEST_PROFILE = ProfileDefinition({
5252
_PROFILE_TAG: {
@@ -98,6 +98,7 @@ def models(cls, api_version=DEFAULT_API_VERSION):
9898
* 2020-12-01: :mod:`v2020_12_01.models<azure.mgmt.containerservice.v2020_12_01.models>`
9999
* 2021-02-01: :mod:`v2021_02_01.models<azure.mgmt.containerservice.v2021_02_01.models>`
100100
* 2021-03-01: :mod:`v2021_03_01.models<azure.mgmt.containerservice.v2021_03_01.models>`
101+
* 2021-05-01: :mod:`v2021_05_01.models<azure.mgmt.containerservice.v2021_05_01.models>`
101102
"""
102103
if api_version == '2017-07-01':
103104
from .v2017_07_01 import models
@@ -171,6 +172,9 @@ def models(cls, api_version=DEFAULT_API_VERSION):
171172
elif api_version == '2021-03-01':
172173
from .v2021_03_01 import models
173174
return models
175+
elif api_version == '2021-05-01':
176+
from .v2021_05_01 import models
177+
return models
174178
raise NotImplementedError("APIVersion {} is not available".format(api_version))
175179

176180
@property
@@ -194,6 +198,7 @@ def agent_pools(self):
194198
* 2020-12-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2020_12_01.operations.AgentPoolsOperations>`
195199
* 2021-02-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2021_02_01.operations.AgentPoolsOperations>`
196200
* 2021-03-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2021_03_01.operations.AgentPoolsOperations>`
201+
* 2021-05-01: :class:`AgentPoolsOperations<azure.mgmt.containerservice.v2021_05_01.operations.AgentPoolsOperations>`
197202
"""
198203
api_version = self._get_api_version('agent_pools')
199204
if api_version == '2019-02-01':
@@ -230,6 +235,8 @@ def agent_pools(self):
230235
from .v2021_02_01.operations import AgentPoolsOperations as OperationClass
231236
elif api_version == '2021-03-01':
232237
from .v2021_03_01.operations import AgentPoolsOperations as OperationClass
238+
elif api_version == '2021-05-01':
239+
from .v2021_05_01.operations import AgentPoolsOperations as OperationClass
233240
else:
234241
raise NotImplementedError("APIVersion {} is not available".format(api_version))
235242
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -254,6 +261,7 @@ def maintenance_configurations(self):
254261
* 2020-12-01: :class:`MaintenanceConfigurationsOperations<azure.mgmt.containerservice.v2020_12_01.operations.MaintenanceConfigurationsOperations>`
255262
* 2021-02-01: :class:`MaintenanceConfigurationsOperations<azure.mgmt.containerservice.v2021_02_01.operations.MaintenanceConfigurationsOperations>`
256263
* 2021-03-01: :class:`MaintenanceConfigurationsOperations<azure.mgmt.containerservice.v2021_03_01.operations.MaintenanceConfigurationsOperations>`
264+
* 2021-05-01: :class:`MaintenanceConfigurationsOperations<azure.mgmt.containerservice.v2021_05_01.operations.MaintenanceConfigurationsOperations>`
257265
"""
258266
api_version = self._get_api_version('maintenance_configurations')
259267
if api_version == '2020-12-01':
@@ -262,6 +270,8 @@ def maintenance_configurations(self):
262270
from .v2021_02_01.operations import MaintenanceConfigurationsOperations as OperationClass
263271
elif api_version == '2021-03-01':
264272
from .v2021_03_01.operations import MaintenanceConfigurationsOperations as OperationClass
273+
elif api_version == '2021-05-01':
274+
from .v2021_05_01.operations import MaintenanceConfigurationsOperations as OperationClass
265275
else:
266276
raise NotImplementedError("APIVersion {} is not available".format(api_version))
267277
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -289,6 +299,7 @@ def managed_clusters(self):
289299
* 2020-12-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2020_12_01.operations.ManagedClustersOperations>`
290300
* 2021-02-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2021_02_01.operations.ManagedClustersOperations>`
291301
* 2021-03-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2021_03_01.operations.ManagedClustersOperations>`
302+
* 2021-05-01: :class:`ManagedClustersOperations<azure.mgmt.containerservice.v2021_05_01.operations.ManagedClustersOperations>`
292303
"""
293304
api_version = self._get_api_version('managed_clusters')
294305
if api_version == '2018-03-31':
@@ -329,6 +340,8 @@ def managed_clusters(self):
329340
from .v2021_02_01.operations import ManagedClustersOperations as OperationClass
330341
elif api_version == '2021-03-01':
331342
from .v2021_03_01.operations import ManagedClustersOperations as OperationClass
343+
elif api_version == '2021-05-01':
344+
from .v2021_05_01.operations import ManagedClustersOperations as OperationClass
332345
else:
333346
raise NotImplementedError("APIVersion {} is not available".format(api_version))
334347
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -378,6 +391,7 @@ def operations(self):
378391
* 2020-12-01: :class:`Operations<azure.mgmt.containerservice.v2020_12_01.operations.Operations>`
379392
* 2021-02-01: :class:`Operations<azure.mgmt.containerservice.v2021_02_01.operations.Operations>`
380393
* 2021-03-01: :class:`Operations<azure.mgmt.containerservice.v2021_03_01.operations.Operations>`
394+
* 2021-05-01: :class:`Operations<azure.mgmt.containerservice.v2021_05_01.operations.Operations>`
381395
"""
382396
api_version = self._get_api_version('operations')
383397
if api_version == '2018-03-31':
@@ -418,6 +432,8 @@ def operations(self):
418432
from .v2021_02_01.operations import Operations as OperationClass
419433
elif api_version == '2021-03-01':
420434
from .v2021_03_01.operations import Operations as OperationClass
435+
elif api_version == '2021-05-01':
436+
from .v2021_05_01.operations import Operations as OperationClass
421437
else:
422438
raise NotImplementedError("APIVersion {} is not available".format(api_version))
423439
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -433,6 +449,7 @@ def private_endpoint_connections(self):
433449
* 2020-12-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2020_12_01.operations.PrivateEndpointConnectionsOperations>`
434450
* 2021-02-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2021_02_01.operations.PrivateEndpointConnectionsOperations>`
435451
* 2021-03-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2021_03_01.operations.PrivateEndpointConnectionsOperations>`
452+
* 2021-05-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.containerservice.v2021_05_01.operations.PrivateEndpointConnectionsOperations>`
436453
"""
437454
api_version = self._get_api_version('private_endpoint_connections')
438455
if api_version == '2020-06-01':
@@ -449,6 +466,8 @@ def private_endpoint_connections(self):
449466
from .v2021_02_01.operations import PrivateEndpointConnectionsOperations as OperationClass
450467
elif api_version == '2021-03-01':
451468
from .v2021_03_01.operations import PrivateEndpointConnectionsOperations as OperationClass
469+
elif api_version == '2021-05-01':
470+
from .v2021_05_01.operations import PrivateEndpointConnectionsOperations as OperationClass
452471
else:
453472
raise NotImplementedError("APIVersion {} is not available".format(api_version))
454473
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -462,6 +481,7 @@ def private_link_resources(self):
462481
* 2020-12-01: :class:`PrivateLinkResourcesOperations<azure.mgmt.containerservice.v2020_12_01.operations.PrivateLinkResourcesOperations>`
463482
* 2021-02-01: :class:`PrivateLinkResourcesOperations<azure.mgmt.containerservice.v2021_02_01.operations.PrivateLinkResourcesOperations>`
464483
* 2021-03-01: :class:`PrivateLinkResourcesOperations<azure.mgmt.containerservice.v2021_03_01.operations.PrivateLinkResourcesOperations>`
484+
* 2021-05-01: :class:`PrivateLinkResourcesOperations<azure.mgmt.containerservice.v2021_05_01.operations.PrivateLinkResourcesOperations>`
465485
"""
466486
api_version = self._get_api_version('private_link_resources')
467487
if api_version == '2020-09-01':
@@ -474,6 +494,8 @@ def private_link_resources(self):
474494
from .v2021_02_01.operations import PrivateLinkResourcesOperations as OperationClass
475495
elif api_version == '2021-03-01':
476496
from .v2021_03_01.operations import PrivateLinkResourcesOperations as OperationClass
497+
elif api_version == '2021-05-01':
498+
from .v2021_05_01.operations import PrivateLinkResourcesOperations as OperationClass
477499
else:
478500
raise NotImplementedError("APIVersion {} is not available".format(api_version))
479501
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -487,6 +509,7 @@ def resolve_private_link_service_id(self):
487509
* 2020-12-01: :class:`ResolvePrivateLinkServiceIdOperations<azure.mgmt.containerservice.v2020_12_01.operations.ResolvePrivateLinkServiceIdOperations>`
488510
* 2021-02-01: :class:`ResolvePrivateLinkServiceIdOperations<azure.mgmt.containerservice.v2021_02_01.operations.ResolvePrivateLinkServiceIdOperations>`
489511
* 2021-03-01: :class:`ResolvePrivateLinkServiceIdOperations<azure.mgmt.containerservice.v2021_03_01.operations.ResolvePrivateLinkServiceIdOperations>`
512+
* 2021-05-01: :class:`ResolvePrivateLinkServiceIdOperations<azure.mgmt.containerservice.v2021_05_01.operations.ResolvePrivateLinkServiceIdOperations>`
490513
"""
491514
api_version = self._get_api_version('resolve_private_link_service_id')
492515
if api_version == '2020-09-01':
@@ -499,6 +522,8 @@ def resolve_private_link_service_id(self):
499522
from .v2021_02_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass
500523
elif api_version == '2021-03-01':
501524
from .v2021_03_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass
525+
elif api_version == '2021-05-01':
526+
from .v2021_05_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass
502527
else:
503528
raise NotImplementedError("APIVersion {} is not available".format(api_version))
504529
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 .v2021_03_01.models import *
9+
from .v2021_05_01.models import *

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2017_07_01/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "11.2.0"
12+
VERSION = "12.0.0"
1313

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_03_31/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "11.2.0"
12+
VERSION = "12.0.0"
1313

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_08_01_preview/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "11.2.0"
12+
VERSION = "12.0.0"
1313

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_09_30_preview/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "11.2.0"
12+
VERSION = "12.0.0"
1313

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_02_01/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "11.2.0"
12+
VERSION = "12.0.0"
1313

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_04_01/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "11.2.0"
12+
VERSION = "12.0.0"
1313

0 commit comments

Comments
 (0)