Skip to content
Draft
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release History

## 4.0.0b4 (2026-04-07)

### Breaking Changes

- Model `UpdateGroup` deleted or renamed its instance variable `max_concurrency`
- Model `UpdateGroupStatus` deleted or renamed its instance variable `max_concurrency`
- Model `UpdateStage` deleted or renamed its instance variable `max_concurrency`
- Model `UpdateStageStatus` deleted or renamed its instance variable `max_concurrency`

## 4.0.0b3 (2026-03-24)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"apiVersion": "2026-02-01-preview",
"apiVersion": "2025-08-01-preview",
"apiVersions": {
"Microsoft.ContainerService": "2026-02-01-preview"
"Microsoft.ContainerService": "2025-08-01-preview"
},
"commit": "1648ecb14fca10c3febb2cc0468a8fef4288983c",
"commit": "5b8c01eed693ebeb0e8677310b649901fac47314",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/containerservice/resource-manager/Microsoft.ContainerService/fleet",
"emitterVersion": "0.61.0"
"emitterVersion": "0.61.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ class ContainerServiceFleetMgmtClient: # pylint: disable=too-many-instance-attr
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2026-02-01-preview" and None. Default value is "2026-02-01-preview". Note that overriding this
default value may result in unsupported behavior.
"2025-08-01-preview". Default value is "2025-08-01-preview". 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
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class ContainerServiceFleetMgmtClientConfiguration: # pylint: disable=too-many-
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2026-02-01-preview" and None. Default value is "2026-02-01-preview". Note that overriding this
default value may result in unsupported behavior.
"2025-08-01-preview". Default value is "2025-08-01-preview". Note that overriding this default
value may result in unsupported behavior.
:paramtype api_version: str
"""

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

if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "4.0.0b3"
VERSION = "4.0.0b4"
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ class ContainerServiceFleetMgmtClient: # pylint: disable=too-many-instance-attr
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2026-02-01-preview" and None. Default value is "2026-02-01-preview". Note that overriding this
default value may result in unsupported behavior.
"2025-08-01-preview". Default value is "2025-08-01-preview". 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
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class ContainerServiceFleetMgmtClientConfiguration: # pylint: disable=too-many-
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2026-02-01-preview" and None. Default value is "2026-02-01-preview". Note that overriding this
default value may result in unsupported behavior.
"2025-08-01-preview". Default value is "2025-08-01-preview". Note that overriding this default
value may result in unsupported behavior.
:paramtype api_version: str
"""

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

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