Registry /
azure / azure-mgmt-deploymentmanager
Install & Compatibility
Where this runs
tested against v1.0.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 26.5MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.8s · import 0.000s · 27MB
25MB installed
● package 25MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
DeploymentManagerClient
✓ from azure.mgmt.deploymentmanager import DeploymentManagerClient
✗ from azure.mgmt.deploymentmanager import DeploymentManagerClient
Authenticate and list all rollouts in a resource group.
import os
from azure.identity import DefaultAzureCredential
from azure.mgmt.deploymentmanager import DeploymentManagerClient
subscription_id = os.environ.get('AZURE_SUBSCRIPTION_ID', '')
credential = DefaultAzureCredential()
client = DeploymentManagerClient(credential, subscription_id)
# list all rollouts in a resource group
rollouts = client.rollouts.list('myResourceGroup')
for rollout in rollouts:
print(rollout.name)
Upgrade
Version history
1.0.0latest on PyPI · released May 20, 2021
Audit
Dependencies
azure-corerequiredRequired for Azure SDK base functionality, credential types, and HTTP pipeline.
azure-identityrequiredRequired for authentication with DefaultAzureCredential or other credential types.