Microsoft Azure Batch Management Client Library for Python
Project description
Microsoft Azure SDK for Python
This is the Microsoft Azure Batch Management Client Library.
Azure Resource Manager (ARM) is the next generation of management APIs that replace the old Azure Service Management (ASM).
This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.
For the older Azure Service Management (ASM) libraries, see azure-servicemanagement-legacy library.
For a more complete set of Azure libraries, see the azure sdk python release.
Usage
To learn how to use this package, see the quickstart guide
For docs and references, see Python SDK References Code samples for this package can be found at Batch Management on docs.microsoft.com. Additional code samples for different Azure services are available at Samples Repo
Provide Feedback
If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.
Release History
15.0.0 (2021-02-01)
- Fix changelog
15.0.0b1 (2021-01-28)
Features
- Added new extensions property to VirtualMachineConfiguration on pools to specify virtual machine extensions for nodes
- Added the ability to specify availability zones using a new property node_placement_configuration on VirtualMachineConfiguration
- Added a new identity property on Pool to specify a managed identity
- Added a new user_assigned_identities on BatchAccountIdentity to specify a user managed identity
- Added certificate operation method PoolOperations.create
- Added certificate operation method CertificateOperations.create
Breaking changes
- Removed certificate operation method PoolOperations.begin_create. Certificate operations are not long running operations so this was incorrect.
- Removed certificate operation method CertificateOperations.begin_create. Certificate operations are not long running operations so this was incorrect.
14.0.0 (2020-12-22)
- GA release
14.0.0b1 (2020-10-23)
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.credentialsormsrestazure.azure_active_directoryinstances are no longer supported, use theazure-identityclasses instead: https://pypi.org/project/azure-identity/credentialsparameter has been renamedcredential
-
The
configattribute 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
versionmodule anymore, use__version__instead -
Operations that used to return a
msrest.polling.LROPollernow returns aazure.core.polling.LROPollerand are prefixed withbegin_. -
Exceptions tree have been simplified and most exceptions are now
azure.core.exceptions.HttpResponseError(CloudErrorhas been removed). -
Most of the operation kwarg have changed. Some of the most noticeable:
rawhas 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
aionamespace 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.
9.0.0 (2020-05-29)
REST API version
- This version targets REST API version 2020-05-01.
Features
- Added ability to access the Batch DataPlane API without needing a public DNS entry for the account via the new
public_network_accessproperty onBatchAccount. - Added new
PrivateLinkResourceandPrivateEndpointConnectionresource types. These are both only used when thepublic_network_accessproperty onBatchAccountis set toDisabled.- When
public_network_accessis set toDisableda newPrivateLinkResourceis visible in that account, which can be used to connect to the account using an ARM Private Endpoint in your VNET.
- When
- Added ability to encrypt
ComputeNodedisk drives using the newdisk_encryption_configurationproperty ofVirtualMachineConfiguration. - [Breaking] The
idproperty ofImageReferencecan now only refer to a Shared Image Gallery image. - [Breaking] Pools can now be provisioned without a public IP using the new
public_ip_configurationproperty ofNetworkConfiguration.- The
public_ipsproperty ofNetworkConfigurationhas moved in toPublicIPAddressConfigurationas well. This property can only be specified ifIPAddressProvisioningTypeisUserManaged.
- The
- Adds a new property
identityof typeBatchAccountIdentitytoBatchAccount. This can be used to configure how customer data is encrypted inside the Batch account.- This new property is configurable at the account level on create and update through a new
identityproperty onBatchAccountCreateParametersandBatchAccountUpdateParameters
- This new property is configurable at the account level on create and update through a new
Fixes
- [Breaking] Move tags from being an argument on create and update pool parameters to being a part of
BatchAccountCreateParametersandBatchAccountUpdateParametersto properly reflect the REST API
8.0.1 (2020-05-26) [Deprecated]
Notices
- This version targeted an invalid REST API. This version does not honor the associated REST API contract.
Bugfixes
- Fix issues in PrivateEndpointConnection get and update methods due to mistakes in the Swagger specification causing validation to fail. It is advised to use version 9+ to make use of the features added in this version.
8.0.0 (2020-04-10) [Deprecated]
Notices
- This version targeted an invalid REST API. Currently the PrivateEndpoint get() and update() functions do not function correctly. It is advised to use version 9+ to make use of the features added in this version.
REST API version
- This version targets REST API version 2020-03-01.
Features
- Added ability to access the Batch DataPlane API without needing a public DNS entry for the account via the new
public_network_accessproperty onBatchAccount. - Added new
PrivateLinkResourceandPrivateEndpointConnectionresource types. These are both only used when thepublic_network_accessproperty onBatchAccountis set toDisabled.- When
public_network_accessis set toDisableda newPrivateLinkResourceis visible in that account, which can be used to connect to the account using an ARM Private Endpoint in your VNET.
- When
- Added ability to encrypt
ComputeNodedisk drives using the newdisk_encryption_configurationproperty ofVirtualMachineConfiguration. - [Breaking] The
idproperty ofImageReferencecan now only refer to a Shared Image Gallery image. - [Breaking] Pools can now be provisioned without a public IP using the new
public_ip_configurationproperty ofNetworkConfiguration.- The
public_ipsproperty ofNetworkConfigurationhas moved in toPublicIPAddressConfigurationas well. This property can only be specified ifIPAddressProvisioningTypeisUserManaged.
- The
7.0.0 (2019-08-05)
- Added ability to specify a collection of public IPs on
NetworkConfigurationvia the newpublic_ipsproperty. This guarantees nodes in the Pool will have an IP from the list user provided IPs. - Added ability to mount remote file-systems on each node of a pool
via the
mount_configurationproperty onPool. - Shared Image Gallery images can now be specified on the
idproperty ofImageReferenceby referencing the image via its ARM ID. - [Breaking] When not specified, the default value for
wait_for_successonStartTaskis nowTrue(wasFalse). - [Breaking] When not specified, the default value for
scopeonAutoUserSpecificationis now alwaysPool(wasTaskon Windows nodes,Poolon Linux nodes). - Breaking Model signatures are now using only keywords-arguments syntax. Each positional argument must be rewritten as a keyword argument.
- Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to improve the behavior when unrecognized enum values are encountered.
6.0.0 (2019-01-14)
-
-
[Breaking] ResourceFile improvements
-
Added the ability specify an entire Azure Storage container in
ResourceFile. -
A new property
HttpUrlreplacesBlobSource. This can be any HTTP URL. Previously, this had to be an Azure Blob Storage URL. -
-
When constructing a
ResourceFileyou can now choose from one of the following options:HttpUrl: Specify an HTTP URL pointing to a specific file to download.StorageContainerUrl: Specify an Azure Storage container URL. All blobs matching theBlobPrefixin the Storage container will be downloaded.AutoStorageContainerName: Specify the name of a container in the Batch registered auto-storage account. All blobs matching theBlobPrefixin the Storage container will be downloaded.
-
-
-
-
[Breaking] Removed
OSDiskproperty fromVirtualMachineConfiguration. This property is no longer supported. -
[Breaking]
Applicationno longer has aPackagesproperty, instead the packages can be retrieved via the newApplicationPackage.ListAPI. -
[Breaking]
TargetOsVersionis nowOsVersion, andCurrentOsVersionis no longer supported onCloudServiceConfiguration. -
Added support on Windows pools for creating users with a specific login mode (either
BatchorInteractive) viaWindowsUserConfiguration.LoginMode. -
Added support for
ContainerConfigurationwhen creating a pool.
5.0.1 (2018-05-25)
Bugfixes
- Compatibility of the sdist with wheel 0.31.0
- msrestazure dependency version range
5.0.0 (2017-11-13)
- Batch Pools are now ARM resources that can be created, updated and managed using the new client.PoolOperations.
- Batch Certificates are now ARM resources that can be created, updated and managed using the new client.CertificateOperations.
4.1.0 (2017-07-24)
- New operation to check the availability and validity of a Batch account name.
4.0.0 (2017-05-10)
- New operation to list the operations available for the
Microsoft.Batch provider, includes new
OperationandOperationDisplaymodels. - Renamed
AddApplicationParameterstoApplicationCreateParameters. - Renamed
UpdateApplicationParameterstoApplicationUpdateParameters. - Removed
core_quotaattribute fromBatchAccountobject, now replaced by separatededicated_core_quotaandlow_priority_core_quota. BatchAccountKeysobject now has additionalaccount_nameattribute.
3.0.1 (2017-04-19)
- This wheel package is now built with the azure wheel extension
3.0.0 (2017-03-07)
- Updated
BatchAccountmodel - support for pool allocation in the user's subscription. - Updated
BatchAccountmodel - support for referencing an Azure Key Vault for accounts created with a pool allocation mode of UserSubscription. - Updated
BatchAccountmodel - properties are now read only. - Updated
ApplicationPackagemodel - properties are now read only. - Updated
BatchAccountKeysmodel - properties are now read only. - Updated
BatchLocationQuotamodel - properties are now read only.
2.0.0 (2016-10-04)
- Renamed
AccountResourcetoBatchAccount. - Renamed
AccountOperationstoBatchAccountOperations. TheIBatchManagementClient.Accountproperty was also renamed toIBatchManagementClient.BatchAccount. - Split
ApplicationandApplicationPackageoperations up into two separate operation groups. - Updated
ApplicationandApplicationPackagemethods to use the standardCreate,Delete,Updatesyntax. For example creating anApplicationis done viaApplicationOperations.Create. - Renamed
SubscriptionOperationstoLocationOperationsand changedSubscriptionOperations.GetSubscriptionQuotasto beLocationOperations.GetQuotas. - This version targets REST API version 2015-12-01.
1.0.0 (2016-08-09)
- 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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file azure-mgmt-batch-15.0.0.zip.
File metadata
- Download URL: azure-mgmt-batch-15.0.0.zip
- Upload date:
- Size: 175.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b793bb31a0d4dc8c29186db61db24d83795851a75846aadb187cf95bf853ccb
|
|
| MD5 |
c6a2dee2e5584e0a709b00a60c620d24
|
|
| BLAKE2b-256 |
c0b5a705807b3ab2e3c1eb03a21a48c127b4860d6b7331cfc2b74af7c5ae3fe8
|
File details
Details for the file azure_mgmt_batch-15.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: azure_mgmt_batch-15.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 131.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25e534eaae5e848bffb978038cd412a6478cd3f08220d361aa1981b98cb39704
|
|
| MD5 |
5f0869561aa98194ee9254885496bb3d
|
|
| BLAKE2b-256 |
bf48aa5b7c7172551c5d8ba186faf1490d307a584d62b9ab48c6c97e6b35b0b7
|