azure-mgmt-storage 21.2.1__tar.gz → 22.1.0__tar.gz

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