azure-mgmt-storage 23.0.0__py3-none-any.whl → 23.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.
- azure/mgmt/storage/_configuration.py +2 -2
- azure/mgmt/storage/_storage_management_client.py +1 -1
- azure/mgmt/storage/_version.py +1 -1
- azure/mgmt/storage/aio/_configuration.py +2 -2
- azure/mgmt/storage/aio/_storage_management_client.py +1 -1
- azure/mgmt/storage/aio/operations/_blob_containers_operations.py +2 -15
- azure/mgmt/storage/aio/operations/_blob_inventory_policies_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_blob_services_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_deleted_accounts_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_encryption_scopes_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_file_services_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_file_shares_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_local_users_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_network_security_perimeter_configurations_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_object_replication_policies_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_queue_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_skus_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_storage_accounts_operations.py +3 -16
- azure/mgmt/storage/aio/operations/_storage_task_assignment_instances_report_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_storage_task_assignments_instances_report_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_storage_task_assignments_operations.py +17 -5
- azure/mgmt/storage/aio/operations/_table_operations.py +2 -2
- azure/mgmt/storage/aio/operations/_usages_operations.py +2 -2
- azure/mgmt/storage/models/__init__.py +18 -0
- azure/mgmt/storage/models/_models_py3.py +420 -47
- azure/mgmt/storage/models/_storage_management_client_enums.py +21 -1
- azure/mgmt/storage/operations/_blob_containers_operations.py +17 -17
- azure/mgmt/storage/operations/_blob_inventory_policies_operations.py +7 -7
- azure/mgmt/storage/operations/_blob_services_operations.py +6 -6
- azure/mgmt/storage/operations/_deleted_accounts_operations.py +5 -5
- azure/mgmt/storage/operations/_encryption_scopes_operations.py +7 -7
- azure/mgmt/storage/operations/_file_services_operations.py +8 -8
- azure/mgmt/storage/operations/_file_shares_operations.py +10 -10
- azure/mgmt/storage/operations/_local_users_operations.py +9 -9
- azure/mgmt/storage/operations/_management_policies_operations.py +4 -4
- azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py +6 -6
- azure/mgmt/storage/operations/_object_replication_policies_operations.py +7 -7
- azure/mgmt/storage/operations/_operations.py +4 -4
- azure/mgmt/storage/operations/_private_endpoint_connections_operations.py +7 -7
- azure/mgmt/storage/operations/_private_link_resources_operations.py +2 -2
- azure/mgmt/storage/operations/_queue_operations.py +8 -8
- azure/mgmt/storage/operations/_queue_services_operations.py +4 -4
- azure/mgmt/storage/operations/_skus_operations.py +4 -4
- azure/mgmt/storage/operations/_storage_accounts_operations.py +22 -22
- azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py +4 -4
- azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py +4 -4
- azure/mgmt/storage/operations/_storage_task_assignments_operations.py +20 -11
- azure/mgmt/storage/operations/_table_operations.py +8 -8
- azure/mgmt/storage/operations/_table_services_operations.py +4 -4
- azure/mgmt/storage/operations/_usages_operations.py +4 -4
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.1.0.dist-info}/METADATA +51 -3
- azure_mgmt_storage-23.1.0.dist-info/RECORD +73 -0
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.1.0.dist-info}/WHEEL +1 -1
- azure_mgmt_storage-23.0.0.dist-info/RECORD +0 -73
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.1.0.dist-info/licenses}/LICENSE +0 -0
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.1.0.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
8
8
|
# --------------------------------------------------------------------------
|
|
9
9
|
from collections.abc import MutableMapping
|
|
10
|
-
from typing import Any, Callable, Dict,
|
|
10
|
+
from typing import Any, Callable, Dict, Optional, TypeVar
|
|
11
11
|
import urllib.parse
|
|
12
12
|
|
|
13
13
|
from azure.core import PipelineClient
|
|
@@ -49,7 +49,7 @@ def build_list_request(
|
|
|
49
49
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
50
50
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
51
51
|
|
|
52
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
52
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
53
53
|
accept = _headers.pop("Accept", "application/json")
|
|
54
54
|
|
|
55
55
|
# Construct URL
|
|
@@ -94,7 +94,7 @@ class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-t
|
|
|
94
94
|
|
|
95
95
|
models = _models
|
|
96
96
|
|
|
97
|
-
def __init__(self, *args, **kwargs):
|
|
97
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
98
98
|
input_args = list(args)
|
|
99
99
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
|
100
100
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
|
@@ -109,7 +109,7 @@ class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-t
|
|
|
109
109
|
maxpagesize: Optional[int] = None,
|
|
110
110
|
filter: Optional[str] = None,
|
|
111
111
|
**kwargs: Any
|
|
112
|
-
) ->
|
|
112
|
+
) -> ItemPaged["_models.StorageTaskReportInstance"]:
|
|
113
113
|
"""Fetch the report summary of all the storage task assignments and instances in an account.
|
|
114
114
|
|
|
115
115
|
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# --------------------------------------------------------------------------
|
|
9
9
|
from collections.abc import MutableMapping
|
|
10
10
|
from io import IOBase
|
|
11
|
-
from typing import Any, Callable, Dict, IO,
|
|
11
|
+
from typing import Any, Callable, Dict, IO, Iterator, Optional, TypeVar, Union, cast, overload
|
|
12
12
|
import urllib.parse
|
|
13
13
|
|
|
14
14
|
from azure.core import PipelineClient
|
|
@@ -48,7 +48,7 @@ def build_create_request(
|
|
|
48
48
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
49
49
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
50
50
|
|
|
51
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
51
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
52
52
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
53
53
|
accept = _headers.pop("Accept", "application/json")
|
|
54
54
|
|
|
@@ -94,7 +94,7 @@ def build_update_request(
|
|
|
94
94
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
95
95
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
96
96
|
|
|
97
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
97
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
98
98
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
99
99
|
accept = _headers.pop("Accept", "application/json")
|
|
100
100
|
|
|
@@ -140,7 +140,7 @@ def build_get_request(
|
|
|
140
140
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
141
141
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
142
142
|
|
|
143
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
143
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
144
144
|
accept = _headers.pop("Accept", "application/json")
|
|
145
145
|
|
|
146
146
|
# Construct URL
|
|
@@ -183,7 +183,7 @@ def build_delete_request(
|
|
|
183
183
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
184
184
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
185
185
|
|
|
186
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
186
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
187
187
|
accept = _headers.pop("Accept", "application/json")
|
|
188
188
|
|
|
189
189
|
# Construct URL
|
|
@@ -231,7 +231,7 @@ def build_list_request(
|
|
|
231
231
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
232
232
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
233
233
|
|
|
234
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
234
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
235
235
|
accept = _headers.pop("Accept", "application/json")
|
|
236
236
|
|
|
237
237
|
# Construct URL
|
|
@@ -274,7 +274,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
274
274
|
|
|
275
275
|
models = _models
|
|
276
276
|
|
|
277
|
-
def __init__(self, *args, **kwargs):
|
|
277
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
278
278
|
input_args = list(args)
|
|
279
279
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
|
280
280
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
|
@@ -345,6 +345,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
345
345
|
|
|
346
346
|
response_headers = {}
|
|
347
347
|
if response.status_code == 202:
|
|
348
|
+
response_headers["Azure-AsyncOperation"] = self._deserialize(
|
|
349
|
+
"str", response.headers.get("Azure-AsyncOperation")
|
|
350
|
+
)
|
|
348
351
|
response_headers["Location"] = self._deserialize("str", response.headers.get("Location"))
|
|
349
352
|
|
|
350
353
|
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
|
|
@@ -499,7 +502,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
499
502
|
|
|
500
503
|
if polling is True:
|
|
501
504
|
polling_method: PollingMethod = cast(
|
|
502
|
-
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "
|
|
505
|
+
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs)
|
|
503
506
|
)
|
|
504
507
|
elif polling is False:
|
|
505
508
|
polling_method = cast(PollingMethod, NoPolling())
|
|
@@ -580,6 +583,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
580
583
|
|
|
581
584
|
response_headers = {}
|
|
582
585
|
if response.status_code == 202:
|
|
586
|
+
response_headers["Azure-AsyncOperation"] = self._deserialize(
|
|
587
|
+
"str", response.headers.get("Azure-AsyncOperation")
|
|
588
|
+
)
|
|
583
589
|
response_headers["Location"] = self._deserialize("str", response.headers.get("Location"))
|
|
584
590
|
|
|
585
591
|
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
|
|
@@ -722,7 +728,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
722
728
|
|
|
723
729
|
if polling is True:
|
|
724
730
|
polling_method: PollingMethod = cast(
|
|
725
|
-
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "
|
|
731
|
+
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs)
|
|
726
732
|
)
|
|
727
733
|
elif polling is False:
|
|
728
734
|
polling_method = cast(PollingMethod, NoPolling())
|
|
@@ -851,6 +857,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
851
857
|
|
|
852
858
|
response_headers = {}
|
|
853
859
|
if response.status_code == 202:
|
|
860
|
+
response_headers["Azure-AsyncOperation"] = self._deserialize(
|
|
861
|
+
"str", response.headers.get("Azure-AsyncOperation")
|
|
862
|
+
)
|
|
854
863
|
response_headers["Location"] = self._deserialize("str", response.headers.get("Location"))
|
|
855
864
|
|
|
856
865
|
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
|
|
@@ -909,7 +918,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
909
918
|
|
|
910
919
|
if polling is True:
|
|
911
920
|
polling_method: PollingMethod = cast(
|
|
912
|
-
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "
|
|
921
|
+
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs)
|
|
913
922
|
)
|
|
914
923
|
elif polling is False:
|
|
915
924
|
polling_method = cast(PollingMethod, NoPolling())
|
|
@@ -927,7 +936,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
927
936
|
@distributed_trace
|
|
928
937
|
def list(
|
|
929
938
|
self, resource_group_name: str, account_name: str, maxpagesize: Optional[int] = None, **kwargs: Any
|
|
930
|
-
) ->
|
|
939
|
+
) -> ItemPaged["_models.StorageTaskAssignment"]:
|
|
931
940
|
"""List all the storage task assignments in an account.
|
|
932
941
|
|
|
933
942
|
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# --------------------------------------------------------------------------
|
|
9
9
|
from collections.abc import MutableMapping
|
|
10
10
|
from io import IOBase
|
|
11
|
-
from typing import Any, Callable, Dict, IO,
|
|
11
|
+
from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, overload
|
|
12
12
|
import urllib.parse
|
|
13
13
|
|
|
14
14
|
from azure.core import PipelineClient
|
|
@@ -44,7 +44,7 @@ def build_create_request(
|
|
|
44
44
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
45
45
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
46
46
|
|
|
47
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
47
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
48
48
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
49
49
|
accept = _headers.pop("Accept", "application/json")
|
|
50
50
|
|
|
@@ -85,7 +85,7 @@ def build_update_request(
|
|
|
85
85
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
86
86
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
87
87
|
|
|
88
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
88
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
89
89
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
90
90
|
accept = _headers.pop("Accept", "application/json")
|
|
91
91
|
|
|
@@ -126,7 +126,7 @@ def build_get_request(
|
|
|
126
126
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
127
127
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
128
128
|
|
|
129
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
129
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
130
130
|
accept = _headers.pop("Accept", "application/json")
|
|
131
131
|
|
|
132
132
|
# Construct URL
|
|
@@ -164,7 +164,7 @@ def build_delete_request(
|
|
|
164
164
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
165
165
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
166
166
|
|
|
167
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
167
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
168
168
|
accept = _headers.pop("Accept", "application/json")
|
|
169
169
|
|
|
170
170
|
# Construct URL
|
|
@@ -200,7 +200,7 @@ def build_list_request(resource_group_name: str, account_name: str, subscription
|
|
|
200
200
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
201
201
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
202
202
|
|
|
203
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
203
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
204
204
|
accept = _headers.pop("Accept", "application/json")
|
|
205
205
|
|
|
206
206
|
# Construct URL
|
|
@@ -241,7 +241,7 @@ class TableOperations:
|
|
|
241
241
|
|
|
242
242
|
models = _models
|
|
243
243
|
|
|
244
|
-
def __init__(self, *args, **kwargs):
|
|
244
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
245
245
|
input_args = list(args)
|
|
246
246
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
|
247
247
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
|
@@ -681,7 +681,7 @@ class TableOperations:
|
|
|
681
681
|
return cls(pipeline_response, None, {}) # type: ignore
|
|
682
682
|
|
|
683
683
|
@distributed_trace
|
|
684
|
-
def list(self, resource_group_name: str, account_name: str, **kwargs: Any) ->
|
|
684
|
+
def list(self, resource_group_name: str, account_name: str, **kwargs: Any) -> ItemPaged["_models.Table"]:
|
|
685
685
|
"""Gets a list of all the tables under the specified storage account.
|
|
686
686
|
|
|
687
687
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
|
@@ -40,7 +40,7 @@ def build_list_request(resource_group_name: str, account_name: str, subscription
|
|
|
40
40
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
41
41
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
42
42
|
|
|
43
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
43
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
44
44
|
accept = _headers.pop("Accept", "application/json")
|
|
45
45
|
|
|
46
46
|
# Construct URL
|
|
@@ -75,7 +75,7 @@ def build_set_service_properties_request(
|
|
|
75
75
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
76
76
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
77
77
|
|
|
78
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
78
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
79
79
|
table_service_name: Literal["default"] = kwargs.pop("table_service_name", "default")
|
|
80
80
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
81
81
|
accept = _headers.pop("Accept", "application/json")
|
|
@@ -115,7 +115,7 @@ def build_get_service_properties_request(
|
|
|
115
115
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
116
116
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
117
117
|
|
|
118
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
118
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
119
119
|
table_service_name: Literal["default"] = kwargs.pop("table_service_name", "default")
|
|
120
120
|
accept = _headers.pop("Accept", "application/json")
|
|
121
121
|
|
|
@@ -158,7 +158,7 @@ class TableServicesOperations:
|
|
|
158
158
|
|
|
159
159
|
models = _models
|
|
160
160
|
|
|
161
|
-
def __init__(self, *args, **kwargs):
|
|
161
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
162
162
|
input_args = list(args)
|
|
163
163
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
|
164
164
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
8
|
from collections.abc import MutableMapping
|
|
9
|
-
from typing import Any, Callable, Dict,
|
|
9
|
+
from typing import Any, Callable, Dict, Optional, TypeVar
|
|
10
10
|
import urllib.parse
|
|
11
11
|
|
|
12
12
|
from azure.core import PipelineClient
|
|
@@ -40,7 +40,7 @@ def build_list_by_location_request(location: str, subscription_id: str, **kwargs
|
|
|
40
40
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
41
41
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
42
42
|
|
|
43
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "
|
|
43
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-01-01"))
|
|
44
44
|
accept = _headers.pop("Accept", "application/json")
|
|
45
45
|
|
|
46
46
|
# Construct URL
|
|
@@ -75,7 +75,7 @@ class UsagesOperations:
|
|
|
75
75
|
|
|
76
76
|
models = _models
|
|
77
77
|
|
|
78
|
-
def __init__(self, *args, **kwargs):
|
|
78
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
79
79
|
input_args = list(args)
|
|
80
80
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
|
81
81
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
|
@@ -83,7 +83,7 @@ class UsagesOperations:
|
|
|
83
83
|
self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer")
|
|
84
84
|
|
|
85
85
|
@distributed_trace
|
|
86
|
-
def list_by_location(self, location: str, **kwargs: Any) ->
|
|
86
|
+
def list_by_location(self, location: str, **kwargs: Any) -> ItemPaged["_models.Usage"]:
|
|
87
87
|
"""Gets the current usage count and the limit for the resources of the location under the
|
|
88
88
|
subscription.
|
|
89
89
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: azure-mgmt-storage
|
|
3
|
-
Version: 23.
|
|
3
|
+
Version: 23.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
|
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
19
|
Classifier: License :: OSI Approved :: MIT License
|
|
19
20
|
Requires-Python: >=3.9
|
|
20
21
|
Description-Content-Type: text/markdown
|
|
@@ -22,7 +23,19 @@ License-File: LICENSE
|
|
|
22
23
|
Requires-Dist: isodate>=0.6.1
|
|
23
24
|
Requires-Dist: typing-extensions>=4.6.0
|
|
24
25
|
Requires-Dist: azure-common>=1.1
|
|
25
|
-
Requires-Dist: azure-mgmt-core>=1.
|
|
26
|
+
Requires-Dist: azure-mgmt-core>=1.6.0
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: author-email
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: keywords
|
|
34
|
+
Dynamic: license
|
|
35
|
+
Dynamic: license-file
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
26
39
|
|
|
27
40
|
# Microsoft Azure SDK for Python
|
|
28
41
|
|
|
@@ -89,6 +102,41 @@ section of the project.
|
|
|
89
102
|
|
|
90
103
|
# Release History
|
|
91
104
|
|
|
105
|
+
## 23.1.0 (2025-09-22)
|
|
106
|
+
|
|
107
|
+
### Features Added
|
|
108
|
+
|
|
109
|
+
- Model `AzureFilesIdentityBasedAuthentication` added property `smb_o_auth_settings`
|
|
110
|
+
- Model `Endpoints` added property `ipv6_endpoints`
|
|
111
|
+
- Model `NetworkRuleSet` added property `ipv6_rules`
|
|
112
|
+
- Model `ProtocolSettings` added property `nfs`
|
|
113
|
+
- Model `SkuInformation` added property `location_info`
|
|
114
|
+
- Model `SmbSetting` added property `encryption_in_transit`
|
|
115
|
+
- Model `StorageAccount` added property `zones`
|
|
116
|
+
- Model `StorageAccount` added property `placement`
|
|
117
|
+
- Model `StorageAccount` added property `dual_stack_endpoint_preference`
|
|
118
|
+
- Model `StorageAccountCreateParameters` added property `zones`
|
|
119
|
+
- Model `StorageAccountCreateParameters` added property `placement`
|
|
120
|
+
- Model `StorageAccountCreateParameters` added property `dual_stack_endpoint_preference`
|
|
121
|
+
- Model `StorageAccountUpdateParameters` added property `zones`
|
|
122
|
+
- Model `StorageAccountUpdateParameters` added property `placement`
|
|
123
|
+
- Model `StorageAccountUpdateParameters` added property `dual_stack_endpoint_preference`
|
|
124
|
+
- Added model `DualStackEndpointPreference`
|
|
125
|
+
- Added model `EncryptionInTransit`
|
|
126
|
+
- Added enum `IntervalUnit`
|
|
127
|
+
- Added model `NfsSetting`
|
|
128
|
+
- Added model `Placement`
|
|
129
|
+
- Added model `SkuInformationLocationInfoItem`
|
|
130
|
+
- Added model `SmbOAuthSettings`
|
|
131
|
+
- Added model `StorageAccountIpv6Endpoints`
|
|
132
|
+
- Added enum `ZonePlacementPolicy`
|
|
133
|
+
|
|
134
|
+
## 23.0.1 (2025-06-30)
|
|
135
|
+
|
|
136
|
+
### Other Changes
|
|
137
|
+
|
|
138
|
+
- Fix for StorageTaskAssignmentsOperations
|
|
139
|
+
|
|
92
140
|
## 23.0.0 (2025-05-15)
|
|
93
141
|
|
|
94
142
|
### Breaking Changes
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
azure/mgmt/storage/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7k,1063
|
|
2
|
+
azure/mgmt/storage/_configuration.py,sha256=3xtnJ_2sI3nARDqCJ2926s8ADvbDL_SO6LxkY2ANZE4,3359
|
|
3
|
+
azure/mgmt/storage/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
4
|
+
azure/mgmt/storage/_storage_management_client.py,sha256=-AeEATIGxGXSOr1P6OV3rxwg1hGbE13yRXCHfh1hjd0,13135
|
|
5
|
+
azure/mgmt/storage/_version.py,sha256=yI34UTXFIy0iFOHxN5sIsTcCTHq_39J0dfzQ5qwC9Lg,346
|
|
6
|
+
azure/mgmt/storage/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
|
7
|
+
azure/mgmt/storage/_utils/__init__.py,sha256=sbjmEEjeH9Sr8xo3lkmUvyHuZkKo3xPbPehsxe7iQjE,452
|
|
8
|
+
azure/mgmt/storage/_utils/serialization.py,sha256=M0xRh7CzsPyQfr0h-Nbb14qAdUTjk2eMqxSGpBEWujI,81966
|
|
9
|
+
azure/mgmt/storage/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
|
|
10
|
+
azure/mgmt/storage/aio/_configuration.py,sha256=3Hi4aZgbmXiGYKWHXg89Giytre9wmOzLYF19B7bzNIc,3407
|
|
11
|
+
azure/mgmt/storage/aio/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
12
|
+
azure/mgmt/storage/aio/_storage_management_client.py,sha256=7emmDswZmTKVXu3N8IKXl6jbJQXdHUWU1rx-N51XLlM,13419
|
|
13
|
+
azure/mgmt/storage/aio/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
|
14
|
+
azure/mgmt/storage/aio/operations/_blob_containers_operations.py,sha256=raQfjr96e5-Bd3IE0cMgEGlv05kDdGYeP4B_wnRMt8k,87855
|
|
15
|
+
azure/mgmt/storage/aio/operations/_blob_inventory_policies_operations.py,sha256=Mnzxo3IPf-FRx9AUpjhqbGvs_40_tqNlFxHJ5bEzz00,19532
|
|
16
|
+
azure/mgmt/storage/aio/operations/_blob_services_operations.py,sha256=f7yek0rC0DzDoU221MzRdIbLHu6WwfJEtgkDd0yMqKU,16214
|
|
17
|
+
azure/mgmt/storage/aio/operations/_deleted_accounts_operations.py,sha256=ZXGVpNGxR1nWQF4jd8ZzcJje8JC3u_GXU9pjWJ0APEE,8219
|
|
18
|
+
azure/mgmt/storage/aio/operations/_encryption_scopes_operations.py,sha256=TIS1ufKqi7JRUX_F8_LfxvL1VupypBm3pGvlGE3DwhQ,26608
|
|
19
|
+
azure/mgmt/storage/aio/operations/_file_services_operations.py,sha256=U5rGysx4YaiQABPsS2u3-rqAQ5B99XWwQpMjCyThh8I,21895
|
|
20
|
+
azure/mgmt/storage/aio/operations/_file_shares_operations.py,sha256=1RX-WnXGewBPWpg5xNoxwwKB7LTX3EuozbpnCnw_JKM,45283
|
|
21
|
+
azure/mgmt/storage/aio/operations/_local_users_operations.py,sha256=-_I0q9Y7xWuDEA8rNr5uGyqtbI_AxfAHNzGcFWmDJ5o,25988
|
|
22
|
+
azure/mgmt/storage/aio/operations/_management_policies_operations.py,sha256=DU0HyP__TpAscrDE6ZROfMgyQNzvdkDUDaW6cjRazGI,15063
|
|
23
|
+
azure/mgmt/storage/aio/operations/_network_security_perimeter_configurations_operations.py,sha256=8rVO6qOtc7Tm5HPTXNNZJ-F7yalh-InSKvCU9BD1cLc,15919
|
|
24
|
+
azure/mgmt/storage/aio/operations/_object_replication_policies_operations.py,sha256=e-2N_oB9pLk5FlkH-YS_Q-Q-vwuPkQgnXakoyROwYiQ,20834
|
|
25
|
+
azure/mgmt/storage/aio/operations/_operations.py,sha256=GcMg0edEvVs5qXG7xGA5BdM2ojtB_nTw0fcwnSbPs20,5491
|
|
26
|
+
azure/mgmt/storage/aio/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
27
|
+
azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py,sha256=70ULAY3JKz1v3HvPFVW_spNOJ6_iX7cxZuan_xgrxls,19489
|
|
28
|
+
azure/mgmt/storage/aio/operations/_private_link_resources_operations.py,sha256=Ni7gF-qPqT5GLDNd1Pvd-T8lvzmqp7bpOX2CnVKfVk4,4960
|
|
29
|
+
azure/mgmt/storage/aio/operations/_queue_operations.py,sha256=s6k8u0dLl66rlwlGknFCaDoTjQGzRjVryaERPSHdWtE,26968
|
|
30
|
+
azure/mgmt/storage/aio/operations/_queue_services_operations.py,sha256=XWFV25QVYak63jeUiEkYKjgbi_geLwKvglQY8RxmJ4Y,14689
|
|
31
|
+
azure/mgmt/storage/aio/operations/_skus_operations.py,sha256=oPjoV_NIJAOV8iBLhA-aaFLpIgtbq7rqLCHQRqOkMKo,5601
|
|
32
|
+
azure/mgmt/storage/aio/operations/_storage_accounts_operations.py,sha256=PVQEJmpojn-wbjK2CiVlc_rMmWkdvrjAROwEkt0PkA4,103244
|
|
33
|
+
azure/mgmt/storage/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=1RwvCrE3zTrTQtfEqnzGVatn_L5dlcCyZAqKhc49xsY,7761
|
|
34
|
+
azure/mgmt/storage/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=d4C22qkrLW3vG0okxp1Fv4f1ZmHpDsTyro9joMqW9KE,7339
|
|
35
|
+
azure/mgmt/storage/aio/operations/_storage_task_assignments_operations.py,sha256=Q1zlTfvWkWdS-khqon9KZ1ke7piHQqswePi4VuhxwEo,39282
|
|
36
|
+
azure/mgmt/storage/aio/operations/_table_operations.py,sha256=JICdKrHdspBtJoBy6ArDFURlOloEyphlwVNPTBLn76k,25792
|
|
37
|
+
azure/mgmt/storage/aio/operations/_table_services_operations.py,sha256=abuJt8L0kViJZU5SIzwFHz2uy5RXRZJiiTbPgzF_FQI,14689
|
|
38
|
+
azure/mgmt/storage/aio/operations/_usages_operations.py,sha256=kmJyFHDp1g3WBa-4qYC_yJWSkrzMhqa0iQFoW539WeE,5796
|
|
39
|
+
azure/mgmt/storage/models/__init__.py,sha256=at6cbFrxxBsMYwMjJEazb3CFKHvIHFIwfBIOsR3k5bQ,15685
|
|
40
|
+
azure/mgmt/storage/models/_models_py3.py,sha256=QJCTBX5gYOAu31VncZfG2_CwMxFJBGBWLuNtnV4yV8I,510666
|
|
41
|
+
azure/mgmt/storage/models/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
42
|
+
azure/mgmt/storage/models/_storage_management_client_enums.py,sha256=9F6sq-h34QO-DTlxnNu8JhjSj0ZOLXfvAHt11cD9CoI,22413
|
|
43
|
+
azure/mgmt/storage/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
|
44
|
+
azure/mgmt/storage/operations/_blob_containers_operations.py,sha256=tULjqnjlmAIb9_dkhF3SCjlMP_wi2t3yqz53XgyYm_I,113199
|
|
45
|
+
azure/mgmt/storage/operations/_blob_inventory_policies_operations.py,sha256=MPeSkGuTO7aMoCTugrpT1j-Ho7wExWrNRfYFWdl3rw4,26120
|
|
46
|
+
azure/mgmt/storage/operations/_blob_services_operations.py,sha256=cRglewjcLIqLFmYtq6BwHcqzRon5Ja8bm4bV2BGW0XY,21012
|
|
47
|
+
azure/mgmt/storage/operations/_deleted_accounts_operations.py,sha256=Z8MR-uOvT1PYVPy4qOIZAs8ov-NFx8_e1__TGVCJVvA,10399
|
|
48
|
+
azure/mgmt/storage/operations/_encryption_scopes_operations.py,sha256=Q0tgrHqZWJfF1WcBBqvHHGktyKRl1Re2BOyklRR2YqA,33795
|
|
49
|
+
azure/mgmt/storage/operations/_file_services_operations.py,sha256=E6P6lRW1oeqH3Z3m-8ObBaN6inOuQC7hAKkDujc0Dx0,30371
|
|
50
|
+
azure/mgmt/storage/operations/_file_shares_operations.py,sha256=rcXf096ue_tIY3lZ0VraY5xBK_a3L2GDpLboPJMYtz4,58486
|
|
51
|
+
azure/mgmt/storage/operations/_local_users_operations.py,sha256=acGocZRYu1BnvRGZRuYjb6e6FotidB2Dfnjg-iimPI8,35882
|
|
52
|
+
azure/mgmt/storage/operations/_management_policies_operations.py,sha256=DBqvpi6-ZvA3RjYi7oQZGV81IhSMMAiGy8ZNrGKMSek,20038
|
|
53
|
+
azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py,sha256=5L8aj7JD6r3BakZT1YqvAoDYgDebYy6ijM7LGKdEVfg,20776
|
|
54
|
+
azure/mgmt/storage/operations/_object_replication_policies_operations.py,sha256=gdvApucoy72L3cn99FrXD7G4-4azc9lmydAXH3aPnAU,27411
|
|
55
|
+
azure/mgmt/storage/operations/_operations.py,sha256=ZBUqjTORaqR_K2bcPt8QbrSf0DYf52cbgf6VMvAiTHU,6153
|
|
56
|
+
azure/mgmt/storage/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
57
|
+
azure/mgmt/storage/operations/_private_endpoint_connections_operations.py,sha256=LhcKu-BBX4kl6LJlvWyHWlbOfRI-_W0oWf1bnAxJOPY,26135
|
|
58
|
+
azure/mgmt/storage/operations/_private_link_resources_operations.py,sha256=vRrZTZvuxfxh3FgZGe6euXKew2TRWa4F2VdfrZUqbgc,6423
|
|
59
|
+
azure/mgmt/storage/operations/_queue_operations.py,sha256=AvS6i23ji9HkgNXszOVKYXIHCbi8HdZ-H1F7vF4aTT8,35963
|
|
60
|
+
azure/mgmt/storage/operations/_queue_services_operations.py,sha256=Rb48L43AaWiqfcOkcRNFKzGLDslUmCGqm4eDTJyTL6g,19605
|
|
61
|
+
azure/mgmt/storage/operations/_skus_operations.py,sha256=_vujeEX_xZIl1Qw2fWIyPKQZ7-R44WmPI-td4fZnAns,6511
|
|
62
|
+
azure/mgmt/storage/operations/_storage_accounts_operations.py,sha256=Nf5cdg9Chl4pYoOoT5vJw-5MGPEQTb3kR2L03SIT97U,129021
|
|
63
|
+
azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py,sha256=oAPHjPemLw5Z0-A7PDTRuCZJshziNiNYZwES9gKJ9iU,9732
|
|
64
|
+
azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py,sha256=CKjS-x341h8RNx-7c-52HbzWbz8aZfMiDbBuYlYys1A,8955
|
|
65
|
+
azure/mgmt/storage/operations/_storage_task_assignments_operations.py,sha256=U2K3fjAZ_l--KBJVCo_D8nS34xfXvjeRklQespY-wkM,47738
|
|
66
|
+
azure/mgmt/storage/operations/_table_operations.py,sha256=B-BDxwU6JWNvWdnVSHXjVymoLrLZ3R8nwn6a9WKU4iU,34177
|
|
67
|
+
azure/mgmt/storage/operations/_table_services_operations.py,sha256=vJHCIDAksIfKyFWpB1GLUQ4ftJf1blLMg4UrJemt9Vo,19605
|
|
68
|
+
azure/mgmt/storage/operations/_usages_operations.py,sha256=RH3yfR8RZDuzpyolYjwLqwcoMlEodyVkgvkNd347qQg,6822
|
|
69
|
+
azure_mgmt_storage-23.1.0.dist-info/licenses/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
|
|
70
|
+
azure_mgmt_storage-23.1.0.dist-info/METADATA,sha256=J9a1exAa0oZqpIUlN5bFKqNxSc4CTRkVtasUPIT23d0,35705
|
|
71
|
+
azure_mgmt_storage-23.1.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
72
|
+
azure_mgmt_storage-23.1.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
|
73
|
+
azure_mgmt_storage-23.1.0.dist-info/RECORD,,
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
azure/mgmt/storage/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7k,1063
|
|
2
|
-
azure/mgmt/storage/_configuration.py,sha256=ueW5a5NL02MKrK9ldI1VrJHWCM_EtajIXy6AS3lFuMY,3359
|
|
3
|
-
azure/mgmt/storage/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
4
|
-
azure/mgmt/storage/_storage_management_client.py,sha256=yBPRDxnFWAO5liHdqELumnm3mePNeWmWnl61Avnd8lc,13135
|
|
5
|
-
azure/mgmt/storage/_version.py,sha256=GI5TBgaYIRCxC0yMcrusehf_4Jy-RS_1yWmgBkmmUMg,346
|
|
6
|
-
azure/mgmt/storage/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
|
7
|
-
azure/mgmt/storage/_utils/__init__.py,sha256=sbjmEEjeH9Sr8xo3lkmUvyHuZkKo3xPbPehsxe7iQjE,452
|
|
8
|
-
azure/mgmt/storage/_utils/serialization.py,sha256=M0xRh7CzsPyQfr0h-Nbb14qAdUTjk2eMqxSGpBEWujI,81966
|
|
9
|
-
azure/mgmt/storage/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
|
|
10
|
-
azure/mgmt/storage/aio/_configuration.py,sha256=zOGd3GdE0M5_rHawiiKhqZAGA6jqOe4Y_9TihUXQJZ0,3407
|
|
11
|
-
azure/mgmt/storage/aio/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
12
|
-
azure/mgmt/storage/aio/_storage_management_client.py,sha256=rjLSybK3pqnt4vEg9n5yotcup63h6XiSDEteMp3sPtg,13419
|
|
13
|
-
azure/mgmt/storage/aio/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
|
14
|
-
azure/mgmt/storage/aio/operations/_blob_containers_operations.py,sha256=dEog48BuOjfFU_RZFRltlXPEKIuw3Pe1MOTxaoT08FI,87922
|
|
15
|
-
azure/mgmt/storage/aio/operations/_blob_inventory_policies_operations.py,sha256=KHG_of2gyD6QNPezgUvfE5JJn4Wb5pzxJ4FndS2SAJo,19546
|
|
16
|
-
azure/mgmt/storage/aio/operations/_blob_services_operations.py,sha256=bYgGX9ZXYiphEh2_UtiFTWOpUAHnJh1tsTMaYEJjlsE,16228
|
|
17
|
-
azure/mgmt/storage/aio/operations/_deleted_accounts_operations.py,sha256=YZ2W0huJVtGKUb-25oMCl8iKZX08WS6Xn9s3ZYmroco,8233
|
|
18
|
-
azure/mgmt/storage/aio/operations/_encryption_scopes_operations.py,sha256=8L6R1sXZao9gT-_1HV4hGg8JkEH5OwDQYzRfdBmL7eo,26622
|
|
19
|
-
azure/mgmt/storage/aio/operations/_file_services_operations.py,sha256=6vdIVu-ltgfyq_7yIPB7yp5FG1XJlTBN19o97NuQ8mU,21909
|
|
20
|
-
azure/mgmt/storage/aio/operations/_file_shares_operations.py,sha256=JbOhSHuSjifU-tQEE2pFBNFWxmRBkWfcJzxafycMz34,45297
|
|
21
|
-
azure/mgmt/storage/aio/operations/_local_users_operations.py,sha256=e40trJ09-aZ2_izMT-ROjarh93QkVHFDDIMt55jrtNY,26002
|
|
22
|
-
azure/mgmt/storage/aio/operations/_management_policies_operations.py,sha256=DU0HyP__TpAscrDE6ZROfMgyQNzvdkDUDaW6cjRazGI,15063
|
|
23
|
-
azure/mgmt/storage/aio/operations/_network_security_perimeter_configurations_operations.py,sha256=inTZoZ54fnyef0x2OiIpvQ38GHnGlf2QUJJWn2PF5bM,15933
|
|
24
|
-
azure/mgmt/storage/aio/operations/_object_replication_policies_operations.py,sha256=07MgxYcdJ04bclEG6DM8dFQX9Jp7abCIkmvBWSPWdeQ,20848
|
|
25
|
-
azure/mgmt/storage/aio/operations/_operations.py,sha256=gcd3tAx12zkFsVfi-iMx-rJTDTIOkW1nyHvrpBSWEb0,5505
|
|
26
|
-
azure/mgmt/storage/aio/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
27
|
-
azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py,sha256=6rSg-NDIz1qQTLx4P1jrsD4-xBMagKO_ybFGPMudgfQ,19503
|
|
28
|
-
azure/mgmt/storage/aio/operations/_private_link_resources_operations.py,sha256=Ni7gF-qPqT5GLDNd1Pvd-T8lvzmqp7bpOX2CnVKfVk4,4960
|
|
29
|
-
azure/mgmt/storage/aio/operations/_queue_operations.py,sha256=KKhYBZSkSK0s2BJywQdojs7QAdEusOc0uDnBc2ai9wY,26982
|
|
30
|
-
azure/mgmt/storage/aio/operations/_queue_services_operations.py,sha256=XWFV25QVYak63jeUiEkYKjgbi_geLwKvglQY8RxmJ4Y,14689
|
|
31
|
-
azure/mgmt/storage/aio/operations/_skus_operations.py,sha256=LmOzYAS7n0BYiSOdY7UH-K-xWrB9hzeFqW5hXtQzMR0,5615
|
|
32
|
-
azure/mgmt/storage/aio/operations/_storage_accounts_operations.py,sha256=exgAVlPjJ5okXSEw-WEOfIjh_ewFUmw7K2IAmbWxCw0,103310
|
|
33
|
-
azure/mgmt/storage/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=2Kx4SINqCxXdtpkdEKG1cGYsu2FxBjG18ugL8IfIAwM,7775
|
|
34
|
-
azure/mgmt/storage/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=HwArlu2phEt4m8ui7_fT4bb8bOzTyI29WoIQvWFFS7I,7353
|
|
35
|
-
azure/mgmt/storage/aio/operations/_storage_task_assignments_operations.py,sha256=vdiEpzCpzzbDTOEGkbVcRPLOEVPA6Qg8U0hNIeGcW14,38738
|
|
36
|
-
azure/mgmt/storage/aio/operations/_table_operations.py,sha256=2KHVd-uv15yIcNv8_n_Z5ROiedYKrWttcj7tL34bxrc,25806
|
|
37
|
-
azure/mgmt/storage/aio/operations/_table_services_operations.py,sha256=abuJt8L0kViJZU5SIzwFHz2uy5RXRZJiiTbPgzF_FQI,14689
|
|
38
|
-
azure/mgmt/storage/aio/operations/_usages_operations.py,sha256=9DE5G0ywZVxkcQXcJx5n18E906qEpTHyUqZc1MbX9zk,5810
|
|
39
|
-
azure/mgmt/storage/models/__init__.py,sha256=CdHsbSUsb_LsQkB4yRZIKzLin2E3fGvknFJJJ3N6ibE,15221
|
|
40
|
-
azure/mgmt/storage/models/_models_py3.py,sha256=Y2vIYQcRDfTH7ZgXPgbVa86HSbclw4qdemAHELddM2I,490625
|
|
41
|
-
azure/mgmt/storage/models/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
42
|
-
azure/mgmt/storage/models/_storage_management_client_enums.py,sha256=BT5Q3gd6uOl1oPPtsaNrPBdSPrTwwx8Spjm1yHqzZhM,21630
|
|
43
|
-
azure/mgmt/storage/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
|
44
|
-
azure/mgmt/storage/operations/_blob_containers_operations.py,sha256=0vJfnQiBmpcGJtFelDq46oO4sUxjHMOm4R4XsuNp9c0,113200
|
|
45
|
-
azure/mgmt/storage/operations/_blob_inventory_policies_operations.py,sha256=Mvg8mH0RLeNnSmSIS5c4G2PGL76dTbjmA8dtPcw_NgY,26121
|
|
46
|
-
azure/mgmt/storage/operations/_blob_services_operations.py,sha256=-mYuegryssggkr8BgmYw4cuubkXTrCE2K1qhlw_qCYA,21013
|
|
47
|
-
azure/mgmt/storage/operations/_deleted_accounts_operations.py,sha256=L4_cUEnojYNCKHrmCszMhTk5CklYxB3ZjiXDDX0b9PU,10400
|
|
48
|
-
azure/mgmt/storage/operations/_encryption_scopes_operations.py,sha256=FgZdbhDfqnZFX0pANp-jkaPHCOqONCS7hLgM-yulVn0,33796
|
|
49
|
-
azure/mgmt/storage/operations/_file_services_operations.py,sha256=jyeHEbvWwJ3KFjVQYoClhzo2-yWaohzEuzhKh5jOzMw,30372
|
|
50
|
-
azure/mgmt/storage/operations/_file_shares_operations.py,sha256=KtX4MAaAY32JWUi1sDYUfQyeYzpVo7WL2rONJD2-LdI,58487
|
|
51
|
-
azure/mgmt/storage/operations/_local_users_operations.py,sha256=ljUUStsNRQH6tgn7PCjSOleaIkAJQkf_3EkPeh-e7e8,35883
|
|
52
|
-
azure/mgmt/storage/operations/_management_policies_operations.py,sha256=kV_py8FUq5G2LwMi-5MteFoIlSKzmskWbSa9xaAOPs8,20030
|
|
53
|
-
azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py,sha256=HZb993lDSe6ou9fHizBxqi-TEF3e0dtQrgdQ9B-rWcA,20777
|
|
54
|
-
azure/mgmt/storage/operations/_object_replication_policies_operations.py,sha256=1KAplDiKUa-1udk8LmrOi6BrFaNP9-aZlLzk9adF01g,27412
|
|
55
|
-
azure/mgmt/storage/operations/_operations.py,sha256=99jebIBzbiPfUxTMyk592FBpsexCXAhhtbWT3TvVZM4,6154
|
|
56
|
-
azure/mgmt/storage/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
57
|
-
azure/mgmt/storage/operations/_private_endpoint_connections_operations.py,sha256=110VdNSnT2Zup8_YQqtUSDEW-U_i-anrobw_4PPzVys,26136
|
|
58
|
-
azure/mgmt/storage/operations/_private_link_resources_operations.py,sha256=eckhSQdaENhlgV_0_KU8c8Iw3tspvB4RFpw4uqMr3iw,6415
|
|
59
|
-
azure/mgmt/storage/operations/_queue_operations.py,sha256=gwwpPhEmBfWS9Quyy53UPWdJH25Nu40TyXNGOL3AFr4,35964
|
|
60
|
-
azure/mgmt/storage/operations/_queue_services_operations.py,sha256=cVc8CSqo1GsS0rVdxmQ0QpQfZObu0owKcPVPpPcemtE,19597
|
|
61
|
-
azure/mgmt/storage/operations/_skus_operations.py,sha256=aduOWkQV2xkeTW2NSOH5WNX_JpJ6XUszq2HUKKxxX1g,6512
|
|
62
|
-
azure/mgmt/storage/operations/_storage_accounts_operations.py,sha256=YbuHBKeR_Ztk3y9ofc5CQGO5eyhaaL_isaObYfdtm58,129021
|
|
63
|
-
azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py,sha256=H5Jtu5zN__5Un769q0RgEPaDIbcdUiPvUO9zBLQQKGE,9733
|
|
64
|
-
azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py,sha256=eNpLGhZ0K_W0W49hL7nmvyBkJ7lh2zlT5PZNCxemmyA,8956
|
|
65
|
-
azure/mgmt/storage/operations/_storage_task_assignments_operations.py,sha256=go3brWQDumnMtRXQ6lbG4brZRKMW4a5cFva-CNuXXQU,47232
|
|
66
|
-
azure/mgmt/storage/operations/_table_operations.py,sha256=CADc1J8-Yzb1JGTvJLDOsKvoDjoIgPTyOnXsA8Bc97E,34178
|
|
67
|
-
azure/mgmt/storage/operations/_table_services_operations.py,sha256=ISKJmOCDFMkzvjJ8iAuSXzyRB8tFy2nBdipg3K0cQ2g,19597
|
|
68
|
-
azure/mgmt/storage/operations/_usages_operations.py,sha256=d3yLnaTn1b9A0I-3Y6-9A9nmwHUuaRJSGdndIHEnlJI,6823
|
|
69
|
-
azure_mgmt_storage-23.0.0.dist-info/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
|
|
70
|
-
azure_mgmt_storage-23.0.0.dist-info/METADATA,sha256=a4K6BhgSglVzWWogXVK_SaaOLUXHHap7OHgrhnY30UM,33929
|
|
71
|
-
azure_mgmt_storage-23.0.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
72
|
-
azure_mgmt_storage-23.0.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
|
73
|
-
azure_mgmt_storage-23.0.0.dist-info/RECORD,,
|
{azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.1.0.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|