azure-mgmt-storage 21.2.0__tar.gz → 22.0.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.
Files changed (1165) hide show
  1. azure_mgmt_storage-22.0.0/CHANGELOG.md +704 -0
  2. azure_mgmt_storage-22.0.0/PKG-INFO +794 -0
  3. azure_mgmt_storage-22.0.0/_meta.json +33 -0
  4. azure_mgmt_storage-22.0.0/azure/mgmt/storage/_serialization.py +2117 -0
  5. azure_mgmt_storage-22.0.0/azure/mgmt/storage/_storage_management_client.py +557 -0
  6. azure_mgmt_storage-22.0.0/azure/mgmt/storage/_version.py +8 -0
  7. azure_mgmt_storage-22.0.0/azure/mgmt/storage/aio/_storage_management_client.py +557 -0
  8. azure_mgmt_storage-22.0.0/azure/mgmt/storage/models.py +8 -0
  9. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/__init__.py +32 -0
  10. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/_configuration.py +65 -0
  11. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/_storage_management_client.py +117 -0
  12. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/_version.py +9 -0
  13. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/aio/__init__.py +29 -0
  14. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/aio/_configuration.py +65 -0
  15. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/aio/_storage_management_client.py +120 -0
  16. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/aio/operations/__init__.py +27 -0
  17. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/aio/operations/_storage_accounts_operations.py +1023 -0
  18. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/aio/operations/_usage_operations.py +130 -0
  19. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/models/__init__.py +88 -0
  20. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/models/_models_py3.py +829 -0
  21. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/operations/__init__.py +27 -0
  22. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/operations/_storage_accounts_operations.py +1278 -0
  23. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/operations/_usage_operations.py +157 -0
  24. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01/py.typed +1 -0
  25. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/__init__.py +32 -0
  26. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/_configuration.py +65 -0
  27. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/_storage_management.py +121 -0
  28. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/_version.py +9 -0
  29. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/__init__.py +29 -0
  30. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/_configuration.py +65 -0
  31. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/_storage_management.py +124 -0
  32. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/operations/__init__.py +31 -0
  33. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/operations/_operations.py +130 -0
  34. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/operations/_skus_operations.py +130 -0
  35. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/operations/_storage_accounts_operations.py +1299 -0
  36. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/aio/operations/_usage_operations.py +130 -0
  37. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/models/__init__.py +140 -0
  38. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/models/_models_py3.py +1851 -0
  39. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/operations/__init__.py +31 -0
  40. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/operations/_operations.py +151 -0
  41. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/operations/_skus_operations.py +157 -0
  42. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/operations/_storage_accounts_operations.py +1638 -0
  43. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/operations/_usage_operations.py +157 -0
  44. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01/py.typed +1 -0
  45. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/__init__.py +32 -0
  46. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/_configuration.py +64 -0
  47. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/_storage_management_client.py +213 -0
  48. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/_version.py +9 -0
  49. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/__init__.py +29 -0
  50. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/_configuration.py +64 -0
  51. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/_storage_management_client.py +217 -0
  52. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/__init__.py +59 -0
  53. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_containers_operations.py +1725 -0
  54. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_inventory_policies_operations.py +437 -0
  55. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_services_operations.py +368 -0
  56. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_encryption_scopes_operations.py +538 -0
  57. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_file_services_operations.py +335 -0
  58. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_file_shares_operations.py +771 -0
  59. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_management_policies_operations.py +343 -0
  60. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_object_replication_policies_operations.py +428 -0
  61. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_operations.py +130 -0
  62. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_private_endpoint_connections_operations.py +424 -0
  63. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_private_link_resources_operations.py +113 -0
  64. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_operations.py +597 -0
  65. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_services_operations.py +335 -0
  66. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_skus_operations.py +131 -0
  67. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_storage_accounts_operations.py +1696 -0
  68. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_table_operations.py +394 -0
  69. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_table_services_operations.py +335 -0
  70. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/aio/operations/_usages_operations.py +134 -0
  71. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/models/__init__.py +364 -0
  72. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/models/_models_py3.py +6038 -0
  73. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/models/_storage_management_client_enums.py +456 -0
  74. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/__init__.py +59 -0
  75. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py +2226 -0
  76. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_blob_inventory_policies_operations.py +582 -0
  77. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_blob_services_operations.py +476 -0
  78. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_encryption_scopes_operations.py +677 -0
  79. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_file_services_operations.py +444 -0
  80. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_file_shares_operations.py +1000 -0
  81. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_management_policies_operations.py +453 -0
  82. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_object_replication_policies_operations.py +567 -0
  83. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_operations.py +151 -0
  84. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_private_endpoint_connections_operations.py +575 -0
  85. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_private_link_resources_operations.py +149 -0
  86. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_queue_operations.py +805 -0
  87. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_queue_services_operations.py +444 -0
  88. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_skus_operations.py +157 -0
  89. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_storage_accounts_operations.py +2122 -0
  90. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_table_operations.py +563 -0
  91. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_table_services_operations.py +444 -0
  92. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/operations/_usages_operations.py +164 -0
  93. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01/py.typed +1 -0
  94. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/__init__.py +32 -0
  95. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/_configuration.py +64 -0
  96. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/_storage_management_client.py +256 -0
  97. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/_version.py +9 -0
  98. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/__init__.py +29 -0
  99. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/_configuration.py +64 -0
  100. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/_storage_management_client.py +261 -0
  101. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/__init__.py +71 -0
  102. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_containers_operations.py +1840 -0
  103. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_inventory_policies_operations.py +434 -0
  104. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_services_operations.py +355 -0
  105. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_deleted_accounts_operations.py +188 -0
  106. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_encryption_scopes_operations.py +556 -0
  107. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_file_services_operations.py +322 -0
  108. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_file_shares_operations.py +988 -0
  109. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_local_users_operations.py +571 -0
  110. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_management_policies_operations.py +343 -0
  111. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_network_security_perimeter_configurations_operations.py +348 -0
  112. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_object_replication_policies_operations.py +438 -0
  113. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_operations.py +130 -0
  114. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_private_endpoint_connections_operations.py +424 -0
  115. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_private_link_resources_operations.py +113 -0
  116. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_queue_operations.py +597 -0
  117. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_queue_services_operations.py +322 -0
  118. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_skus_operations.py +131 -0
  119. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_accounts_operations.py +2222 -0
  120. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py +166 -0
  121. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py +160 -0
  122. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py +810 -0
  123. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_table_operations.py +577 -0
  124. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_table_services_operations.py +322 -0
  125. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio/operations/_usages_operations.py +134 -0
  126. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/models/__init__.py +548 -0
  127. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/models/_models_py3.py +9702 -0
  128. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/models/_storage_management_client_enums.py +708 -0
  129. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/__init__.py +71 -0
  130. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_blob_containers_operations.py +2389 -0
  131. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_blob_inventory_policies_operations.py +587 -0
  132. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_blob_services_operations.py +463 -0
  133. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_deleted_accounts_operations.py +244 -0
  134. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_encryption_scopes_operations.py +720 -0
  135. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_file_services_operations.py +431 -0
  136. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_file_shares_operations.py +1296 -0
  137. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_local_users_operations.py +798 -0
  138. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_management_policies_operations.py +459 -0
  139. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_network_security_perimeter_configurations_operations.py +468 -0
  140. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_object_replication_policies_operations.py +585 -0
  141. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_operations.py +151 -0
  142. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_private_endpoint_connections_operations.py +583 -0
  143. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_private_link_resources_operations.py +151 -0
  144. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_queue_operations.py +815 -0
  145. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_queue_services_operations.py +431 -0
  146. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_skus_operations.py +157 -0
  147. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_storage_accounts_operations.py +2822 -0
  148. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py +223 -0
  149. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py +208 -0
  150. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py +1027 -0
  151. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_table_operations.py +766 -0
  152. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_table_services_operations.py +431 -0
  153. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations/_usages_operations.py +164 -0
  154. azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/py.typed +1 -0
  155. azure_mgmt_storage-22.0.0/azure_mgmt_storage.egg-info/PKG-INFO +794 -0
  156. azure_mgmt_storage-22.0.0/azure_mgmt_storage.egg-info/SOURCES.txt +205 -0
  157. azure_mgmt_storage-22.0.0/azure_mgmt_storage.egg-info/requires.txt +4 -0
  158. azure_mgmt_storage-22.0.0/pyproject.toml +6 -0
  159. azure_mgmt_storage-22.0.0/setup.py +83 -0
  160. azure_mgmt_storage-22.0.0/tests/_aio_testcase.py +35 -0
  161. azure_mgmt_storage-22.0.0/tests/conftest.py +35 -0
  162. azure_mgmt_storage-22.0.0/tests/disable_test_cli_mgmt_storage.py +606 -0
  163. azure_mgmt_storage-22.0.0/tests/disable_test_cli_mgmt_storage_async.py +528 -0
  164. azure_mgmt_storage-22.0.0/tests/test_storage_management_deleted_accounts_operations_async_test.py +27 -0
  165. azure_mgmt_storage-22.0.0/tests/test_storage_management_deleted_accounts_operations_test.py +26 -0
  166. azure_mgmt_storage-22.0.0/tests/test_storage_management_operations_async_test.py +27 -0
  167. azure_mgmt_storage-22.0.0/tests/test_storage_management_operations_test.py +26 -0
  168. azure_mgmt_storage-22.0.0/tests/test_storage_management_skus_operations_async_test.py +27 -0
  169. azure_mgmt_storage-22.0.0/tests/test_storage_management_skus_operations_test.py +26 -0
  170. azure_mgmt_storage-22.0.0/tests/test_storage_management_storage_accounts_operations_async_test.py +36 -0
  171. azure_mgmt_storage-22.0.0/tests/test_storage_management_storage_accounts_operations_test.py +35 -0
  172. azure-mgmt-storage-21.2.0/CHANGELOG.md +0 -690
  173. azure-mgmt-storage-21.2.0/PKG-INFO +0 -776
  174. azure-mgmt-storage-21.2.0/_meta.json +0 -33
  175. azure-mgmt-storage-21.2.0/azure/mgmt/storage/_serialization.py +0 -2004
  176. azure-mgmt-storage-21.2.0/azure/mgmt/storage/_storage_management_client.py +0 -1336
  177. azure-mgmt-storage-21.2.0/azure/mgmt/storage/_version.py +0 -8
  178. azure-mgmt-storage-21.2.0/azure/mgmt/storage/aio/_storage_management_client.py +0 -1336
  179. azure-mgmt-storage-21.2.0/azure/mgmt/storage/models.py +0 -8
  180. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/__init__.py +0 -26
  181. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/_configuration.py +0 -66
  182. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/_storage_management.py +0 -115
  183. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/_vendor.py +0 -16
  184. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/_version.py +0 -9
  185. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/aio/__init__.py +0 -23
  186. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/aio/_configuration.py +0 -66
  187. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/aio/_storage_management.py +0 -118
  188. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/aio/operations/__init__.py +0 -21
  189. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/aio/operations/_storage_accounts_operations.py +0 -1030
  190. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/aio/operations/_usage_operations.py +0 -135
  191. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/models/__init__.py +0 -55
  192. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/models/_models_py3.py +0 -660
  193. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/models/_storage_management_enums.py +0 -59
  194. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/operations/__init__.py +0 -21
  195. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/operations/_storage_accounts_operations.py +0 -1297
  196. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15/operations/_usage_operations.py +0 -162
  197. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/__init__.py +0 -26
  198. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/_configuration.py +0 -66
  199. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/_storage_management_client.py +0 -117
  200. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/_vendor.py +0 -16
  201. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/_version.py +0 -9
  202. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/aio/__init__.py +0 -23
  203. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/aio/_configuration.py +0 -66
  204. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/aio/_storage_management_client.py +0 -120
  205. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/aio/operations/__init__.py +0 -21
  206. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/aio/operations/_storage_accounts_operations.py +0 -1032
  207. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/aio/operations/_usage_operations.py +0 -135
  208. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/models/__init__.py +0 -77
  209. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/models/_models_py3.py +0 -831
  210. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/operations/__init__.py +0 -21
  211. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/operations/_storage_accounts_operations.py +0 -1285
  212. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01/operations/_usage_operations.py +0 -162
  213. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/__init__.py +0 -26
  214. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/_configuration.py +0 -66
  215. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/_storage_management.py +0 -115
  216. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/_vendor.py +0 -16
  217. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/_version.py +0 -9
  218. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/aio/__init__.py +0 -23
  219. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/aio/_configuration.py +0 -66
  220. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/aio/_storage_management.py +0 -118
  221. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/aio/operations/__init__.py +0 -21
  222. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/aio/operations/_storage_accounts_operations.py +0 -1310
  223. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/aio/operations/_usage_operations.py +0 -135
  224. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/models/__init__.py +0 -97
  225. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/models/_models_py3.py +0 -1210
  226. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/models/_storage_management_enums.py +0 -169
  227. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/operations/__init__.py +0 -21
  228. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/operations/_storage_accounts_operations.py +0 -1647
  229. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01/operations/_usage_operations.py +0 -162
  230. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/__init__.py +0 -26
  231. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/_configuration.py +0 -66
  232. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/_patch.py +0 -32
  233. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/_storage_management.py +0 -121
  234. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/_vendor.py +0 -16
  235. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/_version.py +0 -9
  236. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/__init__.py +0 -23
  237. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/_configuration.py +0 -66
  238. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/_patch.py +0 -32
  239. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/_storage_management.py +0 -124
  240. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/operations/__init__.py +0 -25
  241. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/operations/_operations.py +0 -135
  242. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/operations/_skus_operations.py +0 -135
  243. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/operations/_storage_accounts_operations.py +0 -1310
  244. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/operations/_usage_operations.py +0 -135
  245. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/models/__init__.py +0 -129
  246. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/models/_models_py3.py +0 -1843
  247. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/models/_storage_management_enums.py +0 -191
  248. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/operations/__init__.py +0 -25
  249. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/operations/_operations.py +0 -156
  250. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/operations/_skus_operations.py +0 -162
  251. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/operations/_storage_accounts_operations.py +0 -1647
  252. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/operations/_usage_operations.py +0 -162
  253. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/__init__.py +0 -26
  254. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/_configuration.py +0 -66
  255. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/_patch.py +0 -32
  256. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/_storage_management.py +0 -121
  257. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/_vendor.py +0 -16
  258. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/_version.py +0 -9
  259. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/__init__.py +0 -23
  260. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/_configuration.py +0 -66
  261. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/_patch.py +0 -32
  262. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/_storage_management.py +0 -124
  263. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/operations/__init__.py +0 -25
  264. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/operations/_operations.py +0 -135
  265. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/operations/_skus_operations.py +0 -135
  266. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/operations/_storage_accounts_operations.py +0 -1310
  267. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/operations/_usage_operations.py +0 -135
  268. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/models/__init__.py +0 -129
  269. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/models/_models_py3.py +0 -1852
  270. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/operations/__init__.py +0 -25
  271. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/operations/_operations.py +0 -156
  272. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/operations/_patch.py +0 -20
  273. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/operations/_skus_operations.py +0 -162
  274. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/operations/_storage_accounts_operations.py +0 -1647
  275. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/operations/_usage_operations.py +0 -162
  276. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/__init__.py +0 -26
  277. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/_configuration.py +0 -65
  278. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/_patch.py +0 -32
  279. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/_storage_management_client.py +0 -127
  280. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/_vendor.py +0 -16
  281. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/_version.py +0 -9
  282. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/__init__.py +0 -23
  283. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/_configuration.py +0 -65
  284. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/_patch.py +0 -32
  285. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/_storage_management_client.py +0 -131
  286. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/__init__.py +0 -27
  287. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/_blob_containers_operations.py +0 -1692
  288. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/_operations.py +0 -135
  289. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/_patch.py +0 -20
  290. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/_skus_operations.py +0 -135
  291. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/_storage_accounts_operations.py +0 -1310
  292. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/aio/operations/_usage_operations.py +0 -215
  293. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/models/__init__.py +0 -171
  294. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/models/_models_py3.py +0 -2556
  295. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/models/_patch.py +0 -20
  296. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/models/_storage_management_client_enums.py +0 -259
  297. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/__init__.py +0 -27
  298. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/_blob_containers_operations.py +0 -2178
  299. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/_operations.py +0 -156
  300. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/_patch.py +0 -20
  301. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/_skus_operations.py +0 -162
  302. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/_storage_accounts_operations.py +0 -1647
  303. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_02_01/operations/_usage_operations.py +0 -269
  304. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/__init__.py +0 -26
  305. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/_configuration.py +0 -65
  306. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/_patch.py +0 -32
  307. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/_storage_management_client.py +0 -146
  308. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/_vendor.py +0 -16
  309. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/_version.py +0 -9
  310. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/__init__.py +0 -23
  311. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/_configuration.py +0 -65
  312. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/_patch.py +0 -32
  313. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/_storage_management_client.py +0 -148
  314. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/__init__.py +0 -29
  315. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_blob_containers_operations.py +0 -1721
  316. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_management_policies_operations.py +0 -357
  317. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_operations.py +0 -137
  318. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_patch.py +0 -20
  319. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_skus_operations.py +0 -138
  320. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_storage_accounts_operations.py +0 -1635
  321. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/aio/operations/_usages_operations.py +0 -221
  322. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/models/__init__.py +0 -181
  323. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/models/_models_py3.py +0 -2699
  324. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/models/_patch.py +0 -20
  325. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/models/_storage_management_client_enums.py +0 -265
  326. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/__init__.py +0 -29
  327. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_blob_containers_operations.py +0 -2207
  328. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_management_policies_operations.py +0 -467
  329. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_operations.py +0 -158
  330. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_patch.py +0 -20
  331. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_skus_operations.py +0 -164
  332. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_storage_accounts_operations.py +0 -2085
  333. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_03_01_preview/operations/_usages_operations.py +0 -273
  334. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/__init__.py +0 -26
  335. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/_configuration.py +0 -65
  336. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/_patch.py +0 -32
  337. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/_storage_management_client.py +0 -139
  338. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/_vendor.py +0 -16
  339. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/_version.py +0 -9
  340. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/__init__.py +0 -23
  341. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/_configuration.py +0 -65
  342. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/_patch.py +0 -32
  343. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/_storage_management_client.py +0 -143
  344. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/__init__.py +0 -29
  345. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_blob_containers_operations.py +0 -1692
  346. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_blob_services_operations.py +0 -282
  347. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_operations.py +0 -135
  348. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_patch.py +0 -20
  349. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_skus_operations.py +0 -135
  350. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_storage_accounts_operations.py +0 -1420
  351. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/aio/operations/_usages_operations.py +0 -139
  352. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/models/__init__.py +0 -185
  353. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/models/_models_py3.py +0 -2838
  354. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/models/_patch.py +0 -20
  355. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/models/_storage_management_client_enums.py +0 -287
  356. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/__init__.py +0 -29
  357. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_blob_containers_operations.py +0 -2178
  358. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_blob_services_operations.py +0 -361
  359. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_operations.py +0 -156
  360. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_patch.py +0 -20
  361. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_skus_operations.py +0 -162
  362. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_storage_accounts_operations.py +0 -1792
  363. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_07_01/operations/_usages_operations.py +0 -169
  364. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/__init__.py +0 -26
  365. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/_configuration.py +0 -65
  366. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/_patch.py +0 -32
  367. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/_storage_management_client.py +0 -146
  368. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/_vendor.py +0 -16
  369. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/_version.py +0 -9
  370. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/__init__.py +0 -23
  371. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/_configuration.py +0 -65
  372. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/_patch.py +0 -32
  373. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/_storage_management_client.py +0 -150
  374. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/__init__.py +0 -31
  375. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_blob_containers_operations.py +0 -1696
  376. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_blob_services_operations.py +0 -282
  377. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_management_policies_operations.py +0 -349
  378. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_operations.py +0 -135
  379. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_patch.py +0 -20
  380. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_skus_operations.py +0 -135
  381. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_storage_accounts_operations.py +0 -1477
  382. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/aio/operations/_usages_operations.py +0 -139
  383. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/models/__init__.py +0 -209
  384. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/models/_models_py3.py +0 -3194
  385. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/models/_patch.py +0 -20
  386. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/models/_storage_management_client_enums.py +0 -299
  387. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/__init__.py +0 -31
  388. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_blob_containers_operations.py +0 -2182
  389. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_blob_services_operations.py +0 -361
  390. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_management_policies_operations.py +0 -459
  391. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_operations.py +0 -156
  392. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_patch.py +0 -20
  393. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_skus_operations.py +0 -162
  394. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_storage_accounts_operations.py +0 -1875
  395. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2018_11_01/operations/_usages_operations.py +0 -169
  396. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/__init__.py +0 -26
  397. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/_configuration.py +0 -65
  398. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/_patch.py +0 -32
  399. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/_storage_management_client.py +0 -158
  400. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/_vendor.py +0 -16
  401. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/_version.py +0 -9
  402. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/__init__.py +0 -23
  403. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/_configuration.py +0 -65
  404. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/_patch.py +0 -32
  405. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/_storage_management_client.py +0 -162
  406. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/__init__.py +0 -35
  407. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_blob_containers_operations.py +0 -1746
  408. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_blob_services_operations.py +0 -375
  409. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_file_services_operations.py +0 -341
  410. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_file_shares_operations.py +0 -625
  411. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_management_policies_operations.py +0 -349
  412. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_operations.py +0 -135
  413. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_patch.py +0 -20
  414. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_skus_operations.py +0 -135
  415. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_storage_accounts_operations.py +0 -1483
  416. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/aio/operations/_usages_operations.py +0 -139
  417. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/models/__init__.py +0 -235
  418. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/models/_models_py3.py +0 -3799
  419. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/models/_patch.py +0 -20
  420. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/models/_storage_management_client_enums.py +0 -326
  421. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/__init__.py +0 -35
  422. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_blob_containers_operations.py +0 -2245
  423. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_blob_services_operations.py +0 -483
  424. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_file_services_operations.py +0 -450
  425. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_file_shares_operations.py +0 -806
  426. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_management_policies_operations.py +0 -459
  427. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_operations.py +0 -156
  428. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_patch.py +0 -20
  429. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_skus_operations.py +0 -162
  430. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_storage_accounts_operations.py +0 -1888
  431. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_04_01/operations/_usages_operations.py +0 -169
  432. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/__init__.py +0 -26
  433. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/_configuration.py +0 -65
  434. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/_patch.py +0 -32
  435. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/_storage_management_client.py +0 -213
  436. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/_vendor.py +0 -16
  437. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/_version.py +0 -9
  438. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/__init__.py +0 -23
  439. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/_configuration.py +0 -65
  440. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/_patch.py +0 -32
  441. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/_storage_management_client.py +0 -217
  442. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/__init__.py +0 -53
  443. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_containers_operations.py +0 -1747
  444. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
  445. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_blob_services_operations.py +0 -375
  446. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_encryption_scopes_operations.py +0 -550
  447. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_file_services_operations.py +0 -341
  448. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_file_shares_operations.py +0 -787
  449. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_management_policies_operations.py +0 -349
  450. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_object_replication_policies_operations.py +0 -436
  451. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_operations.py +0 -135
  452. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_patch.py +0 -20
  453. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  454. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_private_link_resources_operations.py +0 -117
  455. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_operations.py +0 -608
  456. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_queue_services_operations.py +0 -341
  457. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_skus_operations.py +0 -136
  458. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_storage_accounts_operations.py +0 -1687
  459. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_table_operations.py +0 -405
  460. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_table_services_operations.py +0 -341
  461. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/aio/operations/_usages_operations.py +0 -139
  462. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/models/__init__.py +0 -353
  463. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/models/_models_py3.py +0 -6039
  464. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/models/_patch.py +0 -20
  465. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/models/_storage_management_client_enums.py +0 -455
  466. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/__init__.py +0 -53
  467. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py +0 -2246
  468. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_blob_inventory_policies_operations.py +0 -590
  469. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_blob_services_operations.py +0 -483
  470. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_encryption_scopes_operations.py +0 -689
  471. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_file_services_operations.py +0 -450
  472. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_file_shares_operations.py +0 -1014
  473. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_management_policies_operations.py +0 -459
  474. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_object_replication_policies_operations.py +0 -575
  475. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_operations.py +0 -156
  476. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_patch.py +0 -20
  477. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_private_endpoint_connections_operations.py +0 -583
  478. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_private_link_resources_operations.py +0 -153
  479. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_queue_operations.py +0 -814
  480. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_queue_services_operations.py +0 -450
  481. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_skus_operations.py +0 -162
  482. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_storage_accounts_operations.py +0 -2124
  483. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_table_operations.py +0 -572
  484. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_table_services_operations.py +0 -450
  485. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2019_06_01/operations/_usages_operations.py +0 -169
  486. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/__init__.py +0 -26
  487. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/_configuration.py +0 -65
  488. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/_patch.py +0 -32
  489. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/_storage_management_client.py +0 -234
  490. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/_vendor.py +0 -16
  491. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/_version.py +0 -9
  492. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/__init__.py +0 -23
  493. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/_configuration.py +0 -65
  494. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/_patch.py +0 -32
  495. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/_storage_management_client.py +0 -237
  496. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/__init__.py +0 -55
  497. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_blob_containers_operations.py +0 -1776
  498. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_blob_inventory_policies_operations.py +0 -454
  499. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_blob_services_operations.py +0 -382
  500. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_deleted_accounts_operations.py +0 -198
  501. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_encryption_scopes_operations.py +0 -560
  502. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_file_services_operations.py +0 -348
  503. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_file_shares_operations.py +0 -825
  504. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_management_policies_operations.py +0 -355
  505. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_object_replication_policies_operations.py +0 -445
  506. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_operations.py +0 -137
  507. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_patch.py +0 -20
  508. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_private_endpoint_connections_operations.py +0 -441
  509. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_private_link_resources_operations.py +0 -119
  510. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_queue_operations.py +0 -618
  511. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_queue_services_operations.py +0 -348
  512. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_skus_operations.py +0 -138
  513. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_storage_accounts_operations.py +0 -1725
  514. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_table_operations.py +0 -416
  515. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_table_services_operations.py +0 -348
  516. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/aio/operations/_usages_operations.py +0 -142
  517. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/models/__init__.py +0 -373
  518. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/models/_models_py3.py +0 -6344
  519. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/models/_patch.py +0 -20
  520. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/models/_storage_management_client_enums.py +0 -468
  521. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/__init__.py +0 -55
  522. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_blob_containers_operations.py +0 -2276
  523. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_blob_inventory_policies_operations.py +0 -599
  524. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_blob_services_operations.py +0 -490
  525. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_deleted_accounts_operations.py +0 -255
  526. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_encryption_scopes_operations.py +0 -700
  527. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_file_services_operations.py +0 -457
  528. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_file_shares_operations.py +0 -1072
  529. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_management_policies_operations.py +0 -465
  530. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_object_replication_policies_operations.py +0 -584
  531. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_operations.py +0 -158
  532. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_patch.py +0 -20
  533. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_private_endpoint_connections_operations.py +0 -592
  534. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_private_link_resources_operations.py +0 -155
  535. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_queue_operations.py +0 -824
  536. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_queue_services_operations.py +0 -457
  537. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_skus_operations.py +0 -165
  538. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_storage_accounts_operations.py +0 -2170
  539. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_table_operations.py +0 -582
  540. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_table_services_operations.py +0 -457
  541. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2020_08_01_preview/operations/_usages_operations.py +0 -171
  542. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/__init__.py +0 -26
  543. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/_configuration.py +0 -65
  544. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/_patch.py +0 -32
  545. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/_storage_management_client.py +0 -219
  546. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/_vendor.py +0 -16
  547. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/_version.py +0 -9
  548. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/__init__.py +0 -23
  549. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/_configuration.py +0 -65
  550. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/_patch.py +0 -32
  551. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/_storage_management_client.py +0 -224
  552. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/__init__.py +0 -55
  553. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_blob_containers_operations.py +0 -1747
  554. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
  555. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_blob_services_operations.py +0 -375
  556. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_deleted_accounts_operations.py +0 -194
  557. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_encryption_scopes_operations.py +0 -550
  558. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_file_services_operations.py +0 -341
  559. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_file_shares_operations.py +0 -810
  560. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_management_policies_operations.py +0 -349
  561. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_object_replication_policies_operations.py +0 -436
  562. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_operations.py +0 -135
  563. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_patch.py +0 -20
  564. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  565. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_private_link_resources_operations.py +0 -117
  566. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_queue_operations.py +0 -608
  567. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_queue_services_operations.py +0 -341
  568. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_skus_operations.py +0 -136
  569. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_storage_accounts_operations.py +0 -1687
  570. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_table_operations.py +0 -405
  571. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_table_services_operations.py +0 -341
  572. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/aio/operations/_usages_operations.py +0 -139
  573. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/models/__init__.py +0 -381
  574. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/models/_models_py3.py +0 -6465
  575. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/models/_patch.py +0 -20
  576. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/models/_storage_management_client_enums.py +0 -483
  577. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/__init__.py +0 -55
  578. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_blob_containers_operations.py +0 -2246
  579. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_blob_inventory_policies_operations.py +0 -590
  580. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_blob_services_operations.py +0 -483
  581. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_deleted_accounts_operations.py +0 -250
  582. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_encryption_scopes_operations.py +0 -689
  583. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_file_services_operations.py +0 -450
  584. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_file_shares_operations.py +0 -1056
  585. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_management_policies_operations.py +0 -459
  586. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_object_replication_policies_operations.py +0 -575
  587. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_operations.py +0 -156
  588. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_patch.py +0 -20
  589. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_private_endpoint_connections_operations.py +0 -583
  590. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_private_link_resources_operations.py +0 -153
  591. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_queue_operations.py +0 -814
  592. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_queue_services_operations.py +0 -450
  593. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_skus_operations.py +0 -162
  594. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_storage_accounts_operations.py +0 -2124
  595. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_table_operations.py +0 -572
  596. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_table_services_operations.py +0 -450
  597. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_01_01/operations/_usages_operations.py +0 -169
  598. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/__init__.py +0 -26
  599. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/_configuration.py +0 -65
  600. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/_patch.py +0 -32
  601. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/_storage_management_client.py +0 -219
  602. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/_vendor.py +0 -16
  603. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/_version.py +0 -9
  604. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/__init__.py +0 -23
  605. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/_configuration.py +0 -65
  606. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/_patch.py +0 -32
  607. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/_storage_management_client.py +0 -224
  608. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/__init__.py +0 -55
  609. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_blob_containers_operations.py +0 -1747
  610. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
  611. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_blob_services_operations.py +0 -375
  612. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_deleted_accounts_operations.py +0 -194
  613. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_encryption_scopes_operations.py +0 -550
  614. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_file_services_operations.py +0 -341
  615. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_file_shares_operations.py +0 -810
  616. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_management_policies_operations.py +0 -349
  617. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_object_replication_policies_operations.py +0 -436
  618. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_operations.py +0 -135
  619. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_patch.py +0 -20
  620. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  621. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_private_link_resources_operations.py +0 -117
  622. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_queue_operations.py +0 -608
  623. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_queue_services_operations.py +0 -341
  624. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_skus_operations.py +0 -136
  625. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_storage_accounts_operations.py +0 -1687
  626. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_table_operations.py +0 -405
  627. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_table_services_operations.py +0 -341
  628. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/aio/operations/_usages_operations.py +0 -139
  629. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/models/__init__.py +0 -389
  630. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/models/_models_py3.py +0 -6606
  631. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/models/_patch.py +0 -20
  632. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/models/_storage_management_client_enums.py +0 -489
  633. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/__init__.py +0 -55
  634. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_blob_containers_operations.py +0 -2246
  635. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_blob_inventory_policies_operations.py +0 -590
  636. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_blob_services_operations.py +0 -483
  637. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_deleted_accounts_operations.py +0 -250
  638. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_encryption_scopes_operations.py +0 -689
  639. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_file_services_operations.py +0 -450
  640. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_file_shares_operations.py +0 -1056
  641. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_management_policies_operations.py +0 -459
  642. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_object_replication_policies_operations.py +0 -575
  643. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_operations.py +0 -156
  644. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_patch.py +0 -20
  645. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_private_endpoint_connections_operations.py +0 -583
  646. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_private_link_resources_operations.py +0 -153
  647. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_queue_operations.py +0 -814
  648. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_queue_services_operations.py +0 -450
  649. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_skus_operations.py +0 -162
  650. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_storage_accounts_operations.py +0 -2124
  651. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_table_operations.py +0 -572
  652. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_table_services_operations.py +0 -450
  653. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_02_01/operations/_usages_operations.py +0 -169
  654. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/__init__.py +0 -26
  655. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/_configuration.py +0 -65
  656. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/_patch.py +0 -32
  657. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/_storage_management_client.py +0 -219
  658. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/_vendor.py +0 -16
  659. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/_version.py +0 -9
  660. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/__init__.py +0 -23
  661. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/_configuration.py +0 -65
  662. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/_patch.py +0 -32
  663. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/_storage_management_client.py +0 -224
  664. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/__init__.py +0 -55
  665. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_blob_containers_operations.py +0 -1860
  666. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
  667. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_blob_services_operations.py +0 -375
  668. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_deleted_accounts_operations.py +0 -194
  669. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_encryption_scopes_operations.py +0 -550
  670. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_file_services_operations.py +0 -344
  671. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_file_shares_operations.py +0 -1010
  672. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_management_policies_operations.py +0 -349
  673. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_object_replication_policies_operations.py +0 -446
  674. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_operations.py +0 -135
  675. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_patch.py +0 -20
  676. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  677. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_private_link_resources_operations.py +0 -117
  678. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_queue_operations.py +0 -613
  679. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_queue_services_operations.py +0 -344
  680. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_skus_operations.py +0 -136
  681. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_storage_accounts_operations.py +0 -1687
  682. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_table_operations.py +0 -410
  683. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_table_services_operations.py +0 -344
  684. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/aio/operations/_usages_operations.py +0 -139
  685. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/models/__init__.py +0 -411
  686. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/models/_models_py3.py +0 -7083
  687. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/models/_patch.py +0 -20
  688. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/models/_storage_management_client_enums.py +0 -528
  689. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/__init__.py +0 -55
  690. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_blob_containers_operations.py +0 -2392
  691. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_blob_inventory_policies_operations.py +0 -590
  692. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_blob_services_operations.py +0 -483
  693. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_deleted_accounts_operations.py +0 -250
  694. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_encryption_scopes_operations.py +0 -689
  695. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_file_services_operations.py +0 -453
  696. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_file_shares_operations.py +0 -1303
  697. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_management_policies_operations.py +0 -459
  698. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_object_replication_policies_operations.py +0 -585
  699. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_operations.py +0 -156
  700. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_patch.py +0 -20
  701. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_private_endpoint_connections_operations.py +0 -583
  702. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_private_link_resources_operations.py +0 -153
  703. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_queue_operations.py +0 -819
  704. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_queue_services_operations.py +0 -453
  705. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_skus_operations.py +0 -162
  706. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_storage_accounts_operations.py +0 -2124
  707. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_table_operations.py +0 -577
  708. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_table_services_operations.py +0 -453
  709. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_04_01/operations/_usages_operations.py +0 -169
  710. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/__init__.py +0 -26
  711. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/_configuration.py +0 -65
  712. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/_patch.py +0 -32
  713. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/_storage_management_client.py +0 -219
  714. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/_vendor.py +0 -16
  715. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/_version.py +0 -9
  716. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/__init__.py +0 -23
  717. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/_configuration.py +0 -65
  718. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/_patch.py +0 -32
  719. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/_storage_management_client.py +0 -224
  720. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/__init__.py +0 -55
  721. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_blob_containers_operations.py +0 -1838
  722. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
  723. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_blob_services_operations.py +0 -362
  724. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_deleted_accounts_operations.py +0 -194
  725. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_encryption_scopes_operations.py +0 -550
  726. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_file_services_operations.py +0 -331
  727. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_file_shares_operations.py +0 -1010
  728. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_management_policies_operations.py +0 -349
  729. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_object_replication_policies_operations.py +0 -446
  730. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_operations.py +0 -135
  731. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_patch.py +0 -20
  732. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  733. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_private_link_resources_operations.py +0 -117
  734. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_queue_operations.py +0 -613
  735. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_queue_services_operations.py +0 -331
  736. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_skus_operations.py +0 -136
  737. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_storage_accounts_operations.py +0 -1898
  738. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_table_operations.py +0 -410
  739. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_table_services_operations.py +0 -331
  740. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/aio/operations/_usages_operations.py +0 -139
  741. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/models/__init__.py +0 -419
  742. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/models/_models_py3.py +0 -7467
  743. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/models/_patch.py +0 -20
  744. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/models/_storage_management_client_enums.py +0 -544
  745. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/__init__.py +0 -55
  746. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_blob_containers_operations.py +0 -2370
  747. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_blob_inventory_policies_operations.py +0 -590
  748. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_blob_services_operations.py +0 -464
  749. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_deleted_accounts_operations.py +0 -250
  750. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_encryption_scopes_operations.py +0 -689
  751. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_file_services_operations.py +0 -434
  752. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_file_shares_operations.py +0 -1303
  753. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_management_policies_operations.py +0 -459
  754. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_object_replication_policies_operations.py +0 -585
  755. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_operations.py +0 -156
  756. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_patch.py +0 -20
  757. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_private_endpoint_connections_operations.py +0 -583
  758. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_private_link_resources_operations.py +0 -153
  759. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_queue_operations.py +0 -819
  760. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_queue_services_operations.py +0 -434
  761. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_skus_operations.py +0 -162
  762. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_storage_accounts_operations.py +0 -2400
  763. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_table_operations.py +0 -577
  764. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_table_services_operations.py +0 -434
  765. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_06_01/operations/_usages_operations.py +0 -169
  766. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/__init__.py +0 -26
  767. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/_configuration.py +0 -65
  768. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/_patch.py +0 -32
  769. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/_storage_management_client.py +0 -225
  770. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/_vendor.py +0 -16
  771. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/_version.py +0 -9
  772. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/__init__.py +0 -23
  773. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/_configuration.py +0 -65
  774. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/_patch.py +0 -32
  775. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/_storage_management_client.py +0 -230
  776. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/__init__.py +0 -57
  777. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_blob_containers_operations.py +0 -1838
  778. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_blob_inventory_policies_operations.py +0 -445
  779. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_blob_services_operations.py +0 -362
  780. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_deleted_accounts_operations.py +0 -194
  781. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_encryption_scopes_operations.py +0 -550
  782. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_file_services_operations.py +0 -328
  783. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_file_shares_operations.py +0 -1003
  784. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_local_users_operations.py +0 -560
  785. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_management_policies_operations.py +0 -349
  786. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_object_replication_policies_operations.py +0 -446
  787. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_operations.py +0 -135
  788. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_patch.py +0 -20
  789. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  790. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_private_link_resources_operations.py +0 -117
  791. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_queue_operations.py +0 -608
  792. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_queue_services_operations.py +0 -328
  793. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_skus_operations.py +0 -136
  794. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_storage_accounts_operations.py +0 -1898
  795. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_table_operations.py +0 -405
  796. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_table_services_operations.py +0 -328
  797. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/aio/operations/_usages_operations.py +0 -139
  798. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/models/__init__.py +0 -431
  799. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/models/_models_py3.py +0 -7738
  800. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/models/_patch.py +0 -20
  801. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/models/_storage_management_client_enums.py +0 -560
  802. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/__init__.py +0 -57
  803. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_blob_containers_operations.py +0 -2370
  804. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_blob_inventory_policies_operations.py +0 -590
  805. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_blob_services_operations.py +0 -464
  806. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_deleted_accounts_operations.py +0 -250
  807. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_encryption_scopes_operations.py +0 -689
  808. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_file_services_operations.py +0 -431
  809. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_file_shares_operations.py +0 -1296
  810. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_local_users_operations.py +0 -758
  811. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_management_policies_operations.py +0 -459
  812. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_object_replication_policies_operations.py +0 -585
  813. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_operations.py +0 -156
  814. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_patch.py +0 -20
  815. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_private_endpoint_connections_operations.py +0 -583
  816. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_private_link_resources_operations.py +0 -153
  817. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_queue_operations.py +0 -814
  818. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_queue_services_operations.py +0 -431
  819. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_skus_operations.py +0 -162
  820. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_storage_accounts_operations.py +0 -2400
  821. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_table_operations.py +0 -572
  822. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_table_services_operations.py +0 -431
  823. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_08_01/operations/_usages_operations.py +0 -169
  824. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/__init__.py +0 -26
  825. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/_configuration.py +0 -65
  826. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/_patch.py +0 -32
  827. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/_storage_management_client.py +0 -225
  828. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/_vendor.py +0 -16
  829. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/_version.py +0 -9
  830. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/__init__.py +0 -23
  831. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/_configuration.py +0 -65
  832. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/_patch.py +0 -32
  833. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/_storage_management_client.py +0 -230
  834. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/__init__.py +0 -57
  835. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_blob_containers_operations.py +0 -1838
  836. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
  837. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_blob_services_operations.py +0 -362
  838. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_deleted_accounts_operations.py +0 -194
  839. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_encryption_scopes_operations.py +0 -550
  840. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_file_services_operations.py +0 -328
  841. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_file_shares_operations.py +0 -1003
  842. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_local_users_operations.py +0 -560
  843. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_management_policies_operations.py +0 -349
  844. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_object_replication_policies_operations.py +0 -446
  845. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_operations.py +0 -135
  846. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_patch.py +0 -20
  847. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  848. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_private_link_resources_operations.py +0 -117
  849. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_queue_operations.py +0 -608
  850. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_queue_services_operations.py +0 -328
  851. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_skus_operations.py +0 -136
  852. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_storage_accounts_operations.py +0 -1898
  853. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_table_operations.py +0 -588
  854. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_table_services_operations.py +0 -328
  855. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/aio/operations/_usages_operations.py +0 -139
  856. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/models/__init__.py +0 -441
  857. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/models/_models_py3.py +0 -8069
  858. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/models/_patch.py +0 -20
  859. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/models/_storage_management_client_enums.py +0 -583
  860. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/__init__.py +0 -57
  861. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_blob_containers_operations.py +0 -2370
  862. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_blob_inventory_policies_operations.py +0 -587
  863. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_blob_services_operations.py +0 -464
  864. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_deleted_accounts_operations.py +0 -250
  865. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_encryption_scopes_operations.py +0 -689
  866. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_file_services_operations.py +0 -431
  867. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_file_shares_operations.py +0 -1296
  868. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_local_users_operations.py +0 -758
  869. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_management_policies_operations.py +0 -459
  870. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_object_replication_policies_operations.py +0 -585
  871. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_operations.py +0 -156
  872. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_patch.py +0 -20
  873. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_private_endpoint_connections_operations.py +0 -583
  874. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_private_link_resources_operations.py +0 -153
  875. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_queue_operations.py +0 -814
  876. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_queue_services_operations.py +0 -431
  877. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_skus_operations.py +0 -162
  878. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_storage_accounts_operations.py +0 -2400
  879. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_table_operations.py +0 -765
  880. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_table_services_operations.py +0 -431
  881. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2021_09_01/operations/_usages_operations.py +0 -169
  882. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/__init__.py +0 -26
  883. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/_configuration.py +0 -65
  884. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/_patch.py +0 -20
  885. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/_storage_management_client.py +0 -225
  886. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/_vendor.py +0 -16
  887. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/_version.py +0 -9
  888. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/__init__.py +0 -23
  889. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/_configuration.py +0 -65
  890. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/_patch.py +0 -20
  891. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/_storage_management_client.py +0 -230
  892. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/__init__.py +0 -57
  893. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_blob_containers_operations.py +0 -1838
  894. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
  895. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_blob_services_operations.py +0 -362
  896. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_deleted_accounts_operations.py +0 -194
  897. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_encryption_scopes_operations.py +0 -550
  898. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_file_services_operations.py +0 -328
  899. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_file_shares_operations.py +0 -1003
  900. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_local_users_operations.py +0 -560
  901. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_management_policies_operations.py +0 -349
  902. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_object_replication_policies_operations.py +0 -446
  903. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_operations.py +0 -135
  904. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_patch.py +0 -20
  905. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  906. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_private_link_resources_operations.py +0 -117
  907. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_queue_operations.py +0 -608
  908. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_queue_services_operations.py +0 -328
  909. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_skus_operations.py +0 -136
  910. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_storage_accounts_operations.py +0 -1898
  911. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_table_operations.py +0 -588
  912. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_table_services_operations.py +0 -328
  913. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/aio/operations/_usages_operations.py +0 -139
  914. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/models/__init__.py +0 -441
  915. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/models/_models_py3.py +0 -8057
  916. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/models/_patch.py +0 -20
  917. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/models/_storage_management_client_enums.py +0 -584
  918. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/__init__.py +0 -57
  919. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_blob_containers_operations.py +0 -2370
  920. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_blob_inventory_policies_operations.py +0 -587
  921. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_blob_services_operations.py +0 -464
  922. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_deleted_accounts_operations.py +0 -250
  923. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_encryption_scopes_operations.py +0 -689
  924. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_file_services_operations.py +0 -431
  925. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_file_shares_operations.py +0 -1296
  926. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_local_users_operations.py +0 -758
  927. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_management_policies_operations.py +0 -459
  928. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_object_replication_policies_operations.py +0 -585
  929. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_operations.py +0 -156
  930. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_patch.py +0 -20
  931. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_private_endpoint_connections_operations.py +0 -583
  932. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_private_link_resources_operations.py +0 -153
  933. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_queue_operations.py +0 -814
  934. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_queue_services_operations.py +0 -431
  935. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_skus_operations.py +0 -162
  936. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_storage_accounts_operations.py +0 -2400
  937. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_table_operations.py +0 -765
  938. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_table_services_operations.py +0 -431
  939. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_05_01/operations/_usages_operations.py +0 -169
  940. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/__init__.py +0 -26
  941. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/_configuration.py +0 -65
  942. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/_patch.py +0 -20
  943. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/_storage_management_client.py +0 -225
  944. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/_vendor.py +0 -16
  945. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/_version.py +0 -9
  946. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/__init__.py +0 -23
  947. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/_configuration.py +0 -65
  948. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/_patch.py +0 -20
  949. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/_storage_management_client.py +0 -230
  950. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/__init__.py +0 -57
  951. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_blob_containers_operations.py +0 -1838
  952. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
  953. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_blob_services_operations.py +0 -362
  954. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_deleted_accounts_operations.py +0 -194
  955. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_encryption_scopes_operations.py +0 -568
  956. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_file_services_operations.py +0 -328
  957. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_file_shares_operations.py +0 -1003
  958. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_local_users_operations.py +0 -560
  959. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_management_policies_operations.py +0 -349
  960. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_object_replication_policies_operations.py +0 -446
  961. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_operations.py +0 -135
  962. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_patch.py +0 -20
  963. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  964. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_private_link_resources_operations.py +0 -117
  965. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_queue_operations.py +0 -608
  966. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_queue_services_operations.py +0 -328
  967. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_skus_operations.py +0 -136
  968. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_storage_accounts_operations.py +0 -1913
  969. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_table_operations.py +0 -588
  970. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_table_services_operations.py +0 -328
  971. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/aio/operations/_usages_operations.py +0 -139
  972. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/models/__init__.py +0 -443
  973. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/models/_models_py3.py +0 -8093
  974. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/models/_patch.py +0 -20
  975. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/models/_storage_management_client_enums.py +0 -592
  976. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/__init__.py +0 -57
  977. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_blob_containers_operations.py +0 -2370
  978. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_blob_inventory_policies_operations.py +0 -587
  979. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_blob_services_operations.py +0 -464
  980. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_deleted_accounts_operations.py +0 -250
  981. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_encryption_scopes_operations.py +0 -724
  982. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_file_services_operations.py +0 -431
  983. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_file_shares_operations.py +0 -1296
  984. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_local_users_operations.py +0 -758
  985. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_management_policies_operations.py +0 -459
  986. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_object_replication_policies_operations.py +0 -585
  987. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_operations.py +0 -156
  988. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_patch.py +0 -20
  989. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_private_endpoint_connections_operations.py +0 -583
  990. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_private_link_resources_operations.py +0 -153
  991. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_queue_operations.py +0 -814
  992. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_queue_services_operations.py +0 -431
  993. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_skus_operations.py +0 -162
  994. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_storage_accounts_operations.py +0 -2422
  995. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_table_operations.py +0 -765
  996. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_table_services_operations.py +0 -431
  997. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2022_09_01/operations/_usages_operations.py +0 -169
  998. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/__init__.py +0 -26
  999. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/_configuration.py +0 -65
  1000. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/_patch.py +0 -20
  1001. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/_storage_management_client.py +0 -225
  1002. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/_vendor.py +0 -16
  1003. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/_version.py +0 -9
  1004. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/__init__.py +0 -23
  1005. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/_configuration.py +0 -65
  1006. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/_patch.py +0 -20
  1007. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/_storage_management_client.py +0 -230
  1008. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/__init__.py +0 -57
  1009. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_blob_containers_operations.py +0 -1838
  1010. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
  1011. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_blob_services_operations.py +0 -362
  1012. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_deleted_accounts_operations.py +0 -194
  1013. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_encryption_scopes_operations.py +0 -568
  1014. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_file_services_operations.py +0 -328
  1015. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_file_shares_operations.py +0 -1003
  1016. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_local_users_operations.py +0 -560
  1017. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_management_policies_operations.py +0 -349
  1018. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_object_replication_policies_operations.py +0 -446
  1019. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_operations.py +0 -135
  1020. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_patch.py +0 -20
  1021. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  1022. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_private_link_resources_operations.py +0 -117
  1023. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_queue_operations.py +0 -608
  1024. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_queue_services_operations.py +0 -328
  1025. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_skus_operations.py +0 -136
  1026. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_storage_accounts_operations.py +0 -2187
  1027. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_table_operations.py +0 -588
  1028. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_table_services_operations.py +0 -328
  1029. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/aio/operations/_usages_operations.py +0 -139
  1030. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/models/__init__.py +0 -461
  1031. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/models/_models_py3.py +0 -8338
  1032. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/models/_patch.py +0 -20
  1033. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/models/_storage_management_client_enums.py +0 -626
  1034. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/__init__.py +0 -57
  1035. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_blob_containers_operations.py +0 -2398
  1036. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_blob_inventory_policies_operations.py +0 -595
  1037. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_blob_services_operations.py +0 -470
  1038. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_deleted_accounts_operations.py +0 -250
  1039. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_encryption_scopes_operations.py +0 -732
  1040. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_file_services_operations.py +0 -437
  1041. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_file_shares_operations.py +0 -1310
  1042. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_local_users_operations.py +0 -770
  1043. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_management_policies_operations.py +0 -465
  1044. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_object_replication_policies_operations.py +0 -593
  1045. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_operations.py +0 -156
  1046. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_patch.py +0 -20
  1047. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_private_endpoint_connections_operations.py +0 -591
  1048. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_private_link_resources_operations.py +0 -155
  1049. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_queue_operations.py +0 -824
  1050. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_queue_services_operations.py +0 -437
  1051. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_skus_operations.py +0 -162
  1052. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_storage_accounts_operations.py +0 -2796
  1053. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_table_operations.py +0 -775
  1054. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_table_services_operations.py +0 -437
  1055. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_01_01/operations/_usages_operations.py +0 -169
  1056. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/__init__.py +0 -26
  1057. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/_configuration.py +0 -65
  1058. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/_patch.py +0 -20
  1059. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/_storage_management_client.py +0 -256
  1060. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/_vendor.py +0 -16
  1061. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/_version.py +0 -9
  1062. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/__init__.py +0 -23
  1063. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/_configuration.py +0 -65
  1064. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/_patch.py +0 -20
  1065. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/_storage_management_client.py +0 -261
  1066. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/__init__.py +0 -65
  1067. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_containers_operations.py +0 -1838
  1068. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_inventory_policies_operations.py +0 -442
  1069. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_blob_services_operations.py +0 -362
  1070. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_deleted_accounts_operations.py +0 -194
  1071. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_encryption_scopes_operations.py +0 -568
  1072. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_file_services_operations.py +0 -328
  1073. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_file_shares_operations.py +0 -1003
  1074. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_local_users_operations.py +0 -583
  1075. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_management_policies_operations.py +0 -349
  1076. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_network_security_perimeter_configurations_operations.py +0 -342
  1077. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_object_replication_policies_operations.py +0 -446
  1078. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_operations.py +0 -135
  1079. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_patch.py +0 -20
  1080. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_private_endpoint_connections_operations.py +0 -432
  1081. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_private_link_resources_operations.py +0 -117
  1082. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_queue_operations.py +0 -608
  1083. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_queue_services_operations.py +0 -328
  1084. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_skus_operations.py +0 -136
  1085. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_accounts_operations.py +0 -2187
  1086. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py +0 -170
  1087. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py +0 -164
  1088. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py +0 -802
  1089. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_table_operations.py +0 -588
  1090. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_table_services_operations.py +0 -328
  1091. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/aio/operations/_usages_operations.py +0 -139
  1092. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/models/__init__.py +0 -537
  1093. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/models/_models_py3.py +0 -9703
  1094. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/models/_patch.py +0 -20
  1095. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/models/_storage_management_client_enums.py +0 -706
  1096. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/__init__.py +0 -65
  1097. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_blob_containers_operations.py +0 -2398
  1098. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_blob_inventory_policies_operations.py +0 -595
  1099. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_blob_services_operations.py +0 -470
  1100. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_deleted_accounts_operations.py +0 -250
  1101. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_encryption_scopes_operations.py +0 -732
  1102. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_file_services_operations.py +0 -437
  1103. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_file_shares_operations.py +0 -1310
  1104. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_local_users_operations.py +0 -808
  1105. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_management_policies_operations.py +0 -465
  1106. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_network_security_perimeter_configurations_operations.py +0 -463
  1107. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_object_replication_policies_operations.py +0 -593
  1108. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_operations.py +0 -156
  1109. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_patch.py +0 -20
  1110. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_private_endpoint_connections_operations.py +0 -591
  1111. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_private_link_resources_operations.py +0 -155
  1112. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_queue_operations.py +0 -824
  1113. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_queue_services_operations.py +0 -437
  1114. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_skus_operations.py +0 -162
  1115. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_storage_accounts_operations.py +0 -2796
  1116. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py +0 -227
  1117. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py +0 -212
  1118. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py +0 -1018
  1119. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_table_operations.py +0 -775
  1120. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_table_services_operations.py +0 -437
  1121. azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2023_05_01/operations/_usages_operations.py +0 -169
  1122. azure-mgmt-storage-21.2.0/azure_mgmt_storage.egg-info/PKG-INFO +0 -776
  1123. azure-mgmt-storage-21.2.0/azure_mgmt_storage.egg-info/SOURCES.txt +0 -992
  1124. azure-mgmt-storage-21.2.0/azure_mgmt_storage.egg-info/requires.txt +0 -3
  1125. azure-mgmt-storage-21.2.0/setup.py +0 -82
  1126. azure-mgmt-storage-21.2.0/tests/_aio_testcase.py +0 -33
  1127. azure-mgmt-storage-21.2.0/tests/conftest.py +0 -32
  1128. azure-mgmt-storage-21.2.0/tests/disable_test_cli_mgmt_storage.py +0 -734
  1129. azure-mgmt-storage-21.2.0/tests/disable_test_cli_mgmt_storage_async.py +0 -688
  1130. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/LICENSE +0 -0
  1131. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/MANIFEST.in +0 -0
  1132. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/README.md +0 -0
  1133. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/__init__.py +0 -0
  1134. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/__init__.py +0 -0
  1135. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/__init__.py +0 -0
  1136. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/_configuration.py +0 -0
  1137. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/aio/__init__.py +0 -0
  1138. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/aio/_configuration.py +0 -0
  1139. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/py.typed +0 -0
  1140. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01}/_patch.py +0 -0
  1141. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01}/aio/_patch.py +0 -0
  1142. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01}/aio/operations/_patch.py +0 -0
  1143. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01}/models/_patch.py +0 -0
  1144. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/v2016_01_01/models/_storage_management_client_enums.py +0 -0
  1145. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2015_06_15 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2016_01_01}/operations/_patch.py +0 -0
  1146. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01}/_patch.py +0 -0
  1147. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01}/aio/_patch.py +0 -0
  1148. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01}/aio/operations/_patch.py +0 -0
  1149. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01}/models/_patch.py +0 -0
  1150. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure/mgmt/storage/v2017_10_01/models/_storage_management_enums.py +0 -0
  1151. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_01_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2017_10_01}/operations/_patch.py +0 -0
  1152. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01}/_patch.py +0 -0
  1153. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01}/aio/_patch.py +0 -0
  1154. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01}/aio/operations/_patch.py +0 -0
  1155. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01}/models/_patch.py +0 -0
  1156. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2016_12_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2019_06_01}/operations/_patch.py +0 -0
  1157. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/aio/operations → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01}/_patch.py +0 -0
  1158. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01/models → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio}/_patch.py +0 -0
  1159. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_06_01 → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/aio}/operations/_patch.py +0 -0
  1160. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/aio/operations → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/models}/_patch.py +0 -0
  1161. {azure-mgmt-storage-21.2.0/azure/mgmt/storage/v2017_10_01/models → azure_mgmt_storage-22.0.0/azure/mgmt/storage/v2023_05_01/operations}/_patch.py +0 -0
  1162. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure_mgmt_storage.egg-info/dependency_links.txt +0 -0
  1163. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure_mgmt_storage.egg-info/not-zip-safe +0 -0
  1164. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/azure_mgmt_storage.egg-info/top_level.txt +0 -0
  1165. {azure-mgmt-storage-21.2.0 → azure_mgmt_storage-22.0.0}/setup.cfg +0 -0
@@ -0,0 +1,704 @@
1
+ # Release History
2
+
3
+ ## 22.0.0 (2025-01-15)
4
+
5
+ ### Breaking Changes
6
+ - 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.
7
+ - Removed operation UsageOperations.list_by_location
8
+
9
+ ## 21.2.1 (2024-06-27)
10
+
11
+ ### Bugs Fixed
12
+
13
+ - Fix signature `maxpagesize` type of Operation StorageTaskAssignmentInstancesReportOperations.list from str to int
14
+ - Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsInstancesReportOperations.list from str to int
15
+ - Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsOperations.list from str to int
16
+
17
+ ## 21.2.0 (2024-06-17)
18
+
19
+ ### Features Added
20
+
21
+ - Added operation group NetworkSecurityPerimeterConfigurationsOperations
22
+ - Added operation group StorageTaskAssignmentInstancesReportOperations
23
+ - Added operation group StorageTaskAssignmentsInstancesReportOperations
24
+ - Added operation group StorageTaskAssignmentsOperations
25
+ - Model LocalUser has a new parameter allow_acl_authorization
26
+ - Model LocalUser has a new parameter extended_groups
27
+ - Model LocalUser has a new parameter group_id
28
+ - Model LocalUser has a new parameter is_nf_sv3_enabled
29
+ - Model LocalUser has a new parameter user_id
30
+ - Model LocalUsers has a new parameter next_link
31
+ - Model StorageAccount has a new parameter enable_extended_groups
32
+ - Model StorageAccountCreateParameters has a new parameter enable_extended_groups
33
+ - Model StorageAccountUpdateParameters has a new parameter enable_extended_groups
34
+ - Operation LocalUsersOperations.list has a new optional parameter filter
35
+ - Operation LocalUsersOperations.list has a new optional parameter include
36
+ - Operation LocalUsersOperations.list has a new optional parameter maxpagesize
37
+
38
+ ## 21.1.0 (2023-08-18)
39
+
40
+ ### Features Added
41
+
42
+ - Added operation StorageAccountsOperations.begin_customer_initiated_migration
43
+ - Added operation StorageAccountsOperations.get_customer_initiated_migration
44
+ - Model BlobInventoryPolicyFilter has a new parameter creation_time
45
+ - Model GeoReplicationStats has a new parameter can_planned_failover
46
+ - Model GeoReplicationStats has a new parameter post_failover_redundancy
47
+ - Model GeoReplicationStats has a new parameter post_planned_failover_redundancy
48
+ - Model StorageAccount has a new parameter account_migration_in_progress
49
+ - Model StorageAccount has a new parameter is_sku_conversion_blocked
50
+
51
+ ## 21.1.0b1 (2023-02-20)
52
+
53
+ ### Other Changes
54
+
55
+ - Added generated samples in github repo
56
+ - Drop support for python<3.7.0
57
+
58
+ ## 21.0.0 (2022-11-15)
59
+
60
+ ### Features Added
61
+
62
+ - Model ManagementPolicyBaseBlob has a new parameter tier_to_cold
63
+ - Model ManagementPolicyBaseBlob has a new parameter tier_to_hot
64
+ - Model ManagementPolicySnapShot has a new parameter tier_to_cold
65
+ - Model ManagementPolicySnapShot has a new parameter tier_to_hot
66
+ - Model ManagementPolicyVersion has a new parameter tier_to_cold
67
+ - Model ManagementPolicyVersion has a new parameter tier_to_hot
68
+
69
+ ### Breaking Changes
70
+
71
+ - Operation EncryptionScopesOperations.list has a new parameter filter
72
+ - Operation EncryptionScopesOperations.list has a new parameter include
73
+ - Operation EncryptionScopesOperations.list has a new parameter maxpagesize
74
+ - Operation StorageAccountsOperations.begin_failover has a new parameter failover_type
75
+
76
+ ## 20.1.0 (2022-08-09)
77
+
78
+ **Features**
79
+
80
+ - Added model AllowedMethods
81
+ - Added model LeaseContainerRequestEnum
82
+
83
+ ## 20.0.0 (2022-04-06)
84
+
85
+ **Features**
86
+
87
+ - Model BlobInventoryPolicyFilter has a new parameter exclude_prefix
88
+ - Model BlobInventoryPolicyFilter has a new parameter include_deleted
89
+ - Model BlobInventoryPolicySchema has a new parameter destination
90
+ - Model DateAfterCreation has a new parameter days_after_last_tier_change_greater_than
91
+ - Model DateAfterModification has a new parameter days_after_creation_greater_than
92
+ - Model DateAfterModification has a new parameter days_after_last_tier_change_greater_than
93
+ - Model DeleteRetentionPolicy has a new parameter allow_permanent_delete
94
+ - Model KeyVaultProperties has a new parameter current_versioned_key_expiration_timestamp
95
+ - Model StorageAccount has a new parameter dns_endpoint_type
96
+ - Model StorageAccount has a new parameter storage_account_sku_conversion_status
97
+ - Model StorageAccountCreateParameters has a new parameter dns_endpoint_type
98
+ - Model StorageAccountUpdateParameters has a new parameter dns_endpoint_type
99
+ - Model Table has a new parameter signed_identifiers
100
+
101
+ **Breaking changes**
102
+
103
+ - Operation TableOperations.create has a new signature
104
+ - Operation TableOperations.update has a new signature
105
+
106
+ ## 19.1.0 (2022-02-15)
107
+
108
+ **Features**
109
+
110
+ - Added operation group LocalUsersOperations
111
+ - Model ActiveDirectoryProperties has a new parameter account_type
112
+ - Model ActiveDirectoryProperties has a new parameter sam_account_name
113
+ - Model EncryptionIdentity has a new parameter encryption_federated_identity_client_id
114
+ - Model StorageAccount has a new parameter allowed_copy_scope
115
+ - Model StorageAccount has a new parameter is_local_user_enabled
116
+ - Model StorageAccount has a new parameter is_sftp_enabled
117
+ - Model StorageAccountCreateParameters has a new parameter allowed_copy_scope
118
+ - Model StorageAccountCreateParameters has a new parameter is_local_user_enabled
119
+ - Model StorageAccountCreateParameters has a new parameter is_sftp_enabled
120
+ - Model StorageAccountUpdateParameters has a new parameter allowed_copy_scope
121
+ - Model StorageAccountUpdateParameters has a new parameter is_local_user_enabled
122
+ - Model StorageAccountUpdateParameters has a new parameter is_sftp_enabled
123
+
124
+ ## 19.0.0 (2021-09-14)
125
+
126
+ **Features**
127
+
128
+ - Model BlobContainer has a new parameter enable_nfs_v3_root_squash
129
+ - Model BlobContainer has a new parameter enable_nfs_v3_all_squash
130
+ - Model UpdateHistoryProperty has a new parameter allow_protected_append_writes
131
+ - Model UpdateHistoryProperty has a new parameter allow_protected_append_writes_all
132
+ - Model StorageAccountUpdateParameters has a new parameter default_to_o_auth_authentication
133
+ - Model StorageAccountUpdateParameters has a new parameter public_network_access
134
+ - Model StorageAccountUpdateParameters has a new parameter immutable_storage_with_versioning
135
+ - Model ImmutabilityPolicy has a new parameter allow_protected_append_writes_all
136
+ - Model StorageAccountCreateParameters has a new parameter default_to_o_auth_authentication
137
+ - Model StorageAccountCreateParameters has a new parameter public_network_access
138
+ - Model StorageAccountCreateParameters has a new parameter immutable_storage_with_versioning
139
+ - Model ListContainerItem has a new parameter enable_nfs_v3_root_squash
140
+ - Model ListContainerItem has a new parameter enable_nfs_v3_all_squash
141
+ - Model LegalHoldProperties has a new parameter protected_append_writes_history
142
+ - Model ImmutabilityPolicyProperties has a new parameter allow_protected_append_writes_all
143
+ - Model StorageAccount has a new parameter default_to_o_auth_authentication
144
+ - Model StorageAccount has a new parameter public_network_access
145
+ - Model StorageAccount has a new parameter immutable_storage_with_versioning
146
+ - Model LegalHold has a new parameter allow_protected_append_writes_all
147
+ - Added operation StorageAccountsOperations.begin_abort_hierarchical_namespace_migration
148
+ - Added operation StorageAccountsOperations.begin_hierarchical_namespace_migration
149
+
150
+ **Breaking changes**
151
+
152
+ - Model AccessPolicy has a new signature
153
+
154
+ ## 18.0.0 (2021-05-13)
155
+
156
+ **Features**
157
+
158
+ - Model StorageAccountUpdateParameters has a new parameter allow_cross_tenant_replication
159
+ - Model BlobContainer has a new parameter immutable_storage_with_versioning
160
+ - Model FileShareItem has a new parameter lease_state
161
+ - Model FileShareItem has a new parameter lease_duration
162
+ - Model FileShareItem has a new parameter lease_status
163
+ - Model FileShareItem has a new parameter signed_identifiers
164
+ - Model FileShare has a new parameter lease_state
165
+ - Model FileShare has a new parameter lease_duration
166
+ - Model FileShare has a new parameter lease_status
167
+ - Model FileShare has a new parameter signed_identifiers
168
+ - Model StorageAccountCreateParameters has a new parameter allow_cross_tenant_replication
169
+ - Model AzureFilesIdentityBasedAuthentication has a new parameter default_share_permission
170
+ - Model StorageAccount has a new parameter allow_cross_tenant_replication
171
+ - Model ListContainerItem has a new parameter immutable_storage_with_versioning
172
+ - Added operation BlobContainersOperations.begin_object_level_worm
173
+ - Added operation FileSharesOperations.lease
174
+
175
+ **Breaking changes**
176
+
177
+ - Operation FileSharesOperations.delete has a new signature
178
+ - Model BlobInventoryPolicySchema no longer has parameter destination
179
+ - Model BlobInventoryPolicyRule has a new required parameter destination
180
+ - Model BlobInventoryPolicyDefinition has a new signature
181
+
182
+ ## 17.1.0 (2021-04-13)
183
+
184
+ **Features**
185
+
186
+ - Model StorageAccountKey has a new parameter creation_time
187
+ - Model StorageAccountUpdateParameters has a new parameter sas_policy
188
+ - Model StorageAccountUpdateParameters has a new parameter key_policy
189
+ - Model StorageAccountCreateParameters has a new parameter sas_policy
190
+ - Model StorageAccountCreateParameters has a new parameter key_policy
191
+ - Model StorageAccount has a new parameter sas_policy
192
+ - Model StorageAccount has a new parameter key_policy
193
+ - Model StorageAccount has a new parameter key_creation_time
194
+
195
+ ## 17.0.0 (2021-02-20)
196
+
197
+ **Features**
198
+
199
+ - Model Encryption has a new parameter encryption_identity
200
+ - Model Identity has a new parameter user_assigned_identities
201
+ - Model ManagementPolicyBaseBlob has a new parameter enable_auto_tier_to_hot_from_cool
202
+ - Model EncryptionScope has a new parameter require_infrastructure_encryption
203
+ - Model StorageAccount has a new parameter extended_location
204
+ - Model StorageAccount has a new parameter allow_shared_key_access
205
+ - Model StorageAccount has a new parameter enable_nfs_v3
206
+ - Model EncryptionScopeKeyVaultProperties has a new parameter current_versioned_key_identifier
207
+ - Model EncryptionScopeKeyVaultProperties has a new parameter last_key_rotation_timestamp
208
+ - Model DateAfterModification has a new parameter days_after_last_access_time_greater_than
209
+ - Model StorageAccountUpdateParameters has a new parameter allow_shared_key_access
210
+ - Model BlobServiceProperties has a new parameter last_access_time_tracking_policy
211
+ - Model ChangeFeed has a new parameter retention_in_days
212
+ - Model FileShare has a new parameter snapshot_time
213
+ - Model ManagementPolicyAction has a new parameter version
214
+ - Model StorageAccountCreateParameters has a new parameter extended_location
215
+ - Model StorageAccountCreateParameters has a new parameter allow_shared_key_access
216
+ - Model StorageAccountCreateParameters has a new parameter enable_nfs_v3
217
+ - Model FileShareItem has a new parameter snapshot_time
218
+ - Model FileServiceProperties has a new parameter protocol_settings
219
+ - Model ManagementPolicySnapShot has a new parameter tier_to_archive
220
+ - Model ManagementPolicySnapShot has a new parameter tier_to_cool
221
+ - Model NetworkRuleSet has a new parameter resource_access_rules
222
+ - Added operation group BlobInventoryPoliciesOperations
223
+ - Added operation group DeletedAccountsOperations
224
+
225
+ **Breaking changes**
226
+
227
+ - Operation FileSharesOperations.create has a new signature
228
+ - Operation FileSharesOperations.delete has a new signature
229
+ - Operation FileSharesOperations.get has a new signature
230
+ - Model ErrorResponse has a new signature
231
+
232
+ ## 16.0.0 (2020-09-15)
233
+
234
+ **Features**
235
+
236
+ - Model RestorePolicyProperties has a new parameter min_restore_time
237
+
238
+ **Breaking changes**
239
+
240
+ - Operation ManagementPoliciesOperations.create_or_update has a new signature
241
+ - Operation ManagementPoliciesOperations.delete has a new signature
242
+ - Operation ManagementPoliciesOperations.get has a new signature
243
+
244
+ ## 16.0.0b2 (2020-06-29)
245
+
246
+ This is beta preview version.
247
+ For detailed changelog please refer to equivalent stable version 11.1.0 (https://pypi.org/project/azure-mgmt-storage/11.1.0/)
248
+
249
+ ## 16.0.0b1 (2020-06-17)
250
+
251
+ This is beta preview version.
252
+
253
+ This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).
254
+
255
+ **General breaking changes**
256
+
257
+ - Credential system has been completly revamped:
258
+
259
+ - `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/
260
+ - `credentials` parameter has been renamed `credential`
261
+
262
+ - 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
263
+ 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)
264
+ - You can't import a `version` module anymore, use `__version__` instead
265
+ - Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.
266
+ - Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).
267
+ - Most of the operation kwarg have changed. Some of the most noticeable:
268
+
269
+ - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user
270
+ - For a complete set of
271
+ 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)
272
+
273
+ **General new features**
274
+
275
+ - Type annotations support using `typing`. SDKs are mypy ready.
276
+ - This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.
277
+ - 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.
278
+
279
+ ## 10.0.0 (2020-05-07)
280
+
281
+ **Features**
282
+
283
+ - Model ManagementPolicyFilter has a new parameter blob_index_match
284
+ - Model FileShareItem has a new parameter access_tier_status
285
+ - Model FileShareItem has a new parameter share_usage_bytes
286
+ - Model FileShareItem has a new parameter deleted
287
+ - Model FileShareItem has a new parameter deleted_time
288
+ - Model FileShareItem has a new parameter access_tier
289
+ - Model FileShareItem has a new parameter version
290
+ - Model FileShareItem has a new parameter root_squash
291
+ - Model FileShareItem has a new parameter enabled_protocols
292
+ - Model FileShareItem has a new parameter access_tier_change_time
293
+ - Model FileShareItem has a new parameter remaining_retention_days
294
+ - Model RestorePolicyProperties has a new parameter last_enabled_time
295
+ - Model FileShare has a new parameter access_tier_status
296
+ - Model FileShare has a new parameter share_usage_bytes
297
+ - Model FileShare has a new parameter deleted
298
+ - Model FileShare has a new parameter deleted_time
299
+ - Model FileShare has a new parameter access_tier
300
+ - Model FileShare has a new parameter version
301
+ - Model FileShare has a new parameter root_squash
302
+ - Model FileShare has a new parameter enabled_protocols
303
+ - Model FileShare has a new parameter access_tier_change_time
304
+ - Model FileShare has a new parameter remaining_retention_days
305
+ - Added operation FileSharesOperations.restore
306
+ - Added operation PrivateEndpointConnectionsOperations.list
307
+ - Added operation group ObjectReplicationPoliciesOperations
308
+
309
+ **Breaking changes**
310
+
311
+ - Operation FileSharesOperations.update has a new signature
312
+ - Operation FileSharesOperations.create has a new signature
313
+ - Operation FileSharesOperations.get has a new signature
314
+ - Operation FileSharesOperations.list has a new signature
315
+ - Operation FileSharesOperations.update has a new signature
316
+ - Operation FileSharesOperations.create has a new signature
317
+
318
+ ## 9.0.0 (2020-03-27)
319
+
320
+ **Features**
321
+
322
+ - Model BlobContainer has a new parameter default_encryption_scope
323
+ - Model BlobContainer has a new parameter deny_encryption_scope_override
324
+ - Model ListContainerItem has a new parameter default_encryption_scope
325
+ - Model ListContainerItem has a new parameter deny_encryption_scope_override
326
+ - Model KeyVaultProperties has a new parameter last_key_rotation_timestamp
327
+ - Model KeyVaultProperties has a new parameter current_versioned_key_identifier
328
+
329
+ **Breaking changes**
330
+
331
+ - Operation BlobContainersOperations.update has a new signature
332
+ - Operation BlobContainersOperations.create has a new signature
333
+ - Operation BlobContainersOperations.update has a new signature
334
+ - Operation BlobContainersOperations.create has a new signature
335
+
336
+ ## 8.0.0 (2020-02-27)
337
+
338
+ **Features**
339
+
340
+ - Model ImmutabilityPolicyProperties has a new parameter allow_protected_append_writes
341
+ - Model BlobServiceProperties has a new parameter container_delete_retention_policy
342
+ - Model BlobServiceProperties has a new parameter is_versioning_enabled
343
+ - Model ImmutabilityPolicy has a new parameter allow_protected_append_writes
344
+ - Added operation group EncryptionScopesOperations
345
+
346
+ **Breaking changes**
347
+
348
+ - Operation BlobContainersOperations.create_or_update_immutability_policy has a new signature
349
+ - Operation BlobContainersOperations.extend_immutability_policy has a new signature
350
+ - Operation BlobContainersOperations.create_or_update_immutability_policy has a new signature
351
+
352
+ ## 7.2.0 (2020-02-10)
353
+
354
+ **Features**
355
+
356
+ - Model BlobServiceProperties has a new parameter restore_policy
357
+ - Model StorageAccount has a new parameter blob_restore_status
358
+ - Added operation StorageAccountsOperations.restore_blob_ranges
359
+
360
+ ## 7.1.0 (2020-01-09)
361
+
362
+ **Features**
363
+
364
+ - Model EncryptionService has a new parameter key_type
365
+
366
+ ## 7.0.0 (2019-12-04)
367
+
368
+ **Features**
369
+
370
+ - Model StorageAccountCreateParameters has a new parameter
371
+ routing_preference
372
+ - Model BlobServiceProperties has a new parameter sku
373
+ - Model FileServiceProperties has a new parameter
374
+ share_delete_retention_policy
375
+ - Model FileServiceProperties has a new parameter sku
376
+ - Model StorageAccount has a new parameter routing_preference
377
+ - Model StorageAccountUpdateParameters has a new parameter
378
+ routing_preference
379
+ - Model Endpoints has a new parameter internet_endpoints
380
+ - Model Endpoints has a new parameter microsoft_endpoints
381
+
382
+ **Breaking changes**
383
+
384
+ - Operation FileServicesOperations.set_service_properties has a new
385
+ signature
386
+ - Model Sku has a new signature
387
+
388
+ ## 6.0.0 (2019-10-25)
389
+
390
+ **Features**
391
+
392
+ - Model StorageAccount has a new parameter
393
+ private_endpoint_connections
394
+ - Added operation group PrivateEndpointConnectionsOperations
395
+ - Added operation group PrivateLinkResourcesOperations
396
+
397
+ **Breaking changes**
398
+
399
+ - Operation FileSharesOperations.list has a new signature
400
+ - Operation BlobContainersOperations.list has a new signature
401
+
402
+ ## 5.0.0 (2019-10-21)
403
+
404
+ **Features**
405
+
406
+ - Model AzureFilesIdentityBasedAuthentication has a new parameter
407
+ active_directory_properties
408
+
409
+ **Breaking changes**
410
+
411
+ - Operation StorageAccountsOperations.list_keys has a new signature
412
+
413
+ ## 4.2.0 (2019-10-07)
414
+
415
+ **Features**
416
+
417
+ - Model StorageAccountCreateParameters has a new parameter
418
+ large_file_shares_state
419
+ - Model StorageAccountUpdateParameters has a new parameter
420
+ large_file_shares_state
421
+ - Model StorageAccount has a new parameter large_file_shares_state
422
+
423
+ ## 4.1.0 (2019-09-27)
424
+
425
+ **Features**
426
+
427
+ - Model BlobServiceProperties has a new parameter change_feed
428
+ - Added operation BlobServicesOperations.list
429
+ - Added operation group FileServicesOperations
430
+ - Added operation group FileSharesOperations
431
+
432
+ ## 4.0.0 (2019-06-12)
433
+
434
+ **Features**
435
+
436
+ - Model StorageAccount has a new parameter
437
+ azure_files_identity_based_authentication
438
+ - Model StorageAccountCreateParameters has a new parameter
439
+ azure_files_identity_based_authentication
440
+ - Model StorageAccountUpdateParameters has a new parameter
441
+ azure_files_identity_based_authentication
442
+
443
+ **Breaking changes**
444
+
445
+ - Model StorageAccount no longer has parameter
446
+ enable_azure_files_aad_integration
447
+ - Model StorageAccountCreateParameters no longer has parameter
448
+ enable_azure_files_aad_integration
449
+ - Model StorageAccountUpdateParameters no longer has parameter
450
+ enable_azure_files_aad_integration
451
+
452
+ **Breaking changes**
453
+
454
+ **General Breaking changes**
455
+
456
+ This version uses a next-generation code generator that *might*
457
+ introduce breaking changes while using imports. In summary, some modules
458
+ were incorrectly visible/importable and have been renamed. This fixed
459
+ several issues caused by usage of classes that were not supposed to be
460
+ used in the first place.
461
+
462
+ - StorageManagementClient cannot be imported from
463
+ `azure.mgmt.storage.storage_management_client` anymore (import
464
+ from `azure.mgmt.storage` works like before)
465
+ - StorageManagementClientConfiguration import has been moved from
466
+ `azure.mgmt.storage.network_management_client` to
467
+ `azure.mgmt.storage`
468
+ - StorageManagementClient cannot be imported from
469
+ `azure.mgmt.storage.v20xx_yy_zz.network_management_client`
470
+ anymore (import from `azure.mgmt.storage.v20xx_yy_zz` works like
471
+ before)
472
+ - StorageManagementClientConfiguration import has been moved from
473
+ `azure.mgmt.storage.v20xx_yy_zz.network_management_client` to
474
+ `azure.mgmt.storage.v20xx_yy_zz`
475
+ - A model `MyClass` from a "models" sub-module cannot be imported
476
+ anymore using `azure.mgmt.storage.v20xx_yy_zz.models.my_class`
477
+ (import from `azure.mgmt.storage.v20xx_yy_zz.models` works like
478
+ before)
479
+ - An operation class `MyClassOperations` from an `operations`
480
+ sub-module cannot be imported anymore using
481
+ `azure.mgmt.storage.v20xx_yy_zz.operations.my_class_operations`
482
+ (import from `azure.mgmt.storage.v20xx_yy_zz.operations` works
483
+ like before)
484
+
485
+ Last but not least, HTTP connection pooling is now enabled by default.
486
+ You should always use a client as a context manager, or call close(), or
487
+ use no more than one storage mgmt client per process.
488
+
489
+ ## 3.3.0 (2019-04-22)
490
+
491
+ **Features**
492
+
493
+ - Model BlobServiceProperties has a new parameter
494
+ automatic_snapshot_policy_enabled
495
+ - Added operation
496
+ StorageAccountsOperations.revoke_user_delegation_keys
497
+ - Added operation BlobContainerOperations.lease
498
+
499
+ ## 3.2.0 (2019-04-10)
500
+
501
+ **Features**
502
+
503
+ - Added operation BlobContainersOperations.lease for API versions
504
+ 2018_02_01 and later
505
+
506
+ ## 3.1.1 (2019-01-02)
507
+
508
+ **Bugfixes**
509
+
510
+ - Fix #4013 - "use_sub_domain" should be "use_sub_domain_name"
511
+
512
+ ## 3.1.0 (2018-11-15)
513
+
514
+ **Features**
515
+
516
+ - Model StorageAccount has a new parameter geo_replication_stats
517
+ - Model StorageAccount has a new parameter failover_in_progress
518
+ - Added operation StorageAccountsOperations.failover
519
+ - Added operation group BlobServicesOperations
520
+ - Operation StorageAccountsOperations.get_properties now support
521
+ expand parameter
522
+
523
+ ## 3.0.0 (2018-09-27)
524
+
525
+ **Features**
526
+
527
+ - Model StorageAccount has a new parameter
528
+ enable_azure_files_aad_integration
529
+ - Model StorageAccountCreateParameters has a new parameter
530
+ enable_azure_files_aad_integration
531
+ - Model StorageAccountUpdateParameters has a new parameter
532
+ enable_azure_files_aad_integration
533
+ - Added operation group ManagementPoliciesOperations. This is
534
+ considered preview and breaking changes might happen.
535
+
536
+ **Breaking changes**
537
+
538
+ - "usage" has been renamed "usages", and the "list" operation has been
539
+ replaced by "list_by_location". Ability to make usage requests
540
+ locally is not available anymore.
541
+
542
+ **Note**
543
+
544
+ - azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based
545
+ namespace package)
546
+
547
+ ## 2.0.0 (2018-08-01)
548
+
549
+ **Bugfixes**
550
+
551
+ - Set the signed resource as optional instead of required
552
+
553
+ ## 2.0.0rc4 (2018-06-26)
554
+
555
+ **Features (2018-02-01/2018-03-01-preview)**
556
+
557
+ Support HDFS feature and web endpoint in Account properties
558
+
559
+ - Model StorageAccountCreateParameters has a new parameter
560
+ is_hns_enabled
561
+ - Model Endpoints has a new parameter web
562
+ - Model Endpoints has a new parameter dfs
563
+ - Model StorageAccount has a new parameter is_hns_enabled
564
+
565
+ ## 2.0.0rc3 (2018-05-30)
566
+
567
+ **Features**
568
+
569
+ - Add preview version of management policy (API 2018-03-01-preview
570
+ only). This is considered preview and breaking changes might happen
571
+ if you opt in for that Api Version.
572
+
573
+ **Bugfixes**
574
+
575
+ - Correct azure-common dependency
576
+
577
+ ## 2.0.0rc2 (2018-05-16)
578
+
579
+ **Bugfixes**
580
+
581
+ - Fix default "models" import to 2018-02-01
582
+
583
+ ## 2.0.0rc1 (2018-05-11)
584
+
585
+ **Features**
586
+
587
+ - Add blob containers operations, immutability policy
588
+ - Add usage.list_by_location
589
+ - Client now supports Azure profiles.
590
+ - Client class can be used as a context manager to keep the underlying
591
+ HTTP session open for performance
592
+
593
+ **General Breaking changes**
594
+
595
+ This version uses a next-generation code generator that *might*
596
+ introduce breaking changes.
597
+
598
+ - Model signatures now use only keyword-argument syntax. All
599
+ positional arguments must be re-written as keyword-arguments. To
600
+ keep auto-completion in most cases, models are now generated for
601
+ Python 2 and Python 3. Python 3 uses the "*" syntax for
602
+ keyword-only arguments.
603
+ - Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to
604
+ improve the behavior when unrecognized enum values are encountered.
605
+ While this is not a breaking change, the distinctions are important,
606
+ and are documented here:
607
+ <https://docs.python.org/3/library/enum.html#others> At a glance:
608
+ - "is" should not be used at all.
609
+ - "format" will return the string value, where "%s" string
610
+ formatting will return `NameOfEnum.stringvalue`. Format syntax
611
+ should be prefered.
612
+ - New Long Running Operation:
613
+ - Return type changes from
614
+ `msrestazure.azure_operation.AzureOperationPoller` to
615
+ `msrest.polling.LROPoller`. External API is the same.
616
+ - Return type is now **always** a `msrest.polling.LROPoller`,
617
+ regardless of the optional parameters used.
618
+ - The behavior has changed when using `raw=True`. Instead of
619
+ returning the initial call result as `ClientRawResponse`,
620
+ without polling, now this returns an LROPoller. After polling,
621
+ the final resource will be returned as a `ClientRawResponse`.
622
+ - New `polling` parameter. The default behavior is
623
+ `Polling=True` which will poll using ARM algorithm. When
624
+ `Polling=False`, the response of the initial call will be
625
+ returned without polling.
626
+ - `polling` parameter accepts instances of subclasses of
627
+ `msrest.polling.PollingMethod`.
628
+ - `add_done_callback` will no longer raise if called after
629
+ polling is finished, but will instead execute the callback right
630
+ away.
631
+
632
+ ## 1.5.0 (2017-12-12)
633
+
634
+ **Features**
635
+
636
+ - Add StorageV2 as valid kind
637
+ - Add official support for API version 2017-10-01
638
+
639
+ ## 1.4.0 (2017-09-26)
640
+
641
+ **Bug fixes**
642
+
643
+ - Add skus operations group to the generic client
644
+
645
+ **Features**
646
+
647
+ - Add official support for API version 2016-01-01
648
+
649
+ ## 1.3.0 (2017-09-08)
650
+
651
+ **Features**
652
+
653
+ - Adds list_skus operation (2017-06-01)
654
+
655
+ **Breaking changes**
656
+
657
+ - Rename the preview attribute "network_acls" to "network_rule_set"
658
+
659
+ ## 1.2.1 (2017-08-14)
660
+
661
+ **Bugfixes**
662
+
663
+ - Remove "tests" packaged by mistake (#1365)
664
+
665
+ ## 1.2.0 (2017-07-19)
666
+
667
+ **Features**
668
+
669
+ - Api version 2017-06-01 is now the default
670
+ - This API version adds Network ACLs objects (2017-06-01 as preview)
671
+
672
+ ## 1.1.0 (2017-06-28)
673
+
674
+ - Added support for https traffic only (2016-12-01)
675
+
676
+ ## 1.0.0 (2017-05-15)
677
+
678
+ - Tag 1.0.0rc1 as stable (same content)
679
+
680
+ ## 1.0.0rc1 (2017-04-11)
681
+
682
+ **Features**
683
+
684
+ To help customers with sovereign clouds (not general Azure), this
685
+ version has official multi ApiVersion support for 2015-06-15 and
686
+ 2016-12-01
687
+
688
+ ## 0.31.0 (2017-01-19)
689
+
690
+ - New `list_account_sas` operation
691
+ - New `list_service_sas` operation
692
+ - Name syntax are now checked before RestAPI call, not the server
693
+ (exception changed)
694
+
695
+ Based on API version 2016-12-01.
696
+
697
+ ## 0.30.0 (2016-11-14)
698
+
699
+ - Initial release. Based on API version 2016-01-01 Note that this is
700
+ the same content as 0.30.0rc6, committed as 0.30.0.
701
+
702
+ ## 0.20.0 (2015-08-31)
703
+
704
+ - Initial preview release. Based on API version 2015-05-01-preview.