Microsoft Azure Managed Services Client Library for Python
Project description
Microsoft Azure SDK for Python
This is the Microsoft Azure Managed Services Client Library. This package has been tested with Python 3.8+. For a more complete view of Azure libraries, see the azure sdk python release.
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.8+ is required to use this package.
- Azure subscription
Install the package
pip install azure-mgmt-managedservices
pip install azure-identity
Authentication
By default, Azure Active Directory token authentication depends on correct configure of 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:
from azure.identity import DefaultAzureCredential
from azure.mgmt.managedservices import ManagedServicesClient
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = ManagedServicesClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
Examples
Code samples for this package can be found at:
- Search Managed Services on docs.microsoft.com
- Azure Python Mgmt SDK Samples Repo
Troubleshooting
Next steps
Provide Feedback
If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.
Release History
7.0.0b2 (2024-11-05)
Other Changes
- Update dependencies
7.0.0b1 (2022-10-31)
Features Added
- Added operation group OperationsWithScopeOperations
- Model JustInTimeAccessPolicy has a new parameter managed_by_tenant_approvers
- Model RegistrationAssignment has a new parameter system_data
- Model RegistrationAssignmentPropertiesRegistrationDefinition has a new parameter system_data
- Model RegistrationDefinition has a new parameter system_data
- Model RegistrationDefinitionProperties has a new parameter managee_tenant_id
- Model RegistrationDefinitionProperties has a new parameter managee_tenant_name
Breaking Changes
- Operation RegistrationAssignmentsOperations.list has a new parameter filter
- Operation RegistrationDefinitionsOperations.list has a new parameter filter
6.0.0 (2021-04-22)
Features
- Added operation group MarketplaceRegistrationDefinitionsWithoutScopeOperations
6.0.0b1 (2020-12-07)
This is beta preview version.
This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).
General breaking changes
-
Credential system has been completly revamped:
azure.common.credentials
ormsrestazure.azure_active_directory
instances are no longer supported, use theazure-identity
classes instead: https://pypi.org/project/azure-identity/credentials
parameter has been renamedcredential
-
The
config
attribute no longer exists on a client, configuration should be passed as kwarg. Example:MyClient(credential, subscription_id, enable_logging=True)
. For a complete set of supported options, see the parameters accept in init documentation of azure-core -
You can't import a
version
module anymore, use__version__
instead -
Operations that used to return a
msrest.polling.LROPoller
now returns aazure.core.polling.LROPoller
and are prefixed withbegin_
. -
Exceptions tree have been simplified and most exceptions are now
azure.core.exceptions.HttpResponseError
(CloudError
has been removed). -
Most of the operation kwarg have changed. Some of the most noticeable:
raw
has been removed. Equivalent feature can be found usingcls
, a callback that will give access to internal HTTP response for advanced user- For a complete set of supported options, see the parameters accept in Request documentation of azure-core
General new features
- Type annotations support using
typing
. SDKs are mypy ready. - This client has now stable and official support for async. Check the
aio
namespace of your package to find the async client. - This client now support natively tracing library like OpenCensus or OpenTelemetry. See this tracing quickstart for an overview.
1.0.0 (2019-07-05)
- GA Release
0.1.0 (2019-05-14)
- Initial Release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for azure_mgmt_managedservices-7.0.0b2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b39ca66ef46b6d79e23e7a195e9a03141838dad4879ac655700415e39ff07675 |
|
MD5 | 792732fc0023ab0848609001d89ea007 |
|
BLAKE2b-256 | 2dac6199b896dc2cf1353d237a0f373fdfc3c698377625d6d70c06e28fe15728 |
Hashes for azure_mgmt_managedservices-7.0.0b2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b85a3ff1d26a952caaddb514a7525730030b66deae9d96348f4d3649f125c71 |
|
MD5 | e6d0145c0b00f8a51e5ceb02e4d70987 |
|
BLAKE2b-256 | 027412c3c09d579c37eaf2df284ed2d2fca9ac32129a75f839d72b0591b0469f |