Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
d9d7b36
Configurations: 'specification/containerregistry/resource-manager/Mi…
azure-sdk Jan 21, 2026
a3117a6
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Jan 21, 2026
18846e1
Configurations: 'specification/containerregistry/resource-manager/Mi…
azure-sdk Jan 22, 2026
14fc280
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Jan 22, 2026
35cbd21
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Jan 23, 2026
24b74b4
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Jan 26, 2026
e1159a2
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Jan 27, 2026
a2fc5dd
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Feb 4, 2026
9c7e630
Update CHANGELOG.md
ChenxiJiang333 Feb 5, 2026
0aceb10
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
ChenxiJiang333 Feb 5, 2026
4512f7a
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
ChenxiJiang333 Feb 5, 2026
bb1919d
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Feb 5, 2026
9512f1e
Merge branch 'main' into sdkauto/azure-mgmt-containerregistrytasks-57…
CodeJourneys Feb 5, 2026
e4aa3bf
Update CHANGELOG.md
ChenxiJiang333 Feb 9, 2026
aca0bf1
Update CHANGELOG.md
ChenxiJiang333 Feb 9, 2026
6b4eba9
Update CHANGELOG.md
ChenxiJiang333 Feb 9, 2026
207fcbe
Apply suggestions from code review
msyyc Feb 9, 2026
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
@@ -0,0 +1,31 @@
# Release History

## 1.0.0b1 (2026-02-09)

### Features Added

- Client `ContainerRegistryTasksMgmtClient` added method `send_request`
- Model `AgentPoolUpdateParameters` added property `properties`
- Model `TaskRunUpdateParameters` added property `properties`
- Model `TaskUpdateParameters` added property `properties`
- Added model `AgentPoolPropertiesUpdateParameters`
- Added model `TaskPropertiesUpdateParameters`
- Added model `TaskRunPropertiesUpdateParameters`

### Breaking Changes

- This version introduces new hybrid models which have dual dictionary and model nature. Please follow https://aka.ms/azsdk/python/migrate/hybrid-models for migration.
- Model `EncodedTaskRunRequest` renamed its instance variable `values` to `values_property`
- Model `EncodedTaskStep` renamed its instance variable `values` to `values_property`
- Model `EncodedTaskStepUpdateParameters` renamed its instance variable `values` to `values_property`
- Model `FileTaskRunRequest` renamed its instance variable `values` to `values_property`
- Model `FileTaskStep` renamed its instance variable `values` to `values_property`
- Model `FileTaskStepUpdateParameters` renamed its instance variable `values` to `values_property`
- Model `OverrideTaskStepProperties` renamed its instance variable `values` to `values_property`
- Model `AgentPoolUpdateParameters` moved instance variable `count` under property `properties`
- Model `TaskRunUpdateParameters` moved instance variables `run_request` and `force_update_tag` under property `properties`
- Model `TaskUpdateParameters` moved instance variables `status`, `platform`, `agent_configuration`, `agent_pool_name`, `timeout`, `step`, `trigger`, `credentials` and `log_template` under property `properties`

### Other Changes

- This package has been separated from [azure-mgmt-containerregistry](https://pypi.org/project/azure-mgmt-containerregistry)
21 changes: 21 additions & 0 deletions sdk/containerregistry/azure-mgmt-containerregistrytasks/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Copyright (c) Microsoft Corporation.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include *.md
include LICENSE
include azure/mgmt/containerregistrytasks/py.typed
recursive-include tests *.py
recursive-include samples *.py *.md
include azure/__init__.py
include azure/mgmt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure Containerregistrytasks Management Client Library.
This package has been tested with Python 3.9+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_

## Getting started

### Prerequisites

- Python 3.9+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-containerregistrytasks
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.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.

In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.

With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.containerregistrytasks import ContainerRegistryTasksMgmtClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = ContainerRegistryTasksMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search Containerregistrytasks Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


## Troubleshooting

## Next steps

## Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"apiVersion": "2025-03-01-preview",
"commit": "92a141a5124dc3776424f311fede0a70ac789097",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/containerregistry/resource-manager/Microsoft.ContainerRegistry/RegistryTasks",
"emitterVersion": "0.57.1"
}
Loading
Loading