azure-mgmt-storage 21.2.1__tar.gz → 22.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- azure_mgmt_storage-22.1.0/CHANGELOG.md +734 -0
- azure_mgmt_storage-22.1.0/PKG-INFO +824 -0
- azure_mgmt_storage-22.1.0/_meta.json +33 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/_serialization.py +2117 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/_storage_management_client.py +557 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/_version.py +8 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/aio/_storage_management_client.py +557 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/models.py +8 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/__init__.py +32 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/_configuration.py +65 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/_storage_management_client.py +117 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/_version.py +9 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/aio/__init__.py +29 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/aio/_configuration.py +65 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/aio/_storage_management_client.py +120 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/aio/operations/__init__.py +27 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/aio/operations/_storage_accounts_operations.py +1023 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/aio/operations/_usage_operations.py +130 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/models/__init__.py +88 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/models/_models_py3.py +829 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/operations/__init__.py +27 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/operations/_storage_accounts_operations.py +1278 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/operations/_usage_operations.py +157 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01/py.typed +1 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/__init__.py +32 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/_configuration.py +65 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/_storage_management.py +121 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/_version.py +9 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/__init__.py +29 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/_configuration.py +65 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/_storage_management.py +124 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/operations/__init__.py +31 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/operations/_operations.py +130 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/operations/_skus_operations.py +130 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/operations/_storage_accounts_operations.py +1299 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/aio/operations/_usage_operations.py +130 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/models/__init__.py +140 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/models/_models_py3.py +1851 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/operations/__init__.py +31 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/operations/_operations.py +151 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/operations/_skus_operations.py +157 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/operations/_storage_accounts_operations.py +1638 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/operations/_usage_operations.py +157 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01/py.typed +1 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/__init__.py +32 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/_configuration.py +64 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/_storage_management_client.py +213 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/_version.py +9 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/__init__.py +29 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/_configuration.py +64 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/_storage_management_client.py +217 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/__init__.py +59 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_containers_operations.py +1725 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_inventory_policies_operations.py +437 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_services_operations.py +368 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_encryption_scopes_operations.py +538 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_file_services_operations.py +335 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_file_shares_operations.py +771 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_management_policies_operations.py +343 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_object_replication_policies_operations.py +428 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_operations.py +130 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_private_endpoint_connections_operations.py +424 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_private_link_resources_operations.py +113 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_operations.py +597 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_services_operations.py +335 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_skus_operations.py +131 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_storage_accounts_operations.py +1696 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_table_operations.py +394 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_table_services_operations.py +335 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/aio/operations/_usages_operations.py +134 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/models/__init__.py +364 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/models/_models_py3.py +6038 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/models/_storage_management_client_enums.py +456 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/__init__.py +59 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py +2226 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_blob_inventory_policies_operations.py +582 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_blob_services_operations.py +476 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_encryption_scopes_operations.py +677 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_file_services_operations.py +444 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_file_shares_operations.py +1000 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_management_policies_operations.py +453 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_object_replication_policies_operations.py +567 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_operations.py +151 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_private_endpoint_connections_operations.py +575 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_private_link_resources_operations.py +149 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_queue_operations.py +805 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_queue_services_operations.py +444 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_skus_operations.py +157 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_storage_accounts_operations.py +2122 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_table_operations.py +563 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_table_services_operations.py +444 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/operations/_usages_operations.py +164 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01/py.typed +1 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/__init__.py +32 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/_configuration.py +64 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/_storage_management_client.py +256 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/_version.py +9 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/__init__.py +29 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/_configuration.py +64 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/_storage_management_client.py +261 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/__init__.py +71 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_blob_containers_operations.py +1840 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_blob_inventory_policies_operations.py +434 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_blob_services_operations.py +355 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_deleted_accounts_operations.py +188 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_encryption_scopes_operations.py +556 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_file_services_operations.py +483 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_file_shares_operations.py +988 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_local_users_operations.py +571 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_management_policies_operations.py +343 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_network_security_perimeter_configurations_operations.py +348 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_object_replication_policies_operations.py +438 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_operations.py +130 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_private_endpoint_connections_operations.py +424 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_private_link_resources_operations.py +113 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_queue_operations.py +597 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_queue_services_operations.py +322 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_skus_operations.py +131 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_storage_accounts_operations.py +2222 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_storage_task_assignment_instances_report_operations.py +166 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_storage_task_assignments_instances_report_operations.py +160 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_storage_task_assignments_operations.py +810 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_table_operations.py +577 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_table_services_operations.py +322 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio/operations/_usages_operations.py +134 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/models/__init__.py +570 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/models/_models_py3.py +10308 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/models/_storage_management_client_enums.py +714 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/__init__.py +71 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_blob_containers_operations.py +2389 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_blob_inventory_policies_operations.py +587 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_blob_services_operations.py +463 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_deleted_accounts_operations.py +244 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_encryption_scopes_operations.py +720 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_file_services_operations.py +669 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_file_shares_operations.py +1296 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_local_users_operations.py +798 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_management_policies_operations.py +459 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_network_security_perimeter_configurations_operations.py +468 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_object_replication_policies_operations.py +585 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_operations.py +151 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_private_endpoint_connections_operations.py +583 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_private_link_resources_operations.py +151 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_queue_operations.py +815 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_queue_services_operations.py +431 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_skus_operations.py +157 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_storage_accounts_operations.py +2822 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_storage_task_assignment_instances_report_operations.py +223 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_storage_task_assignments_instances_report_operations.py +208 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_storage_task_assignments_operations.py +1027 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_table_operations.py +766 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_table_services_operations.py +431 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations/_usages_operations.py +164 -0
- azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/py.typed +1 -0
- azure_mgmt_storage-22.1.0/azure_mgmt_storage.egg-info/PKG-INFO +824 -0
- azure_mgmt_storage-22.1.0/azure_mgmt_storage.egg-info/SOURCES.txt +205 -0
- azure_mgmt_storage-22.1.0/azure_mgmt_storage.egg-info/requires.txt +4 -0
- azure_mgmt_storage-22.1.0/pyproject.toml +6 -0
- azure_mgmt_storage-22.1.0/setup.py +83 -0
- azure_mgmt_storage-22.1.0/tests/_aio_testcase.py +35 -0
- azure_mgmt_storage-22.1.0/tests/conftest.py +35 -0
- azure_mgmt_storage-22.1.0/tests/disable_test_cli_mgmt_storage.py +606 -0
- azure_mgmt_storage-22.1.0/tests/disable_test_cli_mgmt_storage_async.py +528 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_deleted_accounts_operations_async_test.py +27 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_deleted_accounts_operations_test.py +26 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_operations_async_test.py +27 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_operations_test.py +26 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_skus_operations_async_test.py +27 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_skus_operations_test.py +26 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_storage_accounts_operations_async_test.py +36 -0
- azure_mgmt_storage-22.1.0/tests/test_storage_management_storage_accounts_operations_test.py +35 -0
- azure-mgmt-storage-21.2.1/CHANGELOG.md +0 -698
- azure-mgmt-storage-21.2.1/PKG-INFO +0 -784
- azure-mgmt-storage-21.2.1/_meta.json +0 -33
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/_serialization.py +0 -2004
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/_storage_management_client.py +0 -1336
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/_version.py +0 -8
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/aio/_storage_management_client.py +0 -1336
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/models.py +0 -8
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/_storage_management.py +0 -115
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/aio/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/aio/_storage_management.py +0 -118
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/aio/operations/__init__.py +0 -21
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/aio/operations/_storage_accounts_operations.py +0 -1030
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/aio/operations/_usage_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/models/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/models/_models_py3.py +0 -660
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/models/_storage_management_enums.py +0 -59
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/operations/__init__.py +0 -21
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/operations/_storage_accounts_operations.py +0 -1297
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15/operations/_usage_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/_storage_management_client.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/aio/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/aio/_storage_management_client.py +0 -120
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/aio/operations/__init__.py +0 -21
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/aio/operations/_storage_accounts_operations.py +0 -1032
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/aio/operations/_usage_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/models/__init__.py +0 -77
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/models/_models_py3.py +0 -831
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/operations/__init__.py +0 -21
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/operations/_storage_accounts_operations.py +0 -1285
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01/operations/_usage_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/_storage_management.py +0 -115
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/aio/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/aio/_storage_management.py +0 -118
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/aio/operations/__init__.py +0 -21
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/aio/operations/_storage_accounts_operations.py +0 -1310
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/aio/operations/_usage_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/models/__init__.py +0 -97
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/models/_models_py3.py +0 -1210
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/models/_storage_management_enums.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/operations/__init__.py +0 -21
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/operations/_storage_accounts_operations.py +0 -1647
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01/operations/_usage_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/_storage_management.py +0 -121
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/_storage_management.py +0 -124
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/operations/__init__.py +0 -25
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/operations/_skus_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/operations/_storage_accounts_operations.py +0 -1310
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/operations/_usage_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/models/__init__.py +0 -129
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/models/_models_py3.py +0 -1843
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/models/_storage_management_enums.py +0 -191
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/operations/__init__.py +0 -25
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/operations/_storage_accounts_operations.py +0 -1647
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/operations/_usage_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/_storage_management.py +0 -121
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/_configuration.py +0 -66
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/_storage_management.py +0 -124
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/operations/__init__.py +0 -25
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/operations/_skus_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/operations/_storage_accounts_operations.py +0 -1310
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/operations/_usage_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/models/__init__.py +0 -129
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/models/_models_py3.py +0 -1852
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/operations/__init__.py +0 -25
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/operations/_storage_accounts_operations.py +0 -1647
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/operations/_usage_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/_storage_management_client.py +0 -127
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/_storage_management_client.py +0 -131
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/__init__.py +0 -27
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/_blob_containers_operations.py +0 -1692
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/_skus_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/_storage_accounts_operations.py +0 -1310
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/aio/operations/_usage_operations.py +0 -215
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/models/__init__.py +0 -171
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/models/_models_py3.py +0 -2556
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/models/_storage_management_client_enums.py +0 -259
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/__init__.py +0 -27
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/_blob_containers_operations.py +0 -2178
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/_storage_accounts_operations.py +0 -1647
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_02_01/operations/_usage_operations.py +0 -269
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/_storage_management_client.py +0 -146
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/_storage_management_client.py +0 -148
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/__init__.py +0 -29
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_blob_containers_operations.py +0 -1721
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_management_policies_operations.py +0 -357
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_operations.py +0 -137
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_skus_operations.py +0 -138
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_storage_accounts_operations.py +0 -1635
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_usages_operations.py +0 -221
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/models/__init__.py +0 -181
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/models/_models_py3.py +0 -2699
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/models/_storage_management_client_enums.py +0 -265
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/__init__.py +0 -29
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_blob_containers_operations.py +0 -2207
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_management_policies_operations.py +0 -467
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_operations.py +0 -158
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_skus_operations.py +0 -164
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_storage_accounts_operations.py +0 -2085
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_03_01_preview/operations/_usages_operations.py +0 -273
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/_storage_management_client.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/_storage_management_client.py +0 -143
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/__init__.py +0 -29
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_blob_containers_operations.py +0 -1692
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_blob_services_operations.py +0 -282
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_skus_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_storage_accounts_operations.py +0 -1420
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/models/__init__.py +0 -185
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/models/_models_py3.py +0 -2838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/models/_storage_management_client_enums.py +0 -287
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/__init__.py +0 -29
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_blob_containers_operations.py +0 -2178
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_blob_services_operations.py +0 -361
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_storage_accounts_operations.py +0 -1792
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_07_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/_storage_management_client.py +0 -146
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/_storage_management_client.py +0 -150
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/__init__.py +0 -31
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_blob_containers_operations.py +0 -1696
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_blob_services_operations.py +0 -282
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_skus_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_storage_accounts_operations.py +0 -1477
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/models/__init__.py +0 -209
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/models/_models_py3.py +0 -3194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/models/_storage_management_client_enums.py +0 -299
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/__init__.py +0 -31
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_blob_containers_operations.py +0 -2182
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_blob_services_operations.py +0 -361
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_storage_accounts_operations.py +0 -1875
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2018_11_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/_storage_management_client.py +0 -158
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/_storage_management_client.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/__init__.py +0 -35
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_blob_containers_operations.py +0 -1746
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_blob_services_operations.py +0 -375
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_file_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_file_shares_operations.py +0 -625
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_skus_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_storage_accounts_operations.py +0 -1483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/models/__init__.py +0 -235
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/models/_models_py3.py +0 -3799
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/models/_storage_management_client_enums.py +0 -326
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/__init__.py +0 -35
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_blob_containers_operations.py +0 -2245
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_blob_services_operations.py +0 -483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_file_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_file_shares_operations.py +0 -806
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_storage_accounts_operations.py +0 -1888
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_04_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/_storage_management_client.py +0 -213
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/_storage_management_client.py +0 -217
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/__init__.py +0 -53
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_containers_operations.py +0 -1747
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_services_operations.py +0 -375
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_file_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_file_shares_operations.py +0 -787
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_object_replication_policies_operations.py +0 -436
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_storage_accounts_operations.py +0 -1687
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_table_operations.py +0 -405
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_table_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/models/__init__.py +0 -353
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/models/_models_py3.py +0 -6039
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/models/_storage_management_client_enums.py +0 -455
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/__init__.py +0 -53
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py +0 -2246
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_blob_inventory_policies_operations.py +0 -590
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_blob_services_operations.py +0 -483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_file_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_file_shares_operations.py +0 -1014
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_object_replication_policies_operations.py +0 -575
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_queue_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_storage_accounts_operations.py +0 -2124
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_table_operations.py +0 -572
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_table_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2019_06_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/_storage_management_client.py +0 -234
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/_storage_management_client.py +0 -237
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_blob_containers_operations.py +0 -1776
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_blob_inventory_policies_operations.py +0 -454
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_blob_services_operations.py +0 -382
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_deleted_accounts_operations.py +0 -198
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_encryption_scopes_operations.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_file_services_operations.py +0 -348
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_file_shares_operations.py +0 -825
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_management_policies_operations.py +0 -355
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_object_replication_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_operations.py +0 -137
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_private_endpoint_connections_operations.py +0 -441
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_private_link_resources_operations.py +0 -119
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_queue_operations.py +0 -618
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_queue_services_operations.py +0 -348
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_skus_operations.py +0 -138
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_storage_accounts_operations.py +0 -1725
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_table_operations.py +0 -416
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_table_services_operations.py +0 -348
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_usages_operations.py +0 -142
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/models/__init__.py +0 -373
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/models/_models_py3.py +0 -6344
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/models/_storage_management_client_enums.py +0 -468
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_blob_containers_operations.py +0 -2276
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_blob_inventory_policies_operations.py +0 -599
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_blob_services_operations.py +0 -490
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_deleted_accounts_operations.py +0 -255
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_encryption_scopes_operations.py +0 -700
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_file_services_operations.py +0 -457
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_file_shares_operations.py +0 -1072
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_management_policies_operations.py +0 -465
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_object_replication_policies_operations.py +0 -584
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_operations.py +0 -158
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_private_endpoint_connections_operations.py +0 -592
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_private_link_resources_operations.py +0 -155
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_queue_operations.py +0 -824
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_queue_services_operations.py +0 -457
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_skus_operations.py +0 -165
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_storage_accounts_operations.py +0 -2170
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_table_operations.py +0 -582
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_table_services_operations.py +0 -457
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2020_08_01_preview/operations/_usages_operations.py +0 -171
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/_storage_management_client.py +0 -219
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/_storage_management_client.py +0 -224
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_blob_containers_operations.py +0 -1747
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_blob_services_operations.py +0 -375
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_file_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_file_shares_operations.py +0 -810
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_object_replication_policies_operations.py +0 -436
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_queue_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_storage_accounts_operations.py +0 -1687
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_table_operations.py +0 -405
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_table_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/models/__init__.py +0 -381
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/models/_models_py3.py +0 -6465
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/models/_storage_management_client_enums.py +0 -483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_blob_containers_operations.py +0 -2246
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_blob_inventory_policies_operations.py +0 -590
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_blob_services_operations.py +0 -483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_file_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_file_shares_operations.py +0 -1056
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_object_replication_policies_operations.py +0 -575
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_queue_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_storage_accounts_operations.py +0 -2124
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_table_operations.py +0 -572
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_table_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_01_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/_storage_management_client.py +0 -219
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/_storage_management_client.py +0 -224
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_blob_containers_operations.py +0 -1747
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_blob_services_operations.py +0 -375
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_file_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_file_shares_operations.py +0 -810
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_object_replication_policies_operations.py +0 -436
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_queue_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_storage_accounts_operations.py +0 -1687
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_table_operations.py +0 -405
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_table_services_operations.py +0 -341
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/models/__init__.py +0 -389
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/models/_models_py3.py +0 -6606
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/models/_storage_management_client_enums.py +0 -489
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_blob_containers_operations.py +0 -2246
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_blob_inventory_policies_operations.py +0 -590
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_blob_services_operations.py +0 -483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_file_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_file_shares_operations.py +0 -1056
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_object_replication_policies_operations.py +0 -575
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_queue_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_storage_accounts_operations.py +0 -2124
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_table_operations.py +0 -572
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_table_services_operations.py +0 -450
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_02_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/_storage_management_client.py +0 -219
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/_storage_management_client.py +0 -224
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_blob_containers_operations.py +0 -1860
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_blob_services_operations.py +0 -375
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_file_services_operations.py +0 -344
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_file_shares_operations.py +0 -1010
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_queue_operations.py +0 -613
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_queue_services_operations.py +0 -344
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_storage_accounts_operations.py +0 -1687
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_table_operations.py +0 -410
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_table_services_operations.py +0 -344
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/models/__init__.py +0 -411
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/models/_models_py3.py +0 -7083
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/models/_storage_management_client_enums.py +0 -528
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_blob_containers_operations.py +0 -2392
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_blob_inventory_policies_operations.py +0 -590
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_blob_services_operations.py +0 -483
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_file_services_operations.py +0 -453
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_file_shares_operations.py +0 -1303
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_object_replication_policies_operations.py +0 -585
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_queue_operations.py +0 -819
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_queue_services_operations.py +0 -453
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_storage_accounts_operations.py +0 -2124
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_table_operations.py +0 -577
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_table_services_operations.py +0 -453
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_04_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/_storage_management_client.py +0 -219
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/_storage_management_client.py +0 -224
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_file_services_operations.py +0 -331
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_file_shares_operations.py +0 -1010
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_queue_operations.py +0 -613
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_queue_services_operations.py +0 -331
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_storage_accounts_operations.py +0 -1898
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_table_operations.py +0 -410
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_table_services_operations.py +0 -331
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/models/__init__.py +0 -419
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/models/_models_py3.py +0 -7467
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/models/_storage_management_client_enums.py +0 -544
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/__init__.py +0 -55
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_blob_containers_operations.py +0 -2370
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_blob_inventory_policies_operations.py +0 -590
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_blob_services_operations.py +0 -464
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_file_services_operations.py +0 -434
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_file_shares_operations.py +0 -1303
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_object_replication_policies_operations.py +0 -585
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_queue_operations.py +0 -819
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_queue_services_operations.py +0 -434
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_storage_accounts_operations.py +0 -2400
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_table_operations.py +0 -577
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_table_services_operations.py +0 -434
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_06_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/_storage_management_client.py +0 -225
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/_storage_management_client.py +0 -230
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_file_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_file_shares_operations.py +0 -1003
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_local_users_operations.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_queue_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_storage_accounts_operations.py +0 -1898
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_table_operations.py +0 -405
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_table_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/models/__init__.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/models/_models_py3.py +0 -7738
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/models/_storage_management_client_enums.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_blob_containers_operations.py +0 -2370
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_blob_inventory_policies_operations.py +0 -590
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_blob_services_operations.py +0 -464
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_file_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_file_shares_operations.py +0 -1296
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_local_users_operations.py +0 -758
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_object_replication_policies_operations.py +0 -585
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_queue_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_storage_accounts_operations.py +0 -2400
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_table_operations.py +0 -572
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_table_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_08_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/_storage_management_client.py +0 -225
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/_patch.py +0 -32
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/_storage_management_client.py +0 -230
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_file_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_file_shares_operations.py +0 -1003
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_local_users_operations.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_queue_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_storage_accounts_operations.py +0 -1898
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_table_operations.py +0 -588
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_table_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/models/__init__.py +0 -441
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/models/_models_py3.py +0 -8069
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/models/_storage_management_client_enums.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_blob_containers_operations.py +0 -2370
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_blob_inventory_policies_operations.py +0 -587
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_blob_services_operations.py +0 -464
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_file_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_file_shares_operations.py +0 -1296
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_local_users_operations.py +0 -758
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_object_replication_policies_operations.py +0 -585
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_queue_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_storage_accounts_operations.py +0 -2400
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_table_operations.py +0 -765
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_table_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2021_09_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/_storage_management_client.py +0 -225
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/_storage_management_client.py +0 -230
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_encryption_scopes_operations.py +0 -550
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_file_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_file_shares_operations.py +0 -1003
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_local_users_operations.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_queue_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_storage_accounts_operations.py +0 -1898
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_table_operations.py +0 -588
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_table_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/models/__init__.py +0 -441
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/models/_models_py3.py +0 -8057
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/models/_storage_management_client_enums.py +0 -584
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_blob_containers_operations.py +0 -2370
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_blob_inventory_policies_operations.py +0 -587
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_blob_services_operations.py +0 -464
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_encryption_scopes_operations.py +0 -689
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_file_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_file_shares_operations.py +0 -1296
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_local_users_operations.py +0 -758
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_object_replication_policies_operations.py +0 -585
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_queue_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_storage_accounts_operations.py +0 -2400
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_table_operations.py +0 -765
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_table_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_05_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/_storage_management_client.py +0 -225
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/_storage_management_client.py +0 -230
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_encryption_scopes_operations.py +0 -568
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_file_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_file_shares_operations.py +0 -1003
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_local_users_operations.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_queue_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_storage_accounts_operations.py +0 -1913
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_table_operations.py +0 -588
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_table_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/models/__init__.py +0 -443
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/models/_models_py3.py +0 -8093
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/models/_storage_management_client_enums.py +0 -592
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_blob_containers_operations.py +0 -2370
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_blob_inventory_policies_operations.py +0 -587
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_blob_services_operations.py +0 -464
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_encryption_scopes_operations.py +0 -724
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_file_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_file_shares_operations.py +0 -1296
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_local_users_operations.py +0 -758
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_management_policies_operations.py +0 -459
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_object_replication_policies_operations.py +0 -585
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_private_endpoint_connections_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_private_link_resources_operations.py +0 -153
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_queue_operations.py +0 -814
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_queue_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_storage_accounts_operations.py +0 -2422
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_table_operations.py +0 -765
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_table_services_operations.py +0 -431
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2022_09_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/_storage_management_client.py +0 -225
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/_storage_management_client.py +0 -230
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_encryption_scopes_operations.py +0 -568
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_file_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_file_shares_operations.py +0 -1003
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_local_users_operations.py +0 -560
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_queue_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_storage_accounts_operations.py +0 -2187
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_table_operations.py +0 -588
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_table_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/models/__init__.py +0 -461
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/models/_models_py3.py +0 -8338
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/models/_storage_management_client_enums.py +0 -626
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/__init__.py +0 -57
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_blob_containers_operations.py +0 -2398
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_blob_inventory_policies_operations.py +0 -595
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_blob_services_operations.py +0 -470
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_encryption_scopes_operations.py +0 -732
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_file_services_operations.py +0 -437
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_file_shares_operations.py +0 -1310
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_local_users_operations.py +0 -770
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_management_policies_operations.py +0 -465
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_object_replication_policies_operations.py +0 -593
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_private_endpoint_connections_operations.py +0 -591
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_private_link_resources_operations.py +0 -155
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_queue_operations.py +0 -824
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_queue_services_operations.py +0 -437
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_storage_accounts_operations.py +0 -2796
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_table_operations.py +0 -775
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_table_services_operations.py +0 -437
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_01_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/__init__.py +0 -26
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/_storage_management_client.py +0 -256
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/_vendor.py +0 -16
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/_version.py +0 -9
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/__init__.py +0 -23
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/_configuration.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/_storage_management_client.py +0 -261
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/__init__.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_containers_operations.py +0 -1838
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_services_operations.py +0 -362
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_deleted_accounts_operations.py +0 -194
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_encryption_scopes_operations.py +0 -568
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_file_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_file_shares_operations.py +0 -1003
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_local_users_operations.py +0 -583
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_management_policies_operations.py +0 -349
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_network_security_perimeter_configurations_operations.py +0 -342
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_object_replication_policies_operations.py +0 -446
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_operations.py +0 -135
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_private_link_resources_operations.py +0 -117
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_queue_operations.py +0 -608
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_queue_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_skus_operations.py +0 -136
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_accounts_operations.py +0 -2187
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py +0 -170
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py +0 -164
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py +0 -802
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_table_operations.py +0 -588
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_table_services_operations.py +0 -328
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/aio/operations/_usages_operations.py +0 -139
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/models/__init__.py +0 -537
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/models/_models_py3.py +0 -9703
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/models/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/models/_storage_management_client_enums.py +0 -706
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/__init__.py +0 -65
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_blob_containers_operations.py +0 -2398
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_blob_inventory_policies_operations.py +0 -595
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_blob_services_operations.py +0 -470
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_deleted_accounts_operations.py +0 -250
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_encryption_scopes_operations.py +0 -732
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_file_services_operations.py +0 -437
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_file_shares_operations.py +0 -1310
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_local_users_operations.py +0 -808
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_management_policies_operations.py +0 -465
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_network_security_perimeter_configurations_operations.py +0 -463
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_object_replication_policies_operations.py +0 -593
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_operations.py +0 -156
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_patch.py +0 -20
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_private_endpoint_connections_operations.py +0 -591
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_private_link_resources_operations.py +0 -155
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_queue_operations.py +0 -824
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_queue_services_operations.py +0 -437
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_skus_operations.py +0 -162
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_storage_accounts_operations.py +0 -2796
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py +0 -227
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py +0 -212
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py +0 -1018
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_table_operations.py +0 -775
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_table_services_operations.py +0 -437
- azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2023_05_01/operations/_usages_operations.py +0 -169
- azure-mgmt-storage-21.2.1/azure_mgmt_storage.egg-info/PKG-INFO +0 -784
- azure-mgmt-storage-21.2.1/azure_mgmt_storage.egg-info/SOURCES.txt +0 -993
- azure-mgmt-storage-21.2.1/azure_mgmt_storage.egg-info/requires.txt +0 -3
- azure-mgmt-storage-21.2.1/setup.py +0 -82
- azure-mgmt-storage-21.2.1/tests/_aio_testcase.py +0 -33
- azure-mgmt-storage-21.2.1/tests/conftest.py +0 -50
- azure-mgmt-storage-21.2.1/tests/disable_test_cli_mgmt_storage.py +0 -734
- azure-mgmt-storage-21.2.1/tests/disable_test_cli_mgmt_storage_async.py +0 -688
- azure-mgmt-storage-21.2.1/tests/test_cli_mgmt_storage.py +0 -26
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/LICENSE +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/MANIFEST.in +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/README.md +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/__init__.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/__init__.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/__init__.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/_configuration.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/aio/__init__.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/aio/_configuration.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/py.typed +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01}/aio/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01}/aio/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01}/models/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/v2016_01_01/models/_storage_management_client_enums.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2016_01_01}/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01}/aio/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01}/aio/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01}/models/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure/mgmt/storage/v2017_10_01/models/_storage_management_enums.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2017_10_01}/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01}/aio/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01}/aio/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01}/models/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2019_06_01}/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/aio/operations → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01/models → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_06_01 → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/aio}/operations/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/aio/operations → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/models}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1/azure/mgmt/storage/v2017_10_01/models → azure_mgmt_storage-22.1.0/azure/mgmt/storage/v2024_01_01/operations}/_patch.py +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure_mgmt_storage.egg-info/dependency_links.txt +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure_mgmt_storage.egg-info/not-zip-safe +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/azure_mgmt_storage.egg-info/top_level.txt +0 -0
- {azure-mgmt-storage-21.2.1 → azure_mgmt_storage-22.1.0}/setup.cfg +0 -0
@@ -0,0 +1,734 @@
|
|
1
|
+
# Release History
|
2
|
+
|
3
|
+
## 22.1.0 (2025-02-19)
|
4
|
+
|
5
|
+
### Features Added
|
6
|
+
|
7
|
+
- Added operation FileServicesOperations.get_service_usage
|
8
|
+
- Added operation FileServicesOperations.list_service_usages
|
9
|
+
- Model FileShare has a new parameter file_share_paid_bursting
|
10
|
+
- Model FileShare has a new parameter included_burst_iops
|
11
|
+
- Model FileShare has a new parameter max_burst_credits_for_iops
|
12
|
+
- Model FileShare has a new parameter next_allowed_provisioned_bandwidth_downgrade_time
|
13
|
+
- Model FileShare has a new parameter next_allowed_provisioned_iops_downgrade_time
|
14
|
+
- Model FileShare has a new parameter next_allowed_quota_downgrade_time
|
15
|
+
- Model FileShare has a new parameter provisioned_bandwidth_mibps
|
16
|
+
- Model FileShare has a new parameter provisioned_iops
|
17
|
+
- Model FileShareItem has a new parameter file_share_paid_bursting
|
18
|
+
- Model FileShareItem has a new parameter included_burst_iops
|
19
|
+
- Model FileShareItem has a new parameter max_burst_credits_for_iops
|
20
|
+
- Model FileShareItem has a new parameter next_allowed_provisioned_bandwidth_downgrade_time
|
21
|
+
- Model FileShareItem has a new parameter next_allowed_provisioned_iops_downgrade_time
|
22
|
+
- Model FileShareItem has a new parameter next_allowed_quota_downgrade_time
|
23
|
+
- Model FileShareItem has a new parameter provisioned_bandwidth_mibps
|
24
|
+
- Model FileShareItem has a new parameter provisioned_iops
|
25
|
+
- Model ObjectReplicationPolicy has a new parameter metrics
|
26
|
+
- Enum `SkuName` added member `STANDARD_V2_LRS`
|
27
|
+
- Enum `SkuName` added member `STANDARD_V2_GRS`
|
28
|
+
- Enum `SkuName` added member `STANDARD_V2_ZRS`
|
29
|
+
- Enum `SkuName` added member `STANDARD_V2_GZRS`
|
30
|
+
- Enum `SkuName` added member `PREMIUM_V2_LRS`
|
31
|
+
- Enum `SkuName` added member `PREMIUM_V2_ZRS`
|
32
|
+
|
33
|
+
## 22.0.0 (2025-01-15)
|
34
|
+
|
35
|
+
### Breaking Changes
|
36
|
+
- Removed subfolders of some unused Api-Versions for smaller package size. If your application requires a specific and non-latest Api-Version, it's recommended to pin this package to the previous released version; If your application always only use latest Api-Version, please ignore this change.
|
37
|
+
- Removed operation UsageOperations.list_by_location
|
38
|
+
|
39
|
+
## 21.2.1 (2024-06-27)
|
40
|
+
|
41
|
+
### Bugs Fixed
|
42
|
+
|
43
|
+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentInstancesReportOperations.list from str to int
|
44
|
+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsInstancesReportOperations.list from str to int
|
45
|
+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsOperations.list from str to int
|
46
|
+
|
47
|
+
## 21.2.0 (2024-06-17)
|
48
|
+
|
49
|
+
### Features Added
|
50
|
+
|
51
|
+
- Added operation group NetworkSecurityPerimeterConfigurationsOperations
|
52
|
+
- Added operation group StorageTaskAssignmentInstancesReportOperations
|
53
|
+
- Added operation group StorageTaskAssignmentsInstancesReportOperations
|
54
|
+
- Added operation group StorageTaskAssignmentsOperations
|
55
|
+
- Model LocalUser has a new parameter allow_acl_authorization
|
56
|
+
- Model LocalUser has a new parameter extended_groups
|
57
|
+
- Model LocalUser has a new parameter group_id
|
58
|
+
- Model LocalUser has a new parameter is_nf_sv3_enabled
|
59
|
+
- Model LocalUser has a new parameter user_id
|
60
|
+
- Model LocalUsers has a new parameter next_link
|
61
|
+
- Model StorageAccount has a new parameter enable_extended_groups
|
62
|
+
- Model StorageAccountCreateParameters has a new parameter enable_extended_groups
|
63
|
+
- Model StorageAccountUpdateParameters has a new parameter enable_extended_groups
|
64
|
+
- Operation LocalUsersOperations.list has a new optional parameter filter
|
65
|
+
- Operation LocalUsersOperations.list has a new optional parameter include
|
66
|
+
- Operation LocalUsersOperations.list has a new optional parameter maxpagesize
|
67
|
+
|
68
|
+
## 21.1.0 (2023-08-18)
|
69
|
+
|
70
|
+
### Features Added
|
71
|
+
|
72
|
+
- Added operation StorageAccountsOperations.begin_customer_initiated_migration
|
73
|
+
- Added operation StorageAccountsOperations.get_customer_initiated_migration
|
74
|
+
- Model BlobInventoryPolicyFilter has a new parameter creation_time
|
75
|
+
- Model GeoReplicationStats has a new parameter can_planned_failover
|
76
|
+
- Model GeoReplicationStats has a new parameter post_failover_redundancy
|
77
|
+
- Model GeoReplicationStats has a new parameter post_planned_failover_redundancy
|
78
|
+
- Model StorageAccount has a new parameter account_migration_in_progress
|
79
|
+
- Model StorageAccount has a new parameter is_sku_conversion_blocked
|
80
|
+
|
81
|
+
## 21.1.0b1 (2023-02-20)
|
82
|
+
|
83
|
+
### Other Changes
|
84
|
+
|
85
|
+
- Added generated samples in github repo
|
86
|
+
- Drop support for python<3.7.0
|
87
|
+
|
88
|
+
## 21.0.0 (2022-11-15)
|
89
|
+
|
90
|
+
### Features Added
|
91
|
+
|
92
|
+
- Model ManagementPolicyBaseBlob has a new parameter tier_to_cold
|
93
|
+
- Model ManagementPolicyBaseBlob has a new parameter tier_to_hot
|
94
|
+
- Model ManagementPolicySnapShot has a new parameter tier_to_cold
|
95
|
+
- Model ManagementPolicySnapShot has a new parameter tier_to_hot
|
96
|
+
- Model ManagementPolicyVersion has a new parameter tier_to_cold
|
97
|
+
- Model ManagementPolicyVersion has a new parameter tier_to_hot
|
98
|
+
|
99
|
+
### Breaking Changes
|
100
|
+
|
101
|
+
- Operation EncryptionScopesOperations.list has a new parameter filter
|
102
|
+
- Operation EncryptionScopesOperations.list has a new parameter include
|
103
|
+
- Operation EncryptionScopesOperations.list has a new parameter maxpagesize
|
104
|
+
- Operation StorageAccountsOperations.begin_failover has a new parameter failover_type
|
105
|
+
|
106
|
+
## 20.1.0 (2022-08-09)
|
107
|
+
|
108
|
+
**Features**
|
109
|
+
|
110
|
+
- Added model AllowedMethods
|
111
|
+
- Added model LeaseContainerRequestEnum
|
112
|
+
|
113
|
+
## 20.0.0 (2022-04-06)
|
114
|
+
|
115
|
+
**Features**
|
116
|
+
|
117
|
+
- Model BlobInventoryPolicyFilter has a new parameter exclude_prefix
|
118
|
+
- Model BlobInventoryPolicyFilter has a new parameter include_deleted
|
119
|
+
- Model BlobInventoryPolicySchema has a new parameter destination
|
120
|
+
- Model DateAfterCreation has a new parameter days_after_last_tier_change_greater_than
|
121
|
+
- Model DateAfterModification has a new parameter days_after_creation_greater_than
|
122
|
+
- Model DateAfterModification has a new parameter days_after_last_tier_change_greater_than
|
123
|
+
- Model DeleteRetentionPolicy has a new parameter allow_permanent_delete
|
124
|
+
- Model KeyVaultProperties has a new parameter current_versioned_key_expiration_timestamp
|
125
|
+
- Model StorageAccount has a new parameter dns_endpoint_type
|
126
|
+
- Model StorageAccount has a new parameter storage_account_sku_conversion_status
|
127
|
+
- Model StorageAccountCreateParameters has a new parameter dns_endpoint_type
|
128
|
+
- Model StorageAccountUpdateParameters has a new parameter dns_endpoint_type
|
129
|
+
- Model Table has a new parameter signed_identifiers
|
130
|
+
|
131
|
+
**Breaking changes**
|
132
|
+
|
133
|
+
- Operation TableOperations.create has a new signature
|
134
|
+
- Operation TableOperations.update has a new signature
|
135
|
+
|
136
|
+
## 19.1.0 (2022-02-15)
|
137
|
+
|
138
|
+
**Features**
|
139
|
+
|
140
|
+
- Added operation group LocalUsersOperations
|
141
|
+
- Model ActiveDirectoryProperties has a new parameter account_type
|
142
|
+
- Model ActiveDirectoryProperties has a new parameter sam_account_name
|
143
|
+
- Model EncryptionIdentity has a new parameter encryption_federated_identity_client_id
|
144
|
+
- Model StorageAccount has a new parameter allowed_copy_scope
|
145
|
+
- Model StorageAccount has a new parameter is_local_user_enabled
|
146
|
+
- Model StorageAccount has a new parameter is_sftp_enabled
|
147
|
+
- Model StorageAccountCreateParameters has a new parameter allowed_copy_scope
|
148
|
+
- Model StorageAccountCreateParameters has a new parameter is_local_user_enabled
|
149
|
+
- Model StorageAccountCreateParameters has a new parameter is_sftp_enabled
|
150
|
+
- Model StorageAccountUpdateParameters has a new parameter allowed_copy_scope
|
151
|
+
- Model StorageAccountUpdateParameters has a new parameter is_local_user_enabled
|
152
|
+
- Model StorageAccountUpdateParameters has a new parameter is_sftp_enabled
|
153
|
+
|
154
|
+
## 19.0.0 (2021-09-14)
|
155
|
+
|
156
|
+
**Features**
|
157
|
+
|
158
|
+
- Model BlobContainer has a new parameter enable_nfs_v3_root_squash
|
159
|
+
- Model BlobContainer has a new parameter enable_nfs_v3_all_squash
|
160
|
+
- Model UpdateHistoryProperty has a new parameter allow_protected_append_writes
|
161
|
+
- Model UpdateHistoryProperty has a new parameter allow_protected_append_writes_all
|
162
|
+
- Model StorageAccountUpdateParameters has a new parameter default_to_o_auth_authentication
|
163
|
+
- Model StorageAccountUpdateParameters has a new parameter public_network_access
|
164
|
+
- Model StorageAccountUpdateParameters has a new parameter immutable_storage_with_versioning
|
165
|
+
- Model ImmutabilityPolicy has a new parameter allow_protected_append_writes_all
|
166
|
+
- Model StorageAccountCreateParameters has a new parameter default_to_o_auth_authentication
|
167
|
+
- Model StorageAccountCreateParameters has a new parameter public_network_access
|
168
|
+
- Model StorageAccountCreateParameters has a new parameter immutable_storage_with_versioning
|
169
|
+
- Model ListContainerItem has a new parameter enable_nfs_v3_root_squash
|
170
|
+
- Model ListContainerItem has a new parameter enable_nfs_v3_all_squash
|
171
|
+
- Model LegalHoldProperties has a new parameter protected_append_writes_history
|
172
|
+
- Model ImmutabilityPolicyProperties has a new parameter allow_protected_append_writes_all
|
173
|
+
- Model StorageAccount has a new parameter default_to_o_auth_authentication
|
174
|
+
- Model StorageAccount has a new parameter public_network_access
|
175
|
+
- Model StorageAccount has a new parameter immutable_storage_with_versioning
|
176
|
+
- Model LegalHold has a new parameter allow_protected_append_writes_all
|
177
|
+
- Added operation StorageAccountsOperations.begin_abort_hierarchical_namespace_migration
|
178
|
+
- Added operation StorageAccountsOperations.begin_hierarchical_namespace_migration
|
179
|
+
|
180
|
+
**Breaking changes**
|
181
|
+
|
182
|
+
- Model AccessPolicy has a new signature
|
183
|
+
|
184
|
+
## 18.0.0 (2021-05-13)
|
185
|
+
|
186
|
+
**Features**
|
187
|
+
|
188
|
+
- Model StorageAccountUpdateParameters has a new parameter allow_cross_tenant_replication
|
189
|
+
- Model BlobContainer has a new parameter immutable_storage_with_versioning
|
190
|
+
- Model FileShareItem has a new parameter lease_state
|
191
|
+
- Model FileShareItem has a new parameter lease_duration
|
192
|
+
- Model FileShareItem has a new parameter lease_status
|
193
|
+
- Model FileShareItem has a new parameter signed_identifiers
|
194
|
+
- Model FileShare has a new parameter lease_state
|
195
|
+
- Model FileShare has a new parameter lease_duration
|
196
|
+
- Model FileShare has a new parameter lease_status
|
197
|
+
- Model FileShare has a new parameter signed_identifiers
|
198
|
+
- Model StorageAccountCreateParameters has a new parameter allow_cross_tenant_replication
|
199
|
+
- Model AzureFilesIdentityBasedAuthentication has a new parameter default_share_permission
|
200
|
+
- Model StorageAccount has a new parameter allow_cross_tenant_replication
|
201
|
+
- Model ListContainerItem has a new parameter immutable_storage_with_versioning
|
202
|
+
- Added operation BlobContainersOperations.begin_object_level_worm
|
203
|
+
- Added operation FileSharesOperations.lease
|
204
|
+
|
205
|
+
**Breaking changes**
|
206
|
+
|
207
|
+
- Operation FileSharesOperations.delete has a new signature
|
208
|
+
- Model BlobInventoryPolicySchema no longer has parameter destination
|
209
|
+
- Model BlobInventoryPolicyRule has a new required parameter destination
|
210
|
+
- Model BlobInventoryPolicyDefinition has a new signature
|
211
|
+
|
212
|
+
## 17.1.0 (2021-04-13)
|
213
|
+
|
214
|
+
**Features**
|
215
|
+
|
216
|
+
- Model StorageAccountKey has a new parameter creation_time
|
217
|
+
- Model StorageAccountUpdateParameters has a new parameter sas_policy
|
218
|
+
- Model StorageAccountUpdateParameters has a new parameter key_policy
|
219
|
+
- Model StorageAccountCreateParameters has a new parameter sas_policy
|
220
|
+
- Model StorageAccountCreateParameters has a new parameter key_policy
|
221
|
+
- Model StorageAccount has a new parameter sas_policy
|
222
|
+
- Model StorageAccount has a new parameter key_policy
|
223
|
+
- Model StorageAccount has a new parameter key_creation_time
|
224
|
+
|
225
|
+
## 17.0.0 (2021-02-20)
|
226
|
+
|
227
|
+
**Features**
|
228
|
+
|
229
|
+
- Model Encryption has a new parameter encryption_identity
|
230
|
+
- Model Identity has a new parameter user_assigned_identities
|
231
|
+
- Model ManagementPolicyBaseBlob has a new parameter enable_auto_tier_to_hot_from_cool
|
232
|
+
- Model EncryptionScope has a new parameter require_infrastructure_encryption
|
233
|
+
- Model StorageAccount has a new parameter extended_location
|
234
|
+
- Model StorageAccount has a new parameter allow_shared_key_access
|
235
|
+
- Model StorageAccount has a new parameter enable_nfs_v3
|
236
|
+
- Model EncryptionScopeKeyVaultProperties has a new parameter current_versioned_key_identifier
|
237
|
+
- Model EncryptionScopeKeyVaultProperties has a new parameter last_key_rotation_timestamp
|
238
|
+
- Model DateAfterModification has a new parameter days_after_last_access_time_greater_than
|
239
|
+
- Model StorageAccountUpdateParameters has a new parameter allow_shared_key_access
|
240
|
+
- Model BlobServiceProperties has a new parameter last_access_time_tracking_policy
|
241
|
+
- Model ChangeFeed has a new parameter retention_in_days
|
242
|
+
- Model FileShare has a new parameter snapshot_time
|
243
|
+
- Model ManagementPolicyAction has a new parameter version
|
244
|
+
- Model StorageAccountCreateParameters has a new parameter extended_location
|
245
|
+
- Model StorageAccountCreateParameters has a new parameter allow_shared_key_access
|
246
|
+
- Model StorageAccountCreateParameters has a new parameter enable_nfs_v3
|
247
|
+
- Model FileShareItem has a new parameter snapshot_time
|
248
|
+
- Model FileServiceProperties has a new parameter protocol_settings
|
249
|
+
- Model ManagementPolicySnapShot has a new parameter tier_to_archive
|
250
|
+
- Model ManagementPolicySnapShot has a new parameter tier_to_cool
|
251
|
+
- Model NetworkRuleSet has a new parameter resource_access_rules
|
252
|
+
- Added operation group BlobInventoryPoliciesOperations
|
253
|
+
- Added operation group DeletedAccountsOperations
|
254
|
+
|
255
|
+
**Breaking changes**
|
256
|
+
|
257
|
+
- Operation FileSharesOperations.create has a new signature
|
258
|
+
- Operation FileSharesOperations.delete has a new signature
|
259
|
+
- Operation FileSharesOperations.get has a new signature
|
260
|
+
- Model ErrorResponse has a new signature
|
261
|
+
|
262
|
+
## 16.0.0 (2020-09-15)
|
263
|
+
|
264
|
+
**Features**
|
265
|
+
|
266
|
+
- Model RestorePolicyProperties has a new parameter min_restore_time
|
267
|
+
|
268
|
+
**Breaking changes**
|
269
|
+
|
270
|
+
- Operation ManagementPoliciesOperations.create_or_update has a new signature
|
271
|
+
- Operation ManagementPoliciesOperations.delete has a new signature
|
272
|
+
- Operation ManagementPoliciesOperations.get has a new signature
|
273
|
+
|
274
|
+
## 16.0.0b2 (2020-06-29)
|
275
|
+
|
276
|
+
This is beta preview version.
|
277
|
+
For detailed changelog please refer to equivalent stable version 11.1.0 (https://pypi.org/project/azure-mgmt-storage/11.1.0/)
|
278
|
+
|
279
|
+
## 16.0.0b1 (2020-06-17)
|
280
|
+
|
281
|
+
This is beta preview version.
|
282
|
+
|
283
|
+
This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).
|
284
|
+
|
285
|
+
**General breaking changes**
|
286
|
+
|
287
|
+
- Credential system has been completly revamped:
|
288
|
+
|
289
|
+
- `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/
|
290
|
+
- `credentials` parameter has been renamed `credential`
|
291
|
+
|
292
|
+
- 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
|
293
|
+
supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)
|
294
|
+
- You can't import a `version` module anymore, use `__version__` instead
|
295
|
+
- Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.
|
296
|
+
- Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).
|
297
|
+
- Most of the operation kwarg have changed. Some of the most noticeable:
|
298
|
+
|
299
|
+
- `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user
|
300
|
+
- For a complete set of
|
301
|
+
supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)
|
302
|
+
|
303
|
+
**General new features**
|
304
|
+
|
305
|
+
- Type annotations support using `typing`. SDKs are mypy ready.
|
306
|
+
- This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.
|
307
|
+
- This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry) for an overview.
|
308
|
+
|
309
|
+
## 10.0.0 (2020-05-07)
|
310
|
+
|
311
|
+
**Features**
|
312
|
+
|
313
|
+
- Model ManagementPolicyFilter has a new parameter blob_index_match
|
314
|
+
- Model FileShareItem has a new parameter access_tier_status
|
315
|
+
- Model FileShareItem has a new parameter share_usage_bytes
|
316
|
+
- Model FileShareItem has a new parameter deleted
|
317
|
+
- Model FileShareItem has a new parameter deleted_time
|
318
|
+
- Model FileShareItem has a new parameter access_tier
|
319
|
+
- Model FileShareItem has a new parameter version
|
320
|
+
- Model FileShareItem has a new parameter root_squash
|
321
|
+
- Model FileShareItem has a new parameter enabled_protocols
|
322
|
+
- Model FileShareItem has a new parameter access_tier_change_time
|
323
|
+
- Model FileShareItem has a new parameter remaining_retention_days
|
324
|
+
- Model RestorePolicyProperties has a new parameter last_enabled_time
|
325
|
+
- Model FileShare has a new parameter access_tier_status
|
326
|
+
- Model FileShare has a new parameter share_usage_bytes
|
327
|
+
- Model FileShare has a new parameter deleted
|
328
|
+
- Model FileShare has a new parameter deleted_time
|
329
|
+
- Model FileShare has a new parameter access_tier
|
330
|
+
- Model FileShare has a new parameter version
|
331
|
+
- Model FileShare has a new parameter root_squash
|
332
|
+
- Model FileShare has a new parameter enabled_protocols
|
333
|
+
- Model FileShare has a new parameter access_tier_change_time
|
334
|
+
- Model FileShare has a new parameter remaining_retention_days
|
335
|
+
- Added operation FileSharesOperations.restore
|
336
|
+
- Added operation PrivateEndpointConnectionsOperations.list
|
337
|
+
- Added operation group ObjectReplicationPoliciesOperations
|
338
|
+
|
339
|
+
**Breaking changes**
|
340
|
+
|
341
|
+
- Operation FileSharesOperations.update has a new signature
|
342
|
+
- Operation FileSharesOperations.create has a new signature
|
343
|
+
- Operation FileSharesOperations.get has a new signature
|
344
|
+
- Operation FileSharesOperations.list has a new signature
|
345
|
+
- Operation FileSharesOperations.update has a new signature
|
346
|
+
- Operation FileSharesOperations.create has a new signature
|
347
|
+
|
348
|
+
## 9.0.0 (2020-03-27)
|
349
|
+
|
350
|
+
**Features**
|
351
|
+
|
352
|
+
- Model BlobContainer has a new parameter default_encryption_scope
|
353
|
+
- Model BlobContainer has a new parameter deny_encryption_scope_override
|
354
|
+
- Model ListContainerItem has a new parameter default_encryption_scope
|
355
|
+
- Model ListContainerItem has a new parameter deny_encryption_scope_override
|
356
|
+
- Model KeyVaultProperties has a new parameter last_key_rotation_timestamp
|
357
|
+
- Model KeyVaultProperties has a new parameter current_versioned_key_identifier
|
358
|
+
|
359
|
+
**Breaking changes**
|
360
|
+
|
361
|
+
- Operation BlobContainersOperations.update has a new signature
|
362
|
+
- Operation BlobContainersOperations.create has a new signature
|
363
|
+
- Operation BlobContainersOperations.update has a new signature
|
364
|
+
- Operation BlobContainersOperations.create has a new signature
|
365
|
+
|
366
|
+
## 8.0.0 (2020-02-27)
|
367
|
+
|
368
|
+
**Features**
|
369
|
+
|
370
|
+
- Model ImmutabilityPolicyProperties has a new parameter allow_protected_append_writes
|
371
|
+
- Model BlobServiceProperties has a new parameter container_delete_retention_policy
|
372
|
+
- Model BlobServiceProperties has a new parameter is_versioning_enabled
|
373
|
+
- Model ImmutabilityPolicy has a new parameter allow_protected_append_writes
|
374
|
+
- Added operation group EncryptionScopesOperations
|
375
|
+
|
376
|
+
**Breaking changes**
|
377
|
+
|
378
|
+
- Operation BlobContainersOperations.create_or_update_immutability_policy has a new signature
|
379
|
+
- Operation BlobContainersOperations.extend_immutability_policy has a new signature
|
380
|
+
- Operation BlobContainersOperations.create_or_update_immutability_policy has a new signature
|
381
|
+
|
382
|
+
## 7.2.0 (2020-02-10)
|
383
|
+
|
384
|
+
**Features**
|
385
|
+
|
386
|
+
- Model BlobServiceProperties has a new parameter restore_policy
|
387
|
+
- Model StorageAccount has a new parameter blob_restore_status
|
388
|
+
- Added operation StorageAccountsOperations.restore_blob_ranges
|
389
|
+
|
390
|
+
## 7.1.0 (2020-01-09)
|
391
|
+
|
392
|
+
**Features**
|
393
|
+
|
394
|
+
- Model EncryptionService has a new parameter key_type
|
395
|
+
|
396
|
+
## 7.0.0 (2019-12-04)
|
397
|
+
|
398
|
+
**Features**
|
399
|
+
|
400
|
+
- Model StorageAccountCreateParameters has a new parameter
|
401
|
+
routing_preference
|
402
|
+
- Model BlobServiceProperties has a new parameter sku
|
403
|
+
- Model FileServiceProperties has a new parameter
|
404
|
+
share_delete_retention_policy
|
405
|
+
- Model FileServiceProperties has a new parameter sku
|
406
|
+
- Model StorageAccount has a new parameter routing_preference
|
407
|
+
- Model StorageAccountUpdateParameters has a new parameter
|
408
|
+
routing_preference
|
409
|
+
- Model Endpoints has a new parameter internet_endpoints
|
410
|
+
- Model Endpoints has a new parameter microsoft_endpoints
|
411
|
+
|
412
|
+
**Breaking changes**
|
413
|
+
|
414
|
+
- Operation FileServicesOperations.set_service_properties has a new
|
415
|
+
signature
|
416
|
+
- Model Sku has a new signature
|
417
|
+
|
418
|
+
## 6.0.0 (2019-10-25)
|
419
|
+
|
420
|
+
**Features**
|
421
|
+
|
422
|
+
- Model StorageAccount has a new parameter
|
423
|
+
private_endpoint_connections
|
424
|
+
- Added operation group PrivateEndpointConnectionsOperations
|
425
|
+
- Added operation group PrivateLinkResourcesOperations
|
426
|
+
|
427
|
+
**Breaking changes**
|
428
|
+
|
429
|
+
- Operation FileSharesOperations.list has a new signature
|
430
|
+
- Operation BlobContainersOperations.list has a new signature
|
431
|
+
|
432
|
+
## 5.0.0 (2019-10-21)
|
433
|
+
|
434
|
+
**Features**
|
435
|
+
|
436
|
+
- Model AzureFilesIdentityBasedAuthentication has a new parameter
|
437
|
+
active_directory_properties
|
438
|
+
|
439
|
+
**Breaking changes**
|
440
|
+
|
441
|
+
- Operation StorageAccountsOperations.list_keys has a new signature
|
442
|
+
|
443
|
+
## 4.2.0 (2019-10-07)
|
444
|
+
|
445
|
+
**Features**
|
446
|
+
|
447
|
+
- Model StorageAccountCreateParameters has a new parameter
|
448
|
+
large_file_shares_state
|
449
|
+
- Model StorageAccountUpdateParameters has a new parameter
|
450
|
+
large_file_shares_state
|
451
|
+
- Model StorageAccount has a new parameter large_file_shares_state
|
452
|
+
|
453
|
+
## 4.1.0 (2019-09-27)
|
454
|
+
|
455
|
+
**Features**
|
456
|
+
|
457
|
+
- Model BlobServiceProperties has a new parameter change_feed
|
458
|
+
- Added operation BlobServicesOperations.list
|
459
|
+
- Added operation group FileServicesOperations
|
460
|
+
- Added operation group FileSharesOperations
|
461
|
+
|
462
|
+
## 4.0.0 (2019-06-12)
|
463
|
+
|
464
|
+
**Features**
|
465
|
+
|
466
|
+
- Model StorageAccount has a new parameter
|
467
|
+
azure_files_identity_based_authentication
|
468
|
+
- Model StorageAccountCreateParameters has a new parameter
|
469
|
+
azure_files_identity_based_authentication
|
470
|
+
- Model StorageAccountUpdateParameters has a new parameter
|
471
|
+
azure_files_identity_based_authentication
|
472
|
+
|
473
|
+
**Breaking changes**
|
474
|
+
|
475
|
+
- Model StorageAccount no longer has parameter
|
476
|
+
enable_azure_files_aad_integration
|
477
|
+
- Model StorageAccountCreateParameters no longer has parameter
|
478
|
+
enable_azure_files_aad_integration
|
479
|
+
- Model StorageAccountUpdateParameters no longer has parameter
|
480
|
+
enable_azure_files_aad_integration
|
481
|
+
|
482
|
+
**Breaking changes**
|
483
|
+
|
484
|
+
**General Breaking changes**
|
485
|
+
|
486
|
+
This version uses a next-generation code generator that *might*
|
487
|
+
introduce breaking changes while using imports. In summary, some modules
|
488
|
+
were incorrectly visible/importable and have been renamed. This fixed
|
489
|
+
several issues caused by usage of classes that were not supposed to be
|
490
|
+
used in the first place.
|
491
|
+
|
492
|
+
- StorageManagementClient cannot be imported from
|
493
|
+
`azure.mgmt.storage.storage_management_client` anymore (import
|
494
|
+
from `azure.mgmt.storage` works like before)
|
495
|
+
- StorageManagementClientConfiguration import has been moved from
|
496
|
+
`azure.mgmt.storage.network_management_client` to
|
497
|
+
`azure.mgmt.storage`
|
498
|
+
- StorageManagementClient cannot be imported from
|
499
|
+
`azure.mgmt.storage.v20xx_yy_zz.network_management_client`
|
500
|
+
anymore (import from `azure.mgmt.storage.v20xx_yy_zz` works like
|
501
|
+
before)
|
502
|
+
- StorageManagementClientConfiguration import has been moved from
|
503
|
+
`azure.mgmt.storage.v20xx_yy_zz.network_management_client` to
|
504
|
+
`azure.mgmt.storage.v20xx_yy_zz`
|
505
|
+
- A model `MyClass` from a "models" sub-module cannot be imported
|
506
|
+
anymore using `azure.mgmt.storage.v20xx_yy_zz.models.my_class`
|
507
|
+
(import from `azure.mgmt.storage.v20xx_yy_zz.models` works like
|
508
|
+
before)
|
509
|
+
- An operation class `MyClassOperations` from an `operations`
|
510
|
+
sub-module cannot be imported anymore using
|
511
|
+
`azure.mgmt.storage.v20xx_yy_zz.operations.my_class_operations`
|
512
|
+
(import from `azure.mgmt.storage.v20xx_yy_zz.operations` works
|
513
|
+
like before)
|
514
|
+
|
515
|
+
Last but not least, HTTP connection pooling is now enabled by default.
|
516
|
+
You should always use a client as a context manager, or call close(), or
|
517
|
+
use no more than one storage mgmt client per process.
|
518
|
+
|
519
|
+
## 3.3.0 (2019-04-22)
|
520
|
+
|
521
|
+
**Features**
|
522
|
+
|
523
|
+
- Model BlobServiceProperties has a new parameter
|
524
|
+
automatic_snapshot_policy_enabled
|
525
|
+
- Added operation
|
526
|
+
StorageAccountsOperations.revoke_user_delegation_keys
|
527
|
+
- Added operation BlobContainerOperations.lease
|
528
|
+
|
529
|
+
## 3.2.0 (2019-04-10)
|
530
|
+
|
531
|
+
**Features**
|
532
|
+
|
533
|
+
- Added operation BlobContainersOperations.lease for API versions
|
534
|
+
2018_02_01 and later
|
535
|
+
|
536
|
+
## 3.1.1 (2019-01-02)
|
537
|
+
|
538
|
+
**Bugfixes**
|
539
|
+
|
540
|
+
- Fix #4013 - "use_sub_domain" should be "use_sub_domain_name"
|
541
|
+
|
542
|
+
## 3.1.0 (2018-11-15)
|
543
|
+
|
544
|
+
**Features**
|
545
|
+
|
546
|
+
- Model StorageAccount has a new parameter geo_replication_stats
|
547
|
+
- Model StorageAccount has a new parameter failover_in_progress
|
548
|
+
- Added operation StorageAccountsOperations.failover
|
549
|
+
- Added operation group BlobServicesOperations
|
550
|
+
- Operation StorageAccountsOperations.get_properties now support
|
551
|
+
expand parameter
|
552
|
+
|
553
|
+
## 3.0.0 (2018-09-27)
|
554
|
+
|
555
|
+
**Features**
|
556
|
+
|
557
|
+
- Model StorageAccount has a new parameter
|
558
|
+
enable_azure_files_aad_integration
|
559
|
+
- Model StorageAccountCreateParameters has a new parameter
|
560
|
+
enable_azure_files_aad_integration
|
561
|
+
- Model StorageAccountUpdateParameters has a new parameter
|
562
|
+
enable_azure_files_aad_integration
|
563
|
+
- Added operation group ManagementPoliciesOperations. This is
|
564
|
+
considered preview and breaking changes might happen.
|
565
|
+
|
566
|
+
**Breaking changes**
|
567
|
+
|
568
|
+
- "usage" has been renamed "usages", and the "list" operation has been
|
569
|
+
replaced by "list_by_location". Ability to make usage requests
|
570
|
+
locally is not available anymore.
|
571
|
+
|
572
|
+
**Note**
|
573
|
+
|
574
|
+
- azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based
|
575
|
+
namespace package)
|
576
|
+
|
577
|
+
## 2.0.0 (2018-08-01)
|
578
|
+
|
579
|
+
**Bugfixes**
|
580
|
+
|
581
|
+
- Set the signed resource as optional instead of required
|
582
|
+
|
583
|
+
## 2.0.0rc4 (2018-06-26)
|
584
|
+
|
585
|
+
**Features (2018-02-01/2018-03-01-preview)**
|
586
|
+
|
587
|
+
Support HDFS feature and web endpoint in Account properties
|
588
|
+
|
589
|
+
- Model StorageAccountCreateParameters has a new parameter
|
590
|
+
is_hns_enabled
|
591
|
+
- Model Endpoints has a new parameter web
|
592
|
+
- Model Endpoints has a new parameter dfs
|
593
|
+
- Model StorageAccount has a new parameter is_hns_enabled
|
594
|
+
|
595
|
+
## 2.0.0rc3 (2018-05-30)
|
596
|
+
|
597
|
+
**Features**
|
598
|
+
|
599
|
+
- Add preview version of management policy (API 2018-03-01-preview
|
600
|
+
only). This is considered preview and breaking changes might happen
|
601
|
+
if you opt in for that Api Version.
|
602
|
+
|
603
|
+
**Bugfixes**
|
604
|
+
|
605
|
+
- Correct azure-common dependency
|
606
|
+
|
607
|
+
## 2.0.0rc2 (2018-05-16)
|
608
|
+
|
609
|
+
**Bugfixes**
|
610
|
+
|
611
|
+
- Fix default "models" import to 2018-02-01
|
612
|
+
|
613
|
+
## 2.0.0rc1 (2018-05-11)
|
614
|
+
|
615
|
+
**Features**
|
616
|
+
|
617
|
+
- Add blob containers operations, immutability policy
|
618
|
+
- Add usage.list_by_location
|
619
|
+
- Client now supports Azure profiles.
|
620
|
+
- Client class can be used as a context manager to keep the underlying
|
621
|
+
HTTP session open for performance
|
622
|
+
|
623
|
+
**General Breaking changes**
|
624
|
+
|
625
|
+
This version uses a next-generation code generator that *might*
|
626
|
+
introduce breaking changes.
|
627
|
+
|
628
|
+
- Model signatures now use only keyword-argument syntax. All
|
629
|
+
positional arguments must be re-written as keyword-arguments. To
|
630
|
+
keep auto-completion in most cases, models are now generated for
|
631
|
+
Python 2 and Python 3. Python 3 uses the "*" syntax for
|
632
|
+
keyword-only arguments.
|
633
|
+
- Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to
|
634
|
+
improve the behavior when unrecognized enum values are encountered.
|
635
|
+
While this is not a breaking change, the distinctions are important,
|
636
|
+
and are documented here:
|
637
|
+
<https://docs.python.org/3/library/enum.html#others> At a glance:
|
638
|
+
- "is" should not be used at all.
|
639
|
+
- "format" will return the string value, where "%s" string
|
640
|
+
formatting will return `NameOfEnum.stringvalue`. Format syntax
|
641
|
+
should be prefered.
|
642
|
+
- New Long Running Operation:
|
643
|
+
- Return type changes from
|
644
|
+
`msrestazure.azure_operation.AzureOperationPoller` to
|
645
|
+
`msrest.polling.LROPoller`. External API is the same.
|
646
|
+
- Return type is now **always** a `msrest.polling.LROPoller`,
|
647
|
+
regardless of the optional parameters used.
|
648
|
+
- The behavior has changed when using `raw=True`. Instead of
|
649
|
+
returning the initial call result as `ClientRawResponse`,
|
650
|
+
without polling, now this returns an LROPoller. After polling,
|
651
|
+
the final resource will be returned as a `ClientRawResponse`.
|
652
|
+
- New `polling` parameter. The default behavior is
|
653
|
+
`Polling=True` which will poll using ARM algorithm. When
|
654
|
+
`Polling=False`, the response of the initial call will be
|
655
|
+
returned without polling.
|
656
|
+
- `polling` parameter accepts instances of subclasses of
|
657
|
+
`msrest.polling.PollingMethod`.
|
658
|
+
- `add_done_callback` will no longer raise if called after
|
659
|
+
polling is finished, but will instead execute the callback right
|
660
|
+
away.
|
661
|
+
|
662
|
+
## 1.5.0 (2017-12-12)
|
663
|
+
|
664
|
+
**Features**
|
665
|
+
|
666
|
+
- Add StorageV2 as valid kind
|
667
|
+
- Add official support for API version 2017-10-01
|
668
|
+
|
669
|
+
## 1.4.0 (2017-09-26)
|
670
|
+
|
671
|
+
**Bug fixes**
|
672
|
+
|
673
|
+
- Add skus operations group to the generic client
|
674
|
+
|
675
|
+
**Features**
|
676
|
+
|
677
|
+
- Add official support for API version 2016-01-01
|
678
|
+
|
679
|
+
## 1.3.0 (2017-09-08)
|
680
|
+
|
681
|
+
**Features**
|
682
|
+
|
683
|
+
- Adds list_skus operation (2017-06-01)
|
684
|
+
|
685
|
+
**Breaking changes**
|
686
|
+
|
687
|
+
- Rename the preview attribute "network_acls" to "network_rule_set"
|
688
|
+
|
689
|
+
## 1.2.1 (2017-08-14)
|
690
|
+
|
691
|
+
**Bugfixes**
|
692
|
+
|
693
|
+
- Remove "tests" packaged by mistake (#1365)
|
694
|
+
|
695
|
+
## 1.2.0 (2017-07-19)
|
696
|
+
|
697
|
+
**Features**
|
698
|
+
|
699
|
+
- Api version 2017-06-01 is now the default
|
700
|
+
- This API version adds Network ACLs objects (2017-06-01 as preview)
|
701
|
+
|
702
|
+
## 1.1.0 (2017-06-28)
|
703
|
+
|
704
|
+
- Added support for https traffic only (2016-12-01)
|
705
|
+
|
706
|
+
## 1.0.0 (2017-05-15)
|
707
|
+
|
708
|
+
- Tag 1.0.0rc1 as stable (same content)
|
709
|
+
|
710
|
+
## 1.0.0rc1 (2017-04-11)
|
711
|
+
|
712
|
+
**Features**
|
713
|
+
|
714
|
+
To help customers with sovereign clouds (not general Azure), this
|
715
|
+
version has official multi ApiVersion support for 2015-06-15 and
|
716
|
+
2016-12-01
|
717
|
+
|
718
|
+
## 0.31.0 (2017-01-19)
|
719
|
+
|
720
|
+
- New `list_account_sas` operation
|
721
|
+
- New `list_service_sas` operation
|
722
|
+
- Name syntax are now checked before RestAPI call, not the server
|
723
|
+
(exception changed)
|
724
|
+
|
725
|
+
Based on API version 2016-12-01.
|
726
|
+
|
727
|
+
## 0.30.0 (2016-11-14)
|
728
|
+
|
729
|
+
- Initial release. Based on API version 2016-01-01 Note that this is
|
730
|
+
the same content as 0.30.0rc6, committed as 0.30.0.
|
731
|
+
|
732
|
+
## 0.20.0 (2015-08-31)
|
733
|
+
|
734
|
+
- Initial preview release. Based on API version 2015-05-01-preview.
|