2222from ._utils .serialization import Deserializer , Serializer
2323from .operations import (
2424 AgentPoolsOperations ,
25- ContainerServiceOperations ,
26- IdentityBindingsOperations ,
27- JWTAuthenticatorsOperations ,
28- LoadBalancersOperations ,
2925 MachinesOperations ,
3026 MaintenanceConfigurationsOperations ,
31- ManagedClusterSnapshotsOperations ,
3227 ManagedClustersOperations ,
3328 ManagedNamespacesOperations ,
34- MeshMembershipsOperations ,
35- OperationStatusResultOperations ,
3629 Operations ,
3730 PrivateEndpointConnectionsOperations ,
3831 PrivateLinkResourcesOperations ,
@@ -54,17 +47,13 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
5447 :vartype operations: azure.mgmt.containerservice.operations.Operations
5548 :ivar managed_clusters: ManagedClustersOperations operations
5649 :vartype managed_clusters: azure.mgmt.containerservice.operations.ManagedClustersOperations
57- :ivar container_service: ContainerServiceOperations operations
58- :vartype container_service: azure.mgmt.containerservice.operations.ContainerServiceOperations
5950 :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations
6051 :vartype maintenance_configurations:
6152 azure.mgmt.containerservice.operations.MaintenanceConfigurationsOperations
6253 :ivar managed_namespaces: ManagedNamespacesOperations operations
6354 :vartype managed_namespaces: azure.mgmt.containerservice.operations.ManagedNamespacesOperations
6455 :ivar agent_pools: AgentPoolsOperations operations
6556 :vartype agent_pools: azure.mgmt.containerservice.operations.AgentPoolsOperations
66- :ivar machines: MachinesOperations operations
67- :vartype machines: azure.mgmt.containerservice.operations.MachinesOperations
6857 :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations
6958 :vartype private_endpoint_connections:
7059 azure.mgmt.containerservice.operations.PrivateEndpointConnectionsOperations
@@ -74,28 +63,16 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
7463 :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations
7564 :vartype resolve_private_link_service_id:
7665 azure.mgmt.containerservice.operations.ResolvePrivateLinkServiceIdOperations
77- :ivar operation_status_result: OperationStatusResultOperations operations
78- :vartype operation_status_result:
79- azure.mgmt.containerservice.operations.OperationStatusResultOperations
8066 :ivar snapshots: SnapshotsOperations operations
8167 :vartype snapshots: azure.mgmt.containerservice.operations.SnapshotsOperations
82- :ivar managed_cluster_snapshots: ManagedClusterSnapshotsOperations operations
83- :vartype managed_cluster_snapshots:
84- azure.mgmt.containerservice.operations.ManagedClusterSnapshotsOperations
85- :ivar trusted_access_roles: TrustedAccessRolesOperations operations
86- :vartype trusted_access_roles:
87- azure.mgmt.containerservice.operations.TrustedAccessRolesOperations
8868 :ivar trusted_access_role_bindings: TrustedAccessRoleBindingsOperations operations
8969 :vartype trusted_access_role_bindings:
9070 azure.mgmt.containerservice.operations.TrustedAccessRoleBindingsOperations
91- :ivar load_balancers: LoadBalancersOperations operations
92- :vartype load_balancers: azure.mgmt.containerservice.operations.LoadBalancersOperations
93- :ivar identity_bindings: IdentityBindingsOperations operations
94- :vartype identity_bindings: azure.mgmt.containerservice.operations.IdentityBindingsOperations
95- :ivar jwt_authenticators: JWTAuthenticatorsOperations operations
96- :vartype jwt_authenticators: azure.mgmt.containerservice.operations.JWTAuthenticatorsOperations
97- :ivar mesh_memberships: MeshMembershipsOperations operations
98- :vartype mesh_memberships: azure.mgmt.containerservice.operations.MeshMembershipsOperations
71+ :ivar trusted_access_roles: TrustedAccessRolesOperations operations
72+ :vartype trusted_access_roles:
73+ azure.mgmt.containerservice.operations.TrustedAccessRolesOperations
74+ :ivar machines: MachinesOperations operations
75+ :vartype machines: azure.mgmt.containerservice.operations.MachinesOperations
9976 :param credential: Credential needed for the client to connect to Azure. Required.
10077 :type credential: ~azure.core.credentials.TokenCredential
10178 :param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
@@ -105,8 +82,8 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
10582 :keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
10683 None.
10784 :paramtype cloud_setting: ~azure.core.AzureClouds
108- :keyword api_version: Api Version. Default value is "2025-08-02-preview ". Note that overriding
109- this default value may result in unsupported behavior.
85+ :keyword api_version: Api Version. Default value is "2025-09-01 ". Note that overriding this
86+ default value may result in unsupported behavior.
11087 :paramtype api_version: str
11188 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no
11289 Retry-After header is present.
@@ -162,17 +139,13 @@ def __init__(
162139 self .managed_clusters = ManagedClustersOperations (
163140 self ._client , self ._config , self ._serialize , self ._deserialize
164141 )
165- self .container_service = ContainerServiceOperations (
166- self ._client , self ._config , self ._serialize , self ._deserialize
167- )
168142 self .maintenance_configurations = MaintenanceConfigurationsOperations (
169143 self ._client , self ._config , self ._serialize , self ._deserialize
170144 )
171145 self .managed_namespaces = ManagedNamespacesOperations (
172146 self ._client , self ._config , self ._serialize , self ._deserialize
173147 )
174148 self .agent_pools = AgentPoolsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
175- self .machines = MachinesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
176149 self .private_endpoint_connections = PrivateEndpointConnectionsOperations (
177150 self ._client , self ._config , self ._serialize , self ._deserialize
178151 )
@@ -182,29 +155,14 @@ def __init__(
182155 self .resolve_private_link_service_id = ResolvePrivateLinkServiceIdOperations (
183156 self ._client , self ._config , self ._serialize , self ._deserialize
184157 )
185- self .operation_status_result = OperationStatusResultOperations (
186- self ._client , self ._config , self ._serialize , self ._deserialize
187- )
188158 self .snapshots = SnapshotsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
189- self .managed_cluster_snapshots = ManagedClusterSnapshotsOperations (
190- self ._client , self ._config , self ._serialize , self ._deserialize
191- )
192- self .trusted_access_roles = TrustedAccessRolesOperations (
193- self ._client , self ._config , self ._serialize , self ._deserialize
194- )
195159 self .trusted_access_role_bindings = TrustedAccessRoleBindingsOperations (
196160 self ._client , self ._config , self ._serialize , self ._deserialize
197161 )
198- self .load_balancers = LoadBalancersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
199- self .identity_bindings = IdentityBindingsOperations (
200- self ._client , self ._config , self ._serialize , self ._deserialize
201- )
202- self .jwt_authenticators = JWTAuthenticatorsOperations (
203- self ._client , self ._config , self ._serialize , self ._deserialize
204- )
205- self .mesh_memberships = MeshMembershipsOperations (
162+ self .trusted_access_roles = TrustedAccessRolesOperations (
206163 self ._client , self ._config , self ._serialize , self ._deserialize
207164 )
165+ self .machines = MachinesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
208166
209167 def _send_request (self , request : HttpRequest , * , stream : bool = False , ** kwargs : Any ) -> HttpResponse :
210168 """Runs the network request through the client's chained policies.
0 commit comments