Metadata-Version: 2.4
Name: azure-mgmt-resource-deploymentstacks
Version: 1.0.0
Summary: Microsoft Azure Deploymentstacks Management Client Library for Python
Author-email: Microsoft Corporation <azpysdkhelp@microsoft.com>
License-Expression: MIT
Project-URL: repository, https://github.com/Azure/azure-sdk-for-python
Keywords: azure,azure sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: isodate>=0.6.1
Requires-Dist: azure-mgmt-core>=1.6.0
Requires-Dist: typing-extensions>=4.6.0
Dynamic: license-file

# Microsoft Azure SDK for Python

This is the Microsoft Azure Resource Deploymentstacks 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-resource-deploymentstacks
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.resource.deploymentstacks import DeploymentStacksClient
import os

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

## Examples

Code samples for this package can be found at:
- [Search Resource Deploymentstacks 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. 

# Release History

## 1.0.0 (2026-02-10)

### Features Added

  - Model `DeploymentStacksClient` added parameter `cloud_setting` in method `__init__`
  - Client `DeploymentStacksClient` added method `send_request`
  - Client `DeploymentStacksClient` added operation group `deployment_stacks_what_if_results_at_resource_group`
  - Client `DeploymentStacksClient` added operation group `deployment_stacks_what_if_results_at_subscription`
  - Client `DeploymentStacksClient` added operation group `deployment_stacks_what_if_results_at_management_group`
  - Model `ActionOnUnmanage` added property `resources_without_delete_support`
  - Enum `DenyStatusMode` added member `UNKNOWN`
  - Model `DeploymentParameter` added property `expression`
  - Model `DeploymentStack` added property `properties`
  - Model `DeploymentStackProperties` added property `extension_configs`
  - Model `DeploymentStackProperties` added property `external_inputs`
  - Model `DeploymentStackProperties` added property `external_input_definitions`
  - Model `DeploymentStackProperties` added property `validation_level`
  - Model `DeploymentStackProperties` added property `deployment_extensions`
  - Enum `DeploymentStackProvisioningState` added member `INITIALIZING`
  - Enum `DeploymentStackProvisioningState` added member `RUNNING`
  - Model `DeploymentStackValidateProperties` added property `deployment_extensions`
  - Model `DeploymentStackValidateProperties` added property `validation_level`
  - Model `ManagedResourceReference` added property `extension`
  - Model `ManagedResourceReference` added property `type`
  - Model `ManagedResourceReference` added property `identifiers`
  - Model `ManagedResourceReference` added property `api_version`
  - Model `ResourceReference` added property `extension`
  - Model `ResourceReference` added property `type`
  - Model `ResourceReference` added property `identifiers`
  - Model `ResourceReference` added property `api_version`
  - Model `ResourceReferenceExtended` added property `extension`
  - Model `ResourceReferenceExtended` added property `type`
  - Model `ResourceReferenceExtended` added property `identifiers`
  - Model `ResourceReferenceExtended` added property `api_version`
  - Added model `DeploymentExtension`
  - Added model `DeploymentExtensionConfig`
  - Added model `DeploymentExtensionConfigItem`
  - Added model `DeploymentExternalInput`
  - Added model `DeploymentExternalInputDefinition`
  - Added model `DeploymentStacksChangeBase`
  - Added model `DeploymentStacksChangeBaseDenyStatusMode`
  - Added model `DeploymentStacksChangeBaseDeploymentStacksManagementStatus`
  - Added model `DeploymentStacksChangeDeltaDenySettings`
  - Added model `DeploymentStacksChangeDeltaRecord`
  - Added model `DeploymentStacksDiagnostic`
  - Added enum `DeploymentStacksDiagnosticLevel`
  - Added enum `DeploymentStacksManagementStatus`
  - Added model `DeploymentStacksWhatIfChange`
  - Added enum `DeploymentStacksWhatIfChangeCertainty`
  - Added enum `DeploymentStacksWhatIfChangeType`
  - Added model `DeploymentStacksWhatIfPropertyChange`
  - Added enum `DeploymentStacksWhatIfPropertyChangeType`
  - Added model `DeploymentStacksWhatIfResourceChange`
  - Added model `DeploymentStacksWhatIfResult`
  - Added model `DeploymentStacksWhatIfResultProperties`
  - Added model `ErrorResponse`
  - Added model `ProxyResource`
  - Added model `Resource`
  - Added enum `ResourcesWithoutDeleteSupportAction`
  - Added enum `ValidationLevel`
  - Method `DeploymentStacksOperations.begin_delete_at_management_group` added parameter `unmanage_action_resources_without_delete_support`
  - Method `DeploymentStacksOperations.begin_delete_at_resource_group` added parameter `unmanage_action_resources_without_delete_support`
  - Method `DeploymentStacksOperations.begin_delete_at_subscription` added parameter `unmanage_action_resources_without_delete_support`
  - Added operation group `DeploymentStacksWhatIfResultsAtManagementGroupOperations`
  - Added operation group `DeploymentStacksWhatIfResultsAtResourceGroupOperations`
  - Added operation group `DeploymentStacksWhatIfResultsAtSubscriptionOperations`

### 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.
  - For the method breakings, please refer to https://aka.ms/azsdk/python/migrate/operations for migration.
  - Deleted or renamed model `DeploymentStacksDeleteDetachEnum`
  - Model `DeploymentStack` moved instance variable `error`, `template`, `template_link`, `parameters`, `parameters_link`, `action_on_unmanage`, `debug_setting`, `bypass_stack_out_of_sync_error`, `deployment_scope`, `description`, `deny_settings`, `provisioning_state`, `correlation_id`, `detached_resources`, `deleted_resources`, `failed_resources`, `resources`, `deployment_id`, `outputs` and `duration` under property `properties`
  - Method `DeploymentStacksOperations.begin_delete_at_management_group` changed its parameter `unmanage_action_resources`/`unmanage_action_resource_groups`/`unmanage_action_management_groups`/`bypass_stack_out_of_sync_error` from `positional_or_keyword` to `keyword_only`
  - Method `DeploymentStacksOperations.begin_delete_at_resource_group` changed its parameter `unmanage_action_resources`/`unmanage_action_resource_groups`/`unmanage_action_management_groups`/`bypass_stack_out_of_sync_error` from `positional_or_keyword` to `keyword_only`
  - Method `DeploymentStacksOperations.begin_delete_at_subscription` changed its parameter `unmanage_action_resources`/`unmanage_action_resource_groups`/`unmanage_action_management_groups`/`bypass_stack_out_of_sync_error` from `positional_or_keyword` to `keyword_only`

### Other Changes

  - Deleted model `AzureResourceBase`/`DeploymentStacksError` which actually were not used by SDK users

## 1.0.0b1 (2025-06-09)

### Other Changes

  - Initial version
