azure-mgmt-storage 22.0.0__py3-none-any.whl → 22.1.0__py3-none-any.whl

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 (79) hide show
  1. azure/mgmt/storage/_storage_management_client.py +76 -76
  2. azure/mgmt/storage/_version.py +1 -1
  3. azure/mgmt/storage/aio/_storage_management_client.py +76 -76
  4. azure/mgmt/storage/models.py +1 -1
  5. azure/mgmt/storage/v2016_01_01/_version.py +1 -1
  6. azure/mgmt/storage/v2017_10_01/_version.py +1 -1
  7. azure/mgmt/storage/v2019_06_01/_version.py +1 -1
  8. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/_configuration.py +2 -2
  9. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/_storage_management_client.py +49 -49
  10. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/_version.py +1 -1
  11. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/_configuration.py +2 -2
  12. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/_storage_management_client.py +49 -49
  13. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_blob_containers_operations.py +57 -57
  14. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_blob_inventory_policies_operations.py +17 -17
  15. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_blob_services_operations.py +11 -11
  16. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_deleted_accounts_operations.py +5 -5
  17. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_encryption_scopes_operations.py +18 -18
  18. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_file_services_operations.py +173 -12
  19. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_file_shares_operations.py +27 -27
  20. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_local_users_operations.py +17 -17
  21. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_management_policies_operations.py +15 -15
  22. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_network_security_perimeter_configurations_operations.py +7 -7
  23. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_object_replication_policies_operations.py +12 -12
  24. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_operations.py +3 -3
  25. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_private_endpoint_connections_operations.py +12 -12
  26. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_private_link_resources_operations.py +3 -3
  27. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_queue_operations.py +18 -18
  28. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_queue_services_operations.py +11 -11
  29. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_skus_operations.py +3 -3
  30. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_storage_accounts_operations.py +69 -69
  31. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_storage_task_assignment_instances_report_operations.py +3 -3
  32. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_storage_task_assignments_instances_report_operations.py +3 -3
  33. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_storage_task_assignments_operations.py +21 -21
  34. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_table_operations.py +18 -18
  35. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_table_services_operations.py +11 -11
  36. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_usages_operations.py +3 -3
  37. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/models/__init__.py +22 -0
  38. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/models/_models_py3.py +1132 -526
  39. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/models/_storage_management_client_enums.py +6 -0
  40. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_blob_containers_operations.py +71 -71
  41. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_blob_inventory_policies_operations.py +21 -21
  42. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_blob_services_operations.py +14 -14
  43. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_deleted_accounts_operations.py +7 -7
  44. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_encryption_scopes_operations.py +22 -22
  45. azure/mgmt/storage/v2024_01_01/operations/_file_services_operations.py +669 -0
  46. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_file_shares_operations.py +34 -34
  47. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_local_users_operations.py +23 -23
  48. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_management_policies_operations.py +18 -18
  49. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_network_security_perimeter_configurations_operations.py +10 -10
  50. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_object_replication_policies_operations.py +16 -16
  51. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_operations.py +4 -4
  52. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_private_endpoint_connections_operations.py +16 -16
  53. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_private_link_resources_operations.py +4 -4
  54. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_queue_operations.py +23 -23
  55. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_queue_services_operations.py +14 -14
  56. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_skus_operations.py +4 -4
  57. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_storage_accounts_operations.py +87 -87
  58. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_storage_task_assignment_instances_report_operations.py +4 -4
  59. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_storage_task_assignments_instances_report_operations.py +4 -4
  60. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_storage_task_assignments_operations.py +26 -26
  61. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_table_operations.py +23 -23
  62. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_table_services_operations.py +14 -14
  63. azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_usages_operations.py +4 -4
  64. {azure_mgmt_storage-22.0.0.dist-info → azure_mgmt_storage-22.1.0.dist-info}/METADATA +31 -1
  65. {azure_mgmt_storage-22.0.0.dist-info → azure_mgmt_storage-22.1.0.dist-info}/RECORD +78 -78
  66. azure/mgmt/storage/v2023_05_01/operations/_file_services_operations.py +0 -431
  67. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/__init__.py +0 -0
  68. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/_patch.py +0 -0
  69. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/__init__.py +0 -0
  70. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/_patch.py +0 -0
  71. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/__init__.py +0 -0
  72. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/aio/operations/_patch.py +0 -0
  73. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/models/_patch.py +0 -0
  74. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/__init__.py +0 -0
  75. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/operations/_patch.py +0 -0
  76. /azure/mgmt/storage/{v2023_05_01 → v2024_01_01}/py.typed +0 -0
  77. {azure_mgmt_storage-22.0.0.dist-info → azure_mgmt_storage-22.1.0.dist-info}/LICENSE +0 -0
  78. {azure_mgmt_storage-22.0.0.dist-info → azure_mgmt_storage-22.1.0.dist-info}/WHEEL +0 -0
  79. {azure_mgmt_storage-22.0.0.dist-info → azure_mgmt_storage-22.1.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-mgmt-storage
3
- Version: 22.0.0
3
+ Version: 22.1.0
4
4
  Summary: Microsoft Azure Storage Management Client Library for Python
5
5
  Home-page: https://github.com/Azure/azure-sdk-for-python
6
6
  Author: Microsoft Corporation
@@ -90,6 +90,36 @@ section of the project.
90
90
 
91
91
  # Release History
92
92
 
93
+ ## 22.1.0 (2025-02-19)
94
+
95
+ ### Features Added
96
+
97
+ - Added operation FileServicesOperations.get_service_usage
98
+ - Added operation FileServicesOperations.list_service_usages
99
+ - Model FileShare has a new parameter file_share_paid_bursting
100
+ - Model FileShare has a new parameter included_burst_iops
101
+ - Model FileShare has a new parameter max_burst_credits_for_iops
102
+ - Model FileShare has a new parameter next_allowed_provisioned_bandwidth_downgrade_time
103
+ - Model FileShare has a new parameter next_allowed_provisioned_iops_downgrade_time
104
+ - Model FileShare has a new parameter next_allowed_quota_downgrade_time
105
+ - Model FileShare has a new parameter provisioned_bandwidth_mibps
106
+ - Model FileShare has a new parameter provisioned_iops
107
+ - Model FileShareItem has a new parameter file_share_paid_bursting
108
+ - Model FileShareItem has a new parameter included_burst_iops
109
+ - Model FileShareItem has a new parameter max_burst_credits_for_iops
110
+ - Model FileShareItem has a new parameter next_allowed_provisioned_bandwidth_downgrade_time
111
+ - Model FileShareItem has a new parameter next_allowed_provisioned_iops_downgrade_time
112
+ - Model FileShareItem has a new parameter next_allowed_quota_downgrade_time
113
+ - Model FileShareItem has a new parameter provisioned_bandwidth_mibps
114
+ - Model FileShareItem has a new parameter provisioned_iops
115
+ - Model ObjectReplicationPolicy has a new parameter metrics
116
+ - Enum `SkuName` added member `STANDARD_V2_LRS`
117
+ - Enum `SkuName` added member `STANDARD_V2_GRS`
118
+ - Enum `SkuName` added member `STANDARD_V2_ZRS`
119
+ - Enum `SkuName` added member `STANDARD_V2_GZRS`
120
+ - Enum `SkuName` added member `PREMIUM_V2_LRS`
121
+ - Enum `SkuName` added member `PREMIUM_V2_ZRS`
122
+
93
123
  ## 22.0.0 (2025-01-15)
94
124
 
95
125
  ### Breaking Changes
@@ -1,18 +1,18 @@
1
1
  azure/mgmt/storage/__init__.py,sha256=m8sm-rRh8sQ0tlJ4ymmPEGRr_JntgMvjpcrOcwjz_AM,725
2
2
  azure/mgmt/storage/_configuration.py,sha256=WGXuK1mWScrq7p-y-RZzZtsIcd1oc3M2uQFlSf00l1c,3099
3
3
  azure/mgmt/storage/_serialization.py,sha256=UPhwIc2GAKFtMpaqd92gKcvIumDoq_nvmgBkYTo419E,84511
4
- azure/mgmt/storage/_storage_management_client.py,sha256=Ak6pIz8t00JpNVppkH_dH6Mw_YAx_sBSrlh3A3G6KV8,31209
5
- azure/mgmt/storage/_version.py,sha256=kMK58CLFrldKfd9SKJNbawyR33212dJEh6vp_MMYf_U,346
6
- azure/mgmt/storage/models.py,sha256=IwV2-mkHx9Im8yibqTp8lvDrdllU-AnoGNqsOeWnSUs,394
4
+ azure/mgmt/storage/_storage_management_client.py,sha256=qh1WMqEDMHSemWQKgWARkFANFPE5zd35758Lw_dAt80,31209
5
+ azure/mgmt/storage/_version.py,sha256=vi7swbY403emUsEbLoau4Ld8AvLAR4ZQ8LxayOJg-rs,346
6
+ azure/mgmt/storage/models.py,sha256=K3K5VD5s4Efg2lH5kI5178evz2kN2BMJlINzGqNnAvg,394
7
7
  azure/mgmt/storage/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
8
8
  azure/mgmt/storage/aio/__init__.py,sha256=91Ueq_d_YhUQnoHuhv-HKRhRnDGx8kYi1QeyF_cT3A4,570
9
9
  azure/mgmt/storage/aio/_configuration.py,sha256=ZBMoIdgQ8y_qBNgeML9GskN3ms4dMXub0mLshOc7yow,3163
10
- azure/mgmt/storage/aio/_storage_management_client.py,sha256=Bjec2V0jYij4au0fCCsuVypv8rwQS3cddJaxva97OEU,31750
10
+ azure/mgmt/storage/aio/_storage_management_client.py,sha256=RfFqSba6xSv56WdcbknNUMsNNHqarNCwVpvbSyzatQc,31750
11
11
  azure/mgmt/storage/v2016_01_01/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7k,1063
12
12
  azure/mgmt/storage/v2016_01_01/_configuration.py,sha256=siI7T4arsx5aMS3_CQvP0WUBmV0dnnHhpJpWDs2fioE,3483
13
13
  azure/mgmt/storage/v2016_01_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
14
14
  azure/mgmt/storage/v2016_01_01/_storage_management_client.py,sha256=swXUKA6adRjEK5P-oaoSrvIY4dxqeZFtuMMjf2Np5vA,5485
15
- azure/mgmt/storage/v2016_01_01/_version.py,sha256=GmhASME-pobJRDhlKsW7QfcYqL6V_4JZac2l4WXTJTU,487
15
+ azure/mgmt/storage/v2016_01_01/_version.py,sha256=PNUgM7WkCX19Teq4j1PuSdLdmNiem4-Xj_oC_AVRaQ0,487
16
16
  azure/mgmt/storage/v2016_01_01/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
17
17
  azure/mgmt/storage/v2016_01_01/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
18
18
  azure/mgmt/storage/v2016_01_01/aio/_configuration.py,sha256=YZtsiiROoAP7dZEgdDP7EPnWaBNVKmYspQmJCeZ5JeM,3531
@@ -34,7 +34,7 @@ azure/mgmt/storage/v2017_10_01/__init__.py,sha256=oZPgxLp2BadEHAGCxH2XrjJHIBrYPk
34
34
  azure/mgmt/storage/v2017_10_01/_configuration.py,sha256=uUcUwS3Jy-dJbp3inNCqjRAgLd6FlnxTpqx9WD8apH0,3471
35
35
  azure/mgmt/storage/v2017_10_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
36
36
  azure/mgmt/storage/v2017_10_01/_storage_management.py,sha256=pn7xRJVjWrcB2Rz-y5e-3XADfpPQqktoaevy8VLo5IQ,5944
37
- azure/mgmt/storage/v2017_10_01/_version.py,sha256=GmhASME-pobJRDhlKsW7QfcYqL6V_4JZac2l4WXTJTU,487
37
+ azure/mgmt/storage/v2017_10_01/_version.py,sha256=PNUgM7WkCX19Teq4j1PuSdLdmNiem4-Xj_oC_AVRaQ0,487
38
38
  azure/mgmt/storage/v2017_10_01/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
39
39
  azure/mgmt/storage/v2017_10_01/aio/__init__.py,sha256=p1IDOkB-_obkrqgGDOgDHabjz67tFXLZQ1zszUBKbJg,991
40
40
  azure/mgmt/storage/v2017_10_01/aio/_configuration.py,sha256=WSsIiOH-QCmYobC1QJyQbCoKiRVEmPhOFHOzbkfrEtw,3519
@@ -60,7 +60,7 @@ azure/mgmt/storage/v2019_06_01/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG
60
60
  azure/mgmt/storage/v2019_06_01/_configuration.py,sha256=I_JyyXxG59ttJBZis3dY8Anae963nnP3uqoVhhbbUwc,3359
61
61
  azure/mgmt/storage/v2019_06_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
62
62
  azure/mgmt/storage/v2019_06_01/_storage_management_client.py,sha256=-JsmSBjlOLYKuodPjE6sOhm7goQ76-mWTvc0UppUy1M,10870
63
- azure/mgmt/storage/v2019_06_01/_version.py,sha256=GmhASME-pobJRDhlKsW7QfcYqL6V_4JZac2l4WXTJTU,487
63
+ azure/mgmt/storage/v2019_06_01/_version.py,sha256=PNUgM7WkCX19Teq4j1PuSdLdmNiem4-Xj_oC_AVRaQ0,487
64
64
  azure/mgmt/storage/v2019_06_01/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
65
65
  azure/mgmt/storage/v2019_06_01/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
66
66
  azure/mgmt/storage/v2019_06_01/aio/_configuration.py,sha256=YP9rGPG5ig5sE8GsicWpz3-eheu_SF5GL7um4R5g7MI,3407
@@ -110,74 +110,74 @@ azure/mgmt/storage/v2019_06_01/operations/_storage_accounts_operations.py,sha256
110
110
  azure/mgmt/storage/v2019_06_01/operations/_table_operations.py,sha256=9GQDx2JoeKqfMxoAWDwN0sjCyuQ4U7BpJVchoukvgZo,25400
111
111
  azure/mgmt/storage/v2019_06_01/operations/_table_services_operations.py,sha256=2h7zpJ0OZZct-ccdCkCNPUepqJr7iUmEvDjzubS3FcQ,20622
112
112
  azure/mgmt/storage/v2019_06_01/operations/_usages_operations.py,sha256=IB3FgGF1U5tIcHEmX41Spm_vC3lVRTq8laCUGxOcWc0,6876
113
- azure/mgmt/storage/v2023_05_01/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7k,1063
114
- azure/mgmt/storage/v2023_05_01/_configuration.py,sha256=O226Rg5D1-Bb_gk5WjAZD601kyO8O2viPShxmctAmXs,3359
115
- azure/mgmt/storage/v2023_05_01/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
116
- azure/mgmt/storage/v2023_05_01/_storage_management_client.py,sha256=kJYKAthOmsW4XInE9IWf2ehoLQWhNZL3CWu3ESp7l38,13526
117
- azure/mgmt/storage/v2023_05_01/_version.py,sha256=GmhASME-pobJRDhlKsW7QfcYqL6V_4JZac2l4WXTJTU,487
118
- azure/mgmt/storage/v2023_05_01/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
119
- azure/mgmt/storage/v2023_05_01/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
120
- azure/mgmt/storage/v2023_05_01/aio/_configuration.py,sha256=cTGPRUdUogX6s_MGdhJ0XG9KSrk-qu_-HowU8Ww6nIE,3407
121
- azure/mgmt/storage/v2023_05_01/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
122
- azure/mgmt/storage/v2023_05_01/aio/_storage_management_client.py,sha256=dcr7d8NAmsHd9mCgi4Q7DMpkkcKcHaGub6N0A5O5QW0,13793
123
- azure/mgmt/storage/v2023_05_01/aio/operations/__init__.py,sha256=OTQ3anJs42aOz8qnVhDaNZPofKjNHlSmOAFvQAfpfHg,3759
124
- azure/mgmt/storage/v2023_05_01/aio/operations/_blob_containers_operations.py,sha256=0TkOeCw7Tpw1yc5CLL5wuyJuJ7uIWHmq5pHtIuOpaSU,88505
125
- azure/mgmt/storage/v2023_05_01/aio/operations/_blob_inventory_policies_operations.py,sha256=ZxjDO559c_K4bRLoRS41lhIhzntSKQe-svkByxm7QNM,19727
126
- azure/mgmt/storage/v2023_05_01/aio/operations/_blob_services_operations.py,sha256=bZjVA6aZNMYJqmucZMEMcNKlCINw89zdrmvm-uB9K-c,16286
127
- azure/mgmt/storage/v2023_05_01/aio/operations/_deleted_accounts_operations.py,sha256=M03q7FU68xJc3ChlTkhzJs7pP8nsbOnOW-1ov0G2EBk,8231
128
- azure/mgmt/storage/v2023_05_01/aio/operations/_encryption_scopes_operations.py,sha256=y4w_uaDZkQq8_oP3t4vyilOpkvQ0xN1bYWlRy_U6F2I,26770
129
- azure/mgmt/storage/v2023_05_01/aio/operations/_file_services_operations.py,sha256=QsCSFd-Z51-_9ksHo6J0UqNl_f4qKrkmQVn9v_T2PkM,14410
130
- azure/mgmt/storage/v2023_05_01/aio/operations/_file_shares_operations.py,sha256=sd37SJfdrRZ68X5oyFEtJdYRP8nW6MKO3CXcUDm7RyM,45544
131
- azure/mgmt/storage/v2023_05_01/aio/operations/_local_users_operations.py,sha256=ckdzfO-d00bLMziDOgpeUCblYk-sFL2SpPZC-fq_JpA,26132
132
- azure/mgmt/storage/v2023_05_01/aio/operations/_management_policies_operations.py,sha256=k0wPHK13KSGhgrtR2ceHUn5J00kj-N0agMegGibAjtU,15221
133
- azure/mgmt/storage/v2023_05_01/aio/operations/_network_security_perimeter_configurations_operations.py,sha256=Oxffu6kXTL-PMdpb81mz6tet2HBNQIfhbkpE5qoB9ho,15980
134
- azure/mgmt/storage/v2023_05_01/aio/operations/_object_replication_policies_operations.py,sha256=xIEzYzbZr3tY-z3ZKNttwlWEM6a7FJFUEDqPnNkrtpo,20915
135
- azure/mgmt/storage/v2023_05_01/aio/operations/_operations.py,sha256=PPQEGOwp1yaB6ZvQYD0ZOpNO0TC4SlAUGqnmZxGNhdA,5482
136
- azure/mgmt/storage/v2023_05_01/aio/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
137
- azure/mgmt/storage/v2023_05_01/aio/operations/_private_endpoint_connections_operations.py,sha256=hUiUdSUtQSb7x-X61wlwaVeWPeg9zL2aGPhO_-OjasE,19570
138
- azure/mgmt/storage/v2023_05_01/aio/operations/_private_link_resources_operations.py,sha256=b2ycWpUFdjTH51KkHpwZoRJPwh69XHnZOM7AuCbq5qk,4935
139
- azure/mgmt/storage/v2023_05_01/aio/operations/_queue_operations.py,sha256=xyJkaB8bBiSLKbeAiicjEViww7uCm-XFMy-iCL9rNH8,27127
140
- azure/mgmt/storage/v2023_05_01/aio/operations/_queue_services_operations.py,sha256=D6xA_wWZLDXUti8nsS85oO56oEmCAKSqgKNbpdKrq64,14754
141
- azure/mgmt/storage/v2023_05_01/aio/operations/_skus_operations.py,sha256=uyDZA-uVjAJq-VKy9VxdiyVQX-itFXzuEL0wwdz880I,5592
142
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_accounts_operations.py,sha256=oBVTfQKDb2_0CGY9wObb4146-K6AFB55HBRCSCrSDm8,104117
143
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=NIZkgX028OLQCnqwIzNUQNYK-HWlm0glKDSdMfqfVfc,7737
144
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=PgM_lryAkJPp5Ijn4u5DAWFD8EYs_mLi5sAfzOWFbPs,7315
145
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py,sha256=nBI_0HObtrRmU347SAT2j2zB3EB1-5bUw5-_k6Bh8TM,38964
146
- azure/mgmt/storage/v2023_05_01/aio/operations/_table_operations.py,sha256=CClN1Vj2id4U_Kc-iQHIUv0SK27IF9o3pTUiB5SVaiQ,25942
147
- azure/mgmt/storage/v2023_05_01/aio/operations/_table_services_operations.py,sha256=R2W3cTFuTBBuykbg896sCWayKiEYtcFvIgqvduMxCB0,14754
148
- azure/mgmt/storage/v2023_05_01/aio/operations/_usages_operations.py,sha256=JXLHmv8EP8PtEOBfP_jsp1v6P7rv3v2DclC4G0QiGwE,5778
149
- azure/mgmt/storage/v2023_05_01/models/__init__.py,sha256=INPU_Eiy9i2WkhNsF0JSJ0EfgjoCgSR2hZER5bkrSi8,14587
150
- azure/mgmt/storage/v2023_05_01/models/_models_py3.py,sha256=aVXbDt9gqWg00cw68OB0DmoqAPc2tT4HGET00ybLw3U,458684
151
- azure/mgmt/storage/v2023_05_01/models/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
152
- azure/mgmt/storage/v2023_05_01/models/_storage_management_client_enums.py,sha256=8ShGncKxgq2YdJrntTYJYHl8BBmbqByoVSXCoeYH5uE,21372
153
- azure/mgmt/storage/v2023_05_01/operations/__init__.py,sha256=OTQ3anJs42aOz8qnVhDaNZPofKjNHlSmOAFvQAfpfHg,3759
154
- azure/mgmt/storage/v2023_05_01/operations/_blob_containers_operations.py,sha256=Y6RiQCvJEYjU1gn9fPDrtfVL2MUhWRd7ZqZIeeIkraM,114254
155
- azure/mgmt/storage/v2023_05_01/operations/_blob_inventory_policies_operations.py,sha256=ZqAeBJgmisYuCsFjvU_1qNV-gSp9eFkX8rVuFFq5yr0,26434
156
- azure/mgmt/storage/v2023_05_01/operations/_blob_services_operations.py,sha256=PiX3ziqzcoi1ruX4hAHycFKPNyWJVmOPta21-X_XG0g,21179
157
- azure/mgmt/storage/v2023_05_01/operations/_deleted_accounts_operations.py,sha256=fSoNJUJqXwYeSfOvgkk8MAON6vIjtxQ0WC5gzqfJr9c,10422
158
- azure/mgmt/storage/v2023_05_01/operations/_encryption_scopes_operations.py,sha256=0AxONQjDCZZXMJ92qdBmWCebRrp-QsmvGWv4_QhnWbo,34067
159
- azure/mgmt/storage/v2023_05_01/operations/_file_services_operations.py,sha256=XPrYXgk1ccZ8PatjW2wi3TpUnDn4OSS7FrDQPy1PLP4,19415
160
- azure/mgmt/storage/v2023_05_01/operations/_file_shares_operations.py,sha256=FqU2ZNmYczILXNj15QacH96_u66-ZBgmJTb1WymX7cA,58974
161
- azure/mgmt/storage/v2023_05_01/operations/_local_users_operations.py,sha256=m4wCMg8StPd1dt6BjgTjDKmdc1-h0VpcuQWDoeKl9dg,36202
162
- azure/mgmt/storage/v2023_05_01/operations/_management_policies_operations.py,sha256=ZvmmluMK0xyeWsuCKWBxVapYih3Wt2kmDDcBN_rBkec,20287
163
- azure/mgmt/storage/v2023_05_01/operations/_network_security_perimeter_configurations_operations.py,sha256=d7QrIaaus9LFPfwatFFfwick8KxRXROlW19tQvQ9RuI,20883
164
- azure/mgmt/storage/v2023_05_01/operations/_object_replication_policies_operations.py,sha256=FeeBlZ1MlKSAR19NqQxh8jM9kXHuEDjwMvU05pYNHoY,27620
165
- azure/mgmt/storage/v2023_05_01/operations/_operations.py,sha256=EsjJDRFWBT8pCs_L5RY13c94lZGSuJ6lnk4PAzlTBWY,6174
166
- azure/mgmt/storage/v2023_05_01/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
167
- azure/mgmt/storage/v2023_05_01/operations/_private_endpoint_connections_operations.py,sha256=QArnaYM0y-zj9lXPMi0lXl4r0rMOd4I3x0WayESHxH8,26344
168
- azure/mgmt/storage/v2023_05_01/operations/_private_link_resources_operations.py,sha256=EgdudXz1xSyEGyzVwL6CHJbZQOAogv90PAJr1lcED_A,6423
169
- azure/mgmt/storage/v2023_05_01/operations/_queue_operations.py,sha256=w9QNxJx-0ikDPFHJZbeTToRYCSmzqlW-tj2WZB4A0Hg,36265
170
- azure/mgmt/storage/v2023_05_01/operations/_queue_services_operations.py,sha256=8T2upVyPgJ6Px1_VQYF_KfCNFdl5d9nXSO6jHEqUqYw,19761
171
- azure/mgmt/storage/v2023_05_01/operations/_skus_operations.py,sha256=AhbZCxF3lP0Sv2qRevwdYUtzNe5LRfItUsrJioRQzo0,6532
172
- azure/mgmt/storage/v2023_05_01/operations/_storage_accounts_operations.py,sha256=ZJunPqbp_85S1WG-IptS_1lY9u7E-ZMd0UHyN0vE58s,130302
173
- azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py,sha256=vLeRFhLD_Ftk1aEQp3pFTZlNEwn5fwwwZmPXzC8dm5w,9789
174
- azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py,sha256=oKww8r_JnKxTftjLH-_7lwQyiXjv43OE-u5HlPoZc6A,9012
175
- azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py,sha256=gYL9jlcyOeprqcK49kbQHddN696PQ9dkaBFpvwL-hVs,47650
176
- azure/mgmt/storage/v2023_05_01/operations/_table_operations.py,sha256=rPOgFWcuGh2UKIY0cZP2r1vPjG6E4q-kR8Z81ZJ2oi0,34479
177
- azure/mgmt/storage/v2023_05_01/operations/_table_services_operations.py,sha256=NmbBpJ8hEZqy_7Pr9IeYjXgJdvZ2bc0yNCx_EGADSwI,19761
178
- azure/mgmt/storage/v2023_05_01/operations/_usages_operations.py,sha256=-ylv8bpSq3PxiGffCaYQTLKw-BSLBusfTKNPus_Blb0,6876
179
- azure_mgmt_storage-22.0.0.dist-info/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
180
- azure_mgmt_storage-22.0.0.dist-info/METADATA,sha256=NIjHR6Uwtv-EVLM8eKFgrILIBPWgxhHpjJMB6eUbARI,31628
181
- azure_mgmt_storage-22.0.0.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
182
- azure_mgmt_storage-22.0.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
183
- azure_mgmt_storage-22.0.0.dist-info/RECORD,,
113
+ azure/mgmt/storage/v2024_01_01/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7k,1063
114
+ azure/mgmt/storage/v2024_01_01/_configuration.py,sha256=ueW5a5NL02MKrK9ldI1VrJHWCM_EtajIXy6AS3lFuMY,3359
115
+ azure/mgmt/storage/v2024_01_01/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
116
+ azure/mgmt/storage/v2024_01_01/_storage_management_client.py,sha256=m1iIxiWan3eB7FczuRpo325nf4zDzoDxV3UDNBBMGkM,13526
117
+ azure/mgmt/storage/v2024_01_01/_version.py,sha256=PNUgM7WkCX19Teq4j1PuSdLdmNiem4-Xj_oC_AVRaQ0,487
118
+ azure/mgmt/storage/v2024_01_01/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
119
+ azure/mgmt/storage/v2024_01_01/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
120
+ azure/mgmt/storage/v2024_01_01/aio/_configuration.py,sha256=zOGd3GdE0M5_rHawiiKhqZAGA6jqOe4Y_9TihUXQJZ0,3407
121
+ azure/mgmt/storage/v2024_01_01/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
122
+ azure/mgmt/storage/v2024_01_01/aio/_storage_management_client.py,sha256=MOIC5xFSGLx9O-T6uyv4ALk_ixpQnJg2ECleLMF7mcM,13793
123
+ azure/mgmt/storage/v2024_01_01/aio/operations/__init__.py,sha256=OTQ3anJs42aOz8qnVhDaNZPofKjNHlSmOAFvQAfpfHg,3759
124
+ azure/mgmt/storage/v2024_01_01/aio/operations/_blob_containers_operations.py,sha256=drX637i2_sfh9A7IRs6UCLevX3S9kwT77F37C4L2Wg8,88505
125
+ azure/mgmt/storage/v2024_01_01/aio/operations/_blob_inventory_policies_operations.py,sha256=3jUNjTfDF0WDHU93nVU1rRw2vS_EqHp4DyC2UsszMeg,19727
126
+ azure/mgmt/storage/v2024_01_01/aio/operations/_blob_services_operations.py,sha256=WXjq_UT-46ZXR6343icqRgxE3_SF3iJh7URUeu20OLk,16286
127
+ azure/mgmt/storage/v2024_01_01/aio/operations/_deleted_accounts_operations.py,sha256=-sQxxSqqmA28krHGvZ0W3aRMg4iX6Fw4WQSsc8aQjZ4,8231
128
+ azure/mgmt/storage/v2024_01_01/aio/operations/_encryption_scopes_operations.py,sha256=alGm47ttlwOD3xe9D1I55xBlVDshrfmDG65o0VgfKr8,26770
129
+ azure/mgmt/storage/v2024_01_01/aio/operations/_file_services_operations.py,sha256=runNFIe-fX5wod7KNmBED4VBCXMdJxPCCAsku8G4eXs,22018
130
+ azure/mgmt/storage/v2024_01_01/aio/operations/_file_shares_operations.py,sha256=UvKuNi7PHIsV94diUPpIPt3IuNV7VNdI9H_GSP-gl8I,45544
131
+ azure/mgmt/storage/v2024_01_01/aio/operations/_local_users_operations.py,sha256=IoS5KK61SRNFbJO6vAGkzTbn4PK7feNNyzMAD3u9hGU,26132
132
+ azure/mgmt/storage/v2024_01_01/aio/operations/_management_policies_operations.py,sha256=KJ0hRuIT2KpXxkiVpFwRVxeZp6nz6BRyiev8lBLrKqQ,15221
133
+ azure/mgmt/storage/v2024_01_01/aio/operations/_network_security_perimeter_configurations_operations.py,sha256=0_UvTuUW4WJ063wLpizc2tl3uXoIayf5uG3V0wZS1OY,15980
134
+ azure/mgmt/storage/v2024_01_01/aio/operations/_object_replication_policies_operations.py,sha256=z0C15XIrSZe9OshMKBGbtkv7RQgFRr2rKNSNvhGkJZ8,20915
135
+ azure/mgmt/storage/v2024_01_01/aio/operations/_operations.py,sha256=lNMOll2I4vUzfZkQZWCOlmb3Vn4EVzuoMFdZYoMkfo8,5482
136
+ azure/mgmt/storage/v2024_01_01/aio/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
137
+ azure/mgmt/storage/v2024_01_01/aio/operations/_private_endpoint_connections_operations.py,sha256=QlCY6Acp7W-ZvFohXvSvwDEFykyGWrDwuyXiux9FJ0Y,19570
138
+ azure/mgmt/storage/v2024_01_01/aio/operations/_private_link_resources_operations.py,sha256=7Lc50KCdFnlF4zkD96qC3cPB5fx_6JOK_LkcnL5mL0g,4935
139
+ azure/mgmt/storage/v2024_01_01/aio/operations/_queue_operations.py,sha256=80dyFed7mn0Vdt7jvb6xB5BJH2fkaL49DrSVNwh6p4Y,27127
140
+ azure/mgmt/storage/v2024_01_01/aio/operations/_queue_services_operations.py,sha256=c2ryyXalTde0HdkOHug9IqMnZcRnzSHl2dFPe8w69ig,14754
141
+ azure/mgmt/storage/v2024_01_01/aio/operations/_skus_operations.py,sha256=YyVbD6k-bQRBhtj1ZObVT5-sTVHQ0Z12p3PlGndAMrU,5592
142
+ azure/mgmt/storage/v2024_01_01/aio/operations/_storage_accounts_operations.py,sha256=Ls1SP6CClSBrCard7ZfrzUna_kX3rT_qH7k7B95-nOQ,104117
143
+ azure/mgmt/storage/v2024_01_01/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=_eY33AjAPsJmXg1-aws_p4xzygv_U_XHVQm87KbynAQ,7737
144
+ azure/mgmt/storage/v2024_01_01/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=qHXKeBj8zEcsMk6946e4ZqJYMs5aknnsb1dj-iE_cfk,7315
145
+ azure/mgmt/storage/v2024_01_01/aio/operations/_storage_task_assignments_operations.py,sha256=MhxwSmvLyQg3yKrQ2UvzU2xnl0meWCTmrPERQGoHkw8,38964
146
+ azure/mgmt/storage/v2024_01_01/aio/operations/_table_operations.py,sha256=iOK_SqS5jNl_o3abP-u8j1fEsYjevDtDQppLWeQkdYY,25942
147
+ azure/mgmt/storage/v2024_01_01/aio/operations/_table_services_operations.py,sha256=WSq25WaJ4uNTOOBO3MfIToWZ-yR97AZfBSxPOmiX8VA,14754
148
+ azure/mgmt/storage/v2024_01_01/aio/operations/_usages_operations.py,sha256=UYdnrbBExh4vNpHr_WJil97iOodKHoIUc55_4EI1CUs,5778
149
+ azure/mgmt/storage/v2024_01_01/models/__init__.py,sha256=CdHsbSUsb_LsQkB4yRZIKzLin2E3fGvknFJJJ3N6ibE,15221
150
+ azure/mgmt/storage/v2024_01_01/models/_models_py3.py,sha256=QeC7g9GMwSKeQqTCFCO_dYTVFXGdKCze597HAAEOMuY,490499
151
+ azure/mgmt/storage/v2024_01_01/models/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
152
+ azure/mgmt/storage/v2024_01_01/models/_storage_management_client_enums.py,sha256=upnU_VFNnBH_ygLFbOi3dzfFyA--2kZFRuJEqAZoV3M,21604
153
+ azure/mgmt/storage/v2024_01_01/operations/__init__.py,sha256=OTQ3anJs42aOz8qnVhDaNZPofKjNHlSmOAFvQAfpfHg,3759
154
+ azure/mgmt/storage/v2024_01_01/operations/_blob_containers_operations.py,sha256=rHi_0pZHdQL3Fi0l1HOZOyljsxmQtJMzgdVrLkZBN9M,114254
155
+ azure/mgmt/storage/v2024_01_01/operations/_blob_inventory_policies_operations.py,sha256=7e01HdkMf8AZTHKdVS-Cu5QO1vgio3CEa0pfp8Q1IK4,26434
156
+ azure/mgmt/storage/v2024_01_01/operations/_blob_services_operations.py,sha256=W98EEr02hM2lWpn7y241JnBz_oLAHO5BVB-1au5OQTk,21179
157
+ azure/mgmt/storage/v2024_01_01/operations/_deleted_accounts_operations.py,sha256=o79mvc_CZJf0gUIRgrfD-d8IzgjhF5ISqjogAjN9HAw,10422
158
+ azure/mgmt/storage/v2024_01_01/operations/_encryption_scopes_operations.py,sha256=La_W9lOVXHgLBnPbxoIDHv1kJaWgfLHI3q_eRz4fm-E,34067
159
+ azure/mgmt/storage/v2024_01_01/operations/_file_services_operations.py,sha256=6WhRJZflzpUEOHHbUJjwojBxRkwP1djZe9vqdxSZqhk,30637
160
+ azure/mgmt/storage/v2024_01_01/operations/_file_shares_operations.py,sha256=cqn-TITn4sxTwo6nCwX0H1-G2Yus_MgBcVsczyCAPFM,58974
161
+ azure/mgmt/storage/v2024_01_01/operations/_local_users_operations.py,sha256=dsAuv0b2HglqGmjdoDn6kbHisXjLLqOu5yxWAoabxg4,36202
162
+ azure/mgmt/storage/v2024_01_01/operations/_management_policies_operations.py,sha256=SznfRjnakkv4kbovQairgBBOIsWFZMvltgjqhru_mlI,20287
163
+ azure/mgmt/storage/v2024_01_01/operations/_network_security_perimeter_configurations_operations.py,sha256=Z4u57BVn2NirsiN5G1B-oU91iXHpWrKCQW72uv5uGT4,20883
164
+ azure/mgmt/storage/v2024_01_01/operations/_object_replication_policies_operations.py,sha256=ecYIUNMjshkgU9yJ2FrG9H6MmoQ3PIQX3T1t6BWCLjA,27620
165
+ azure/mgmt/storage/v2024_01_01/operations/_operations.py,sha256=GHkvZi_Ujqcyok053wmCtOvECMzycWUplxOhkQ2mV4E,6174
166
+ azure/mgmt/storage/v2024_01_01/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
167
+ azure/mgmt/storage/v2024_01_01/operations/_private_endpoint_connections_operations.py,sha256=wpZSHlEKn_qffqp1URzNfL1tgMjuhn2M6zYvoEAlEcQ,26344
168
+ azure/mgmt/storage/v2024_01_01/operations/_private_link_resources_operations.py,sha256=824jsT1IIyDnXrCRTHCGj2--qY67DJJMFBT0pkytRVw,6423
169
+ azure/mgmt/storage/v2024_01_01/operations/_queue_operations.py,sha256=ldrZuRJE2AmqE6bQHeF_dDBPJoj6WYefrlJKhhumY14,36265
170
+ azure/mgmt/storage/v2024_01_01/operations/_queue_services_operations.py,sha256=i2ooOnvQ5YRdjV4IbkYNQfySKnDVbzGCHy7MNDgeLKs,19761
171
+ azure/mgmt/storage/v2024_01_01/operations/_skus_operations.py,sha256=IDrorQ24ePNuSMzU1MD_Ry5-ZG6uE5mh_hQBmP0mXh0,6532
172
+ azure/mgmt/storage/v2024_01_01/operations/_storage_accounts_operations.py,sha256=-tmyt-s9608GoacnjWx0iPax8j4GLJSc67AN910YAdk,130302
173
+ azure/mgmt/storage/v2024_01_01/operations/_storage_task_assignment_instances_report_operations.py,sha256=475tmbr_8fjwh39gvLACCFL8RZBSMkHB4Qjg-0XUVeQ,9789
174
+ azure/mgmt/storage/v2024_01_01/operations/_storage_task_assignments_instances_report_operations.py,sha256=_dA1qNSpb56SYGJrp3uLgTFAmC2CGoDavKlpuw6FTnQ,9012
175
+ azure/mgmt/storage/v2024_01_01/operations/_storage_task_assignments_operations.py,sha256=iN4zuY1K6vA9OlOG1nPtLcq1Y5wPTpkz_n3_ZGFg7sY,47650
176
+ azure/mgmt/storage/v2024_01_01/operations/_table_operations.py,sha256=HKU0Rt4-QvBEhmjiZQNH-mJFrLeRhe562Xn-q09ZHjQ,34479
177
+ azure/mgmt/storage/v2024_01_01/operations/_table_services_operations.py,sha256=2SUxlIE7NnwE9--7hC3nTOaoDGkA6dzF9BCwdy40_eQ,19761
178
+ azure/mgmt/storage/v2024_01_01/operations/_usages_operations.py,sha256=QQYY2rEzk4fXA93n761CPVgf46M7gEIeKrLTCqOOYMA,6876
179
+ azure_mgmt_storage-22.1.0.dist-info/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
180
+ azure_mgmt_storage-22.1.0.dist-info/METADATA,sha256=OOE3upOYDiPH9B-URLu8UvR5xQDl_Vf4Wf9gsrpsCcE,33322
181
+ azure_mgmt_storage-22.1.0.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
182
+ azure_mgmt_storage-22.1.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
183
+ azure_mgmt_storage-22.1.0.dist-info/RECORD,,