Skip to content

Commit 6880c3f

Browse files
author
SDKAuto
committed
CodeGen from PR 33047 in Azure/azure-rest-api-specs
Merge dd7a8bf94b6227710c9f51ffc07e2c37f322a96e into 7e97fa437e39660b3d4397790c19642576978224
1 parent 08e7c8a commit 6880c3f

File tree

60 files changed

+34934
-33
lines changed

Some content is hidden

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

60 files changed

+34934
-33
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"commit": "d15200711af0d14785a36791b569027232bc486b",
2+
"commit": "4e3c8f06f0da2f7ce20bcb9d74b7ffa1354ce33f",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [
66
"@autorest/[email protected]",
77
"@autorest/[email protected]"
88
],
9-
"autorest_command": "autorest specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
1010
"readme": "specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md",
1111
"package-2024-05": "2024-07-10 04:37:35 +0800 794e29ee5f8eca63ce0ddf007c60da7df37baaad stable/2024-05-01/managedClusters.json",
1212
"package-preview-2024-04": "2024-08-27 19:55:39 -0700 4bc9b37173bd5fe0ed19f21edfb8a195e89caaf6 preview/2024-04-02-preview/managedClusters.json",

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

Lines changed: 93 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 93 additions & 0 deletions
Large diffs are not rendered by default.

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
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "34.1.0"
9+
VERSION = "1.0.0b1"

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2019_09_30_preview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "34.1.0"
9+
VERSION = "1.0.0b1"

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_03_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "34.1.0"
9+
VERSION = "1.0.0b1"

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2508,6 +2508,8 @@ def __init__(self, *, value: Optional[List["_models.ManagedCluster"]] = None, **
25082508
class ManagedClusterLoadBalancerProfile(_serialization.Model):
25092509
"""Profile of the managed cluster load balancer.
25102510
2511+
Variables are only populated by the server, and will be ignored when sending a request.
2512+
25112513
:ivar managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer.
25122514
:vartype managed_outbound_i_ps:
25132515
~azure.mgmt.containerservice.v2020_03_01.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs
@@ -2531,6 +2533,7 @@ class ManagedClusterLoadBalancerProfile(_serialization.Model):
25312533
"""
25322534

25332535
_validation = {
2536+
"effective_outbound_i_ps": {"readonly": True},
25342537
"allocated_outbound_ports": {"maximum": 64000, "minimum": 0},
25352538
"idle_timeout_in_minutes": {"maximum": 120, "minimum": 4},
25362539
}
@@ -2556,7 +2559,6 @@ def __init__(
25562559
managed_outbound_i_ps: Optional["_models.ManagedClusterLoadBalancerProfileManagedOutboundIPs"] = None,
25572560
outbound_ip_prefixes: Optional["_models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes"] = None,
25582561
outbound_i_ps: Optional["_models.ManagedClusterLoadBalancerProfileOutboundIPs"] = None,
2559-
effective_outbound_i_ps: Optional[List["_models.ResourceReference"]] = None,
25602562
allocated_outbound_ports: int = 0,
25612563
idle_timeout_in_minutes: int = 30,
25622564
**kwargs: Any
@@ -2572,10 +2574,6 @@ def __init__(
25722574
:keyword outbound_i_ps: Desired outbound IP resources for the cluster load balancer.
25732575
:paramtype outbound_i_ps:
25742576
~azure.mgmt.containerservice.v2020_03_01.models.ManagedClusterLoadBalancerProfileOutboundIPs
2575-
:keyword effective_outbound_i_ps: The effective outbound IP resources of the cluster load
2576-
balancer.
2577-
:paramtype effective_outbound_i_ps:
2578-
list[~azure.mgmt.containerservice.v2020_03_01.models.ResourceReference]
25792577
:keyword allocated_outbound_ports: Desired number of allocated SNAT ports per VM. Allowed
25802578
values must be in the range of 0 to 64000 (inclusive). The default value is 0 which results in
25812579
Azure dynamically allocating ports.
@@ -2588,7 +2586,7 @@ def __init__(
25882586
self.managed_outbound_i_ps = managed_outbound_i_ps
25892587
self.outbound_ip_prefixes = outbound_ip_prefixes
25902588
self.outbound_i_ps = outbound_i_ps
2591-
self.effective_outbound_i_ps = effective_outbound_i_ps
2589+
self.effective_outbound_i_ps = None
25922590
self.allocated_outbound_ports = allocated_outbound_ports
25932591
self.idle_timeout_in_minutes = idle_timeout_in_minutes
25942592

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_11_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "34.1.0"
9+
VERSION = "1.0.0b1"

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3048,6 +3048,8 @@ def __init__(self, *, value: Optional[List["_models.ManagedCluster"]] = None, **
30483048
class ManagedClusterLoadBalancerProfile(_serialization.Model):
30493049
"""Profile of the managed cluster load balancer.
30503050
3051+
Variables are only populated by the server, and will be ignored when sending a request.
3052+
30513053
:ivar managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer.
30523054
:vartype managed_outbound_i_ps:
30533055
~azure.mgmt.containerservice.v2020_11_01.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs
@@ -3071,6 +3073,7 @@ class ManagedClusterLoadBalancerProfile(_serialization.Model):
30713073
"""
30723074

30733075
_validation = {
3076+
"effective_outbound_i_ps": {"readonly": True},
30743077
"allocated_outbound_ports": {"maximum": 64000, "minimum": 0},
30753078
"idle_timeout_in_minutes": {"maximum": 120, "minimum": 4},
30763079
}
@@ -3096,7 +3099,6 @@ def __init__(
30963099
managed_outbound_i_ps: Optional["_models.ManagedClusterLoadBalancerProfileManagedOutboundIPs"] = None,
30973100
outbound_ip_prefixes: Optional["_models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes"] = None,
30983101
outbound_i_ps: Optional["_models.ManagedClusterLoadBalancerProfileOutboundIPs"] = None,
3099-
effective_outbound_i_ps: Optional[List["_models.ResourceReference"]] = None,
31003102
allocated_outbound_ports: int = 0,
31013103
idle_timeout_in_minutes: int = 30,
31023104
**kwargs: Any
@@ -3112,10 +3114,6 @@ def __init__(
31123114
:keyword outbound_i_ps: Desired outbound IP resources for the cluster load balancer.
31133115
:paramtype outbound_i_ps:
31143116
~azure.mgmt.containerservice.v2020_11_01.models.ManagedClusterLoadBalancerProfileOutboundIPs
3115-
:keyword effective_outbound_i_ps: The effective outbound IP resources of the cluster load
3116-
balancer.
3117-
:paramtype effective_outbound_i_ps:
3118-
list[~azure.mgmt.containerservice.v2020_11_01.models.ResourceReference]
31193117
:keyword allocated_outbound_ports: Desired number of allocated SNAT ports per VM. Allowed
31203118
values must be in the range of 0 to 64000 (inclusive). The default value is 0 which results in
31213119
Azure dynamically allocating ports.
@@ -3128,7 +3126,7 @@ def __init__(
31283126
self.managed_outbound_i_ps = managed_outbound_i_ps
31293127
self.outbound_ip_prefixes = outbound_ip_prefixes
31303128
self.outbound_i_ps = outbound_i_ps
3131-
self.effective_outbound_i_ps = effective_outbound_i_ps
3129+
self.effective_outbound_i_ps = None
31323130
self.allocated_outbound_ports = allocated_outbound_ports
31333131
self.idle_timeout_in_minutes = idle_timeout_in_minutes
31343132

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2024_10_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "34.1.0"
9+
VERSION = "1.0.0b1"

0 commit comments

Comments
 (0)