Skip to content
Open
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
6 changes: 6 additions & 0 deletions sdk/batch/azure-batch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 15.1.0 (2026-03-06)

### Other Changes

- This is the GA release of the features introduced in the 15.0.0 and 15.1.0 beta versions, including LRO support, job-level FIFO scheduling, CMK support on pools, IPv6 support, metadata security protocol support, IP tag support, and confidential VM enhancements. No additional changes were made from the last beta release.

## 15.1.0b3 (2026-02-05)

### Other Changes
Expand Down
4 changes: 2 additions & 2 deletions sdk/batch/azure-batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pip install azure-batch azure-identity
### Prerequisites
* An Azure subscription. If you don't have one, [create an account for free][azure_sub]
* A [Batch account][azure_batch] with a linked [Storage account][azure_storage]
* Python 3.9 or later. For more details, please see the [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md)
* Python 3.9 or later.

### Authenticate the client

Expand Down Expand Up @@ -391,7 +391,7 @@ task1 = models.BatchTaskCreateOptions(id="task1", command_line='cmd /c "echo hel
task2 = models.BatchTaskCreateOptions(id="task2", command_line='cmd /c "echo hello world"')
task3 = models.BatchTaskCreateOptions(id="task3", command_line='cmd /c "echo hello world"')

task_group = models.BatchTaskGroup(values_property=[task1, task2, task3])
task_group = models.BatchTaskGroup(task_values=[task1, task2, task3])
result = client.create_task_collection(job_id="my-job", task_collection=task_group)
```

Expand Down
6 changes: 6 additions & 0 deletions sdk/batch/azure-batch/_metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"apiVersion": "2025-06-01",
"apiVersions": {
"Azure.Batch": "2025-06-01"
}
}
2 changes: 1 addition & 1 deletion sdk/batch/azure-batch/apiview-properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"azure.batch.models.BatchNodeRemoteLoginSettings": "Azure.Batch.BatchNodeRemoteLoginSettings",
"azure.batch.models.BatchNodeRemoveOptions": "Azure.Batch.BatchNodeRemoveOptions",
"azure.batch.models.BatchNodeUserCreateOptions": "Azure.Batch.BatchNodeUserCreateOptions",
"azure.batch.models.BatchNodeUserUpdateOptions": "Azure.Batch.BatchNodeUserUpdateOptions",
"azure.batch.models.BatchNodeUserReplaceOptions": "Azure.Batch.BatchNodeUserUpdateOptions",
"azure.batch.models.BatchNodeVMExtension": "Azure.Batch.BatchNodeVMExtension",
"azure.batch.models.BatchOsDisk": "Azure.Batch.BatchOsDisk",
"azure.batch.models.BatchPool": "Azure.Batch.BatchPool",
Expand Down
5 changes: 3 additions & 2 deletions sdk/batch/azure-batch/azure/batch/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ class BatchClient(_BatchClientOperationsMixin):
:type endpoint: str
:param credential: Credential used to authenticate requests to the service. Required.
:type credential: ~azure.core.credentials.TokenCredential
:keyword api_version: The API version to use for this operation. Default value is "2025-06-01".
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 "2025-06-01"
and None. Default value is "2025-06-01". Note that overriding this default value may result in
unsupported behavior.
:paramtype api_version: str
"""

Expand Down
5 changes: 3 additions & 2 deletions sdk/batch/azure-batch/azure/batch/_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ class BatchClientConfiguration: # pylint: disable=too-many-instance-attributes
:type endpoint: str
:param credential: Credential used to authenticate requests to the service. Required.
:type credential: ~azure.core.credentials.TokenCredential
:keyword api_version: The API version to use for this operation. Default value is "2025-06-01".
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 "2025-06-01"
and None. Default value is "2025-06-01". Note that overriding this default value may result in
unsupported behavior.
:paramtype api_version: str
"""

Expand Down
Loading