Microsoft Azure Storagecache Management Client Library for Python
Project description
Microsoft Azure SDK for Python
This is the Microsoft Azure Storage Cache 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.
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
Install the package
pip install azure-mgmt-storagecache
pip install azure-identity
Authentication
By default, Azure Active Directory token authentication depends on correct configuration of the following environment variables.
AZURE_CLIENT_IDfor Azure client ID.AZURE_TENANT_IDfor Azure tenant ID.AZURE_CLIENT_SECRETfor 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.storagecache import StorageCacheManagementClient
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = StorageCacheManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
Examples
Code samples for this package can be found at:
- Search Storage Cache Management 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
3.0.1 (2025-10-09)
Bugs Fixed
- Exclude
generated_samplesandgenerated_testsfrom wheel
3.0.0 (2025-09-25)
Features Added
- Model
StorageCacheManagementClientadded parametercloud_settingin method__init__ - Client
StorageCacheManagementClientadded operation groupauto_export_jobs - Client
StorageCacheManagementClientadded operation groupauto_import_jobs - Model
ImportJobadded propertyadmin_status - Model
ImportJobadded propertyimported_files - Model
ImportJobadded propertyimported_directories - Model
ImportJobadded propertyimported_symlinks - Model
ImportJobadded propertypreexisting_files - Model
ImportJobadded propertypreexisting_directories - Model
ImportJobadded propertypreexisting_symlinks - Model
ImportJobUpdateadded propertyadmin_status - Added model
AutoExportJob - Added enum
AutoExportJobAdminStatus - Added enum
AutoExportJobProvisioningStateType - Added model
AutoExportJobUpdate - Added model
AutoExportJobsListResult - Added enum
AutoExportStatusType - Added model
AutoImportJob - Added enum
AutoImportJobPropertiesAdminStatus - Added enum
AutoImportJobPropertiesProvisioningState - Added model
AutoImportJobPropertiesStatusBlobSyncEvents - Added enum
AutoImportJobState - Added model
AutoImportJobUpdate - Added enum
AutoImportJobUpdatePropertiesAdminStatus - Added model
AutoImportJobsListResult - Added enum
ImportJobAdminStatus - Added operation group
AutoExportJobsOperations - Added operation group
AutoImportJobsOperations
Breaking Changes
- Parameter
conflict_resolution_modeof methodImportJob.__init__is now optional - Deleted or renamed operation group
StorageCacheManagementClientOperationsMixin
2.0.0 (2024-05-20)
Features Added
- Added operation group ImportJobsOperations
- Model AmlFilesystem has a new parameter root_squash_settings
- Model AmlFilesystemHsmSettings has a new parameter import_prefixes_initial
- Model AmlFilesystemUpdate has a new parameter root_squash_settings
- Model ErrorResponse has a new parameter error
- Model AscOperation.error changes type from ErrorResponse to AscOperationErrorResponse
Breaking Changes
- Model ErrorResponse no longer has parameter code
- Model ErrorResponse no longer has parameter message
1.6.0b1 (2024-02-22)
Features Added
- Model AmlFilesystem has a new parameter root_squash_settings
- Model AmlFilesystemUpdate has a new parameter root_squash_settings
1.5.0 (2023-06-16)
Features Added
- Added operation group AmlFilesystemsOperations
- Added operation group StorageCacheManagementClientOperationsMixin
1.4.0 (2023-02-15)
Features Added
- Added operation StorageTargetsOperations.begin_restore_defaults
- Model BlobNfsTarget has a new parameter verification_timer
- Model BlobNfsTarget has a new parameter write_back_timer
- Model Nfs3Target has a new parameter verification_timer
- Model Nfs3Target has a new parameter write_back_timer
Breaking Changes
- Renamed operation CachesOperations.update to CachesOperations.begin_update
1.4.0b1 (2022-12-12)
Other Changes
- Added generated samples in github repo
- Drop support for python<3.7.0
1.3.0 (2022-07-07)
Features
- Added operation CachesOperations.begin_pause_priming_job
- Added operation CachesOperations.begin_resume_priming_job
- Added operation CachesOperations.begin_space_allocation
- Added operation CachesOperations.begin_start_priming_job
- Added operation CachesOperations.begin_stop_priming_job
- Model ApiOperationPropertiesServiceSpecification has a new parameter log_specifications
- Model Cache has a new parameter priming_jobs
- Model Cache has a new parameter space_allocation
- Model Cache has a new parameter upgrade_settings
- Model StorageTarget has a new parameter allocation_percentage
1.2.0 (2022-03-22)
Features
- Added operation StorageTargetOperations.begin_invalidate
- Added operation group AscUsagesOperations
- Model Cache has a new parameter zones
1.1.0 (2021-09-30)
Features
- Model StorageTarget has a new parameter state
1.0.0 (2021-07-29)
Features
- Model CacheEncryptionSettings has a new parameter rotation_to_latest_key_version_enabled
- Model CacheIdentity has a new parameter user_assigned_identities
- Added operation group StorageTargetOperations
Breaking changes
- Operation StorageTargetsOperations.begin_delete has a new signature
1.0.0b1 (2021-05-13)
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.
0.3.0 (2020-03-01)
Features
- Model Cache has a new parameter security_settings
- Model Cache has a new parameter network_settings
- Model Cache has a new parameter identity
- Model Cache has a new parameter encryption_settings
0.2.0 (2019-11-12)
Features
- Added operation CachesOperations.create_or_update
- Added operation StorageTargetsOperations.create_or_update
Breaking changes
- Removed operation CachesOperations.create
- Removed operation StorageTargetsOperations.create
- Removed operation StorageTargetsOperations.update
0.1.0rc1 (2019-09-03)
- 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_storagecache-3.0.1.tar.gz.
File metadata
- Download URL: azure_mgmt_storagecache-3.0.1.tar.gz
- Upload date:
- Size: 121.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a6e33f2ff8d610c96e1afdbc8b1adbf80a4da928eed494f5c3fa51bf876275d
|
|
| MD5 |
2f353a41b1df666a71e4086690200315
|
|
| BLAKE2b-256 |
ac8f25c4398c581221e6c92d66cf495ec91949ef14547c74d258549dc0b3cea2
|
File details
Details for the file azure_mgmt_storagecache-3.0.1-py3-none-any.whl.
File metadata
- Download URL: azure_mgmt_storagecache-3.0.1-py3-none-any.whl
- Upload date:
- Size: 165.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97ad993282bc4c7c57ea69e339c2084749101e06294e03cd62075bebf6130f10
|
|
| MD5 |
16d19f373b44815b510cc51ebe2c11a8
|
|
| BLAKE2b-256 |
d369aca15c58aecba7e398b886c98be36f0bf08910a9197a782e38d6eab5ec38
|