Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release History

## 41.3.0 (2026-06-03)

### Features Added

- Client `ContainerServiceClient` added operation group `identity_bindings`
- Model `AgentPoolUpgradeProfileProperties` added property `recently_used_versions`
- Model `ManagedClusterAzureMonitorProfileMetrics` added property `control_plane`
- Added model `AgentPoolRecentlyUsedVersion`
- Added model `IdentityBinding`
- Added model `IdentityBindingManagedIdentityProfile`
- Added model `IdentityBindingOidcIssuerProfile`
- Added model `IdentityBindingProperties`
- Added enum `IdentityBindingProvisioningState`
- Added model `ManagedClusterAzureMonitorProfileMetricsControlPlane`
- Added operation group `IdentityBindingsOperations`

Comment thread
ChenxiJiang333 marked this conversation as resolved.
## 41.3.0b1 (2026-05-18)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pip install azure-identity

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
By default, [Microsoft Entra](https://learn.microsoft.com/entra/fundamentals/what-is-entra) token authentication depends on correct configuration of the following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"apiVersion": "2026-03-02-preview",
"apiVersion": "2026-04-01",
"apiVersions": {
"Microsoft.ContainerService": "2026-03-02-preview"
"Microsoft.ContainerService": "2026-04-01"
},
"commit": "736baa6d7d8bec3c6aaf1f16e77e78846eda4871",
"commit": "532545feb236d55064e4fa922f3fa38517857ba8",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/containerservice/resource-manager/Microsoft.ContainerService/aks",
"emitterVersion": "0.62.1"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,18 @@
from ._utils.serialization import Deserializer, Serializer
from .operations import (
AgentPoolsOperations,
ContainerServiceOperations,
IdentityBindingsOperations,
JWTAuthenticatorsOperations,
LoadBalancersOperations,
MachinesOperations,
MaintenanceConfigurationsOperations,
ManagedClusterSnapshotsOperations,
ManagedClustersOperations,
ManagedNamespacesOperations,
MeshMembershipsOperations,
OperationStatusResultOperations,
Operations,
PrivateEndpointConnectionsOperations,
PrivateLinkResourcesOperations,
ResolvePrivateLinkServiceIdOperations,
SnapshotsOperations,
TrustedAccessRoleBindingsOperations,
TrustedAccessRolesOperations,
VmSkusOperations,
)

if sys.version_info >= (3, 11):
Expand Down Expand Up @@ -71,25 +64,13 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
azure.mgmt.containerservice.operations.PrivateEndpointConnectionsOperations
:ivar snapshots: SnapshotsOperations operations
:vartype snapshots: azure.mgmt.containerservice.operations.SnapshotsOperations
:ivar managed_cluster_snapshots: ManagedClusterSnapshotsOperations operations
:vartype managed_cluster_snapshots:
azure.mgmt.containerservice.operations.ManagedClusterSnapshotsOperations
:ivar trusted_access_role_bindings: TrustedAccessRoleBindingsOperations operations
:vartype trusted_access_role_bindings:
azure.mgmt.containerservice.operations.TrustedAccessRoleBindingsOperations
:ivar load_balancers: LoadBalancersOperations operations
:vartype load_balancers: azure.mgmt.containerservice.operations.LoadBalancersOperations
:ivar identity_bindings: IdentityBindingsOperations operations
:vartype identity_bindings: azure.mgmt.containerservice.operations.IdentityBindingsOperations
:ivar jwt_authenticators: JWTAuthenticatorsOperations operations
:vartype jwt_authenticators: azure.mgmt.containerservice.operations.JWTAuthenticatorsOperations
:ivar mesh_memberships: MeshMembershipsOperations operations
:vartype mesh_memberships: azure.mgmt.containerservice.operations.MeshMembershipsOperations
:ivar operations: Operations operations
:vartype operations: azure.mgmt.containerservice.operations.Operations
:ivar operation_status_result: OperationStatusResultOperations operations
:vartype operation_status_result:
azure.mgmt.containerservice.operations.OperationStatusResultOperations
:ivar private_link_resources: PrivateLinkResourcesOperations operations
:vartype private_link_resources:
azure.mgmt.containerservice.operations.PrivateLinkResourcesOperations
Expand All @@ -99,10 +80,6 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
:ivar trusted_access_roles: TrustedAccessRolesOperations operations
:vartype trusted_access_roles:
azure.mgmt.containerservice.operations.TrustedAccessRolesOperations
:ivar container_service: ContainerServiceOperations operations
:vartype container_service: azure.mgmt.containerservice.operations.ContainerServiceOperations
:ivar vm_skus: VmSkusOperations operations
:vartype vm_skus: azure.mgmt.containerservice.operations.VmSkusOperations
:param credential: Credential used to authenticate requests to the service. Required.
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
Expand All @@ -112,10 +89,9 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
:keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2026-03-02-preview" and None. Default value is None. If not set, the operation's default API
version will be used. Note that overriding this default value may result in unsupported
behavior.
:keyword api_version: The API version to use for this operation. Known values are "2026-04-01"
and None. Default value is None. If not set, the operation's default API version will be used.
Note that overriding this default value may result in unsupported behavior.
:paramtype api_version: str
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
Retry-After header is present.
Expand Down Expand Up @@ -183,26 +159,13 @@ def __init__(
self._client, self._config, self._serialize, self._deserialize
)
self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize)
self.managed_cluster_snapshots = ManagedClusterSnapshotsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.trusted_access_role_bindings = TrustedAccessRoleBindingsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.load_balancers = LoadBalancersOperations(self._client, self._config, self._serialize, self._deserialize)
self.identity_bindings = IdentityBindingsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.jwt_authenticators = JWTAuthenticatorsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.mesh_memberships = MeshMembershipsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
self.operation_status_result = OperationStatusResultOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.private_link_resources = PrivateLinkResourcesOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand All @@ -212,10 +175,6 @@ def __init__(
self.trusted_access_roles = TrustedAccessRolesOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.container_service = ContainerServiceOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vm_skus = VmSkusOperations(self._client, self._config, self._serialize, self._deserialize)

def send_request(self, request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse:
"""Runs the network request through the client's chained policies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance-
:param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2026-03-02-preview" and None. Default value is None. If not set, the operation's default API
version will be used. Note that overriding this default value may result in unsupported
behavior.
:keyword api_version: The API version to use for this operation. Known values are "2026-04-01"
and None. Default value is None. If not set, the operation's default API version will be used.
Note that overriding this default value may result in unsupported behavior.
:paramtype api_version: str
"""

Expand All @@ -48,7 +47,7 @@ def __init__(
cloud_setting: Optional["AzureClouds"] = None,
**kwargs: Any
) -> None:
api_version: str = kwargs.pop("api_version", "2026-03-02-preview")
api_version: str = kwargs.pop("api_version", "2026-04-01")

if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
Expand Down
Loading
Loading