azure-mgmt-storage 23.1.0__py3-none-any.whl → 24.0.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 +15 -4
- azure/mgmt/storage/_storage_management_client.py +18 -4
- azure/mgmt/storage/_utils/serialization.py +12 -14
- azure/mgmt/storage/_version.py +1 -1
- azure/mgmt/storage/aio/_configuration.py +15 -4
- azure/mgmt/storage/aio/_storage_management_client.py +18 -4
- azure/mgmt/storage/aio/operations/_blob_containers_operations.py +9 -5
- azure/mgmt/storage/aio/operations/_blob_inventory_policies_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_blob_services_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_deleted_accounts_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_encryption_scopes_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_file_services_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_file_shares_operations.py +5 -3
- azure/mgmt/storage/aio/operations/_local_users_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_management_policies_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_network_security_perimeter_configurations_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_object_replication_policies_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_private_link_resources_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_queue_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_queue_services_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_skus_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_storage_accounts_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_storage_task_assignment_instances_report_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_storage_task_assignments_instances_report_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_storage_task_assignments_operations.py +7 -6
- azure/mgmt/storage/aio/operations/_table_operations.py +7 -4
- azure/mgmt/storage/aio/operations/_table_services_operations.py +3 -2
- azure/mgmt/storage/aio/operations/_usages_operations.py +3 -2
- azure/mgmt/storage/models/__init__.py +4 -0
- azure/mgmt/storage/models/_models_py3.py +195 -93
- azure/mgmt/storage/operations/_blob_containers_operations.py +23 -19
- azure/mgmt/storage/operations/_blob_inventory_policies_operations.py +7 -6
- azure/mgmt/storage/operations/_blob_services_operations.py +6 -5
- azure/mgmt/storage/operations/_deleted_accounts_operations.py +5 -4
- azure/mgmt/storage/operations/_encryption_scopes_operations.py +7 -6
- azure/mgmt/storage/operations/_file_services_operations.py +8 -7
- azure/mgmt/storage/operations/_file_shares_operations.py +12 -10
- azure/mgmt/storage/operations/_local_users_operations.py +9 -8
- azure/mgmt/storage/operations/_management_policies_operations.py +6 -5
- azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py +6 -5
- azure/mgmt/storage/operations/_object_replication_policies_operations.py +7 -6
- azure/mgmt/storage/operations/_operations.py +4 -3
- azure/mgmt/storage/operations/_private_endpoint_connections_operations.py +7 -6
- azure/mgmt/storage/operations/_private_link_resources_operations.py +4 -3
- azure/mgmt/storage/operations/_queue_operations.py +8 -7
- azure/mgmt/storage/operations/_queue_services_operations.py +6 -5
- azure/mgmt/storage/operations/_skus_operations.py +4 -3
- azure/mgmt/storage/operations/_storage_accounts_operations.py +21 -20
- azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py +5 -4
- azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py +4 -3
- azure/mgmt/storage/operations/_storage_task_assignments_operations.py +19 -23
- azure/mgmt/storage/operations/_table_operations.py +12 -9
- azure/mgmt/storage/operations/_table_services_operations.py +6 -5
- azure/mgmt/storage/operations/_usages_operations.py +4 -3
- {azure_mgmt_storage-23.1.0.dist-info → azure_mgmt_storage-24.0.0.dist-info}/METADATA +22 -21
- azure_mgmt_storage-24.0.0.dist-info/RECORD +73 -0
- azure_mgmt_storage-23.1.0.dist-info/RECORD +0 -73
- {azure_mgmt_storage-23.1.0.dist-info → azure_mgmt_storage-24.0.0.dist-info}/WHEEL +0 -0
- {azure_mgmt_storage-23.1.0.dist-info → azure_mgmt_storage-24.0.0.dist-info}/licenses/LICENSE +0 -0
- {azure_mgmt_storage-23.1.0.dist-info → azure_mgmt_storage-24.0.0.dist-info}/top_level.txt +0 -0
|
@@ -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,
|
|
11
|
+
from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload
|
|
12
12
|
import urllib.parse
|
|
13
13
|
|
|
14
14
|
from azure.core import PipelineClient
|
|
@@ -36,7 +36,8 @@ from .._configuration import StorageManagementClientConfiguration
|
|
|
36
36
|
from .._utils.serialization import Deserializer, Serializer
|
|
37
37
|
|
|
38
38
|
T = TypeVar("T")
|
|
39
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T,
|
|
39
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]]
|
|
40
|
+
List = list
|
|
40
41
|
|
|
41
42
|
_SERIALIZER = Serializer()
|
|
42
43
|
_SERIALIZER.client_side_validation = False
|
|
@@ -48,7 +49,7 @@ def build_create_request(
|
|
|
48
49
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
49
50
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
50
51
|
|
|
51
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
52
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
52
53
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
53
54
|
accept = _headers.pop("Accept", "application/json")
|
|
54
55
|
|
|
@@ -71,7 +72,7 @@ def build_create_request(
|
|
|
71
72
|
"str",
|
|
72
73
|
max_length=24,
|
|
73
74
|
min_length=3,
|
|
74
|
-
pattern=r"^[a-z0-9]{
|
|
75
|
+
pattern=r"^[a-z][a-z0-9]{2,23}$",
|
|
75
76
|
),
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -94,7 +95,7 @@ def build_update_request(
|
|
|
94
95
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
95
96
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
96
97
|
|
|
97
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
98
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
98
99
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
99
100
|
accept = _headers.pop("Accept", "application/json")
|
|
100
101
|
|
|
@@ -117,7 +118,7 @@ def build_update_request(
|
|
|
117
118
|
"str",
|
|
118
119
|
max_length=24,
|
|
119
120
|
min_length=3,
|
|
120
|
-
pattern=r"^[a-z0-9]{
|
|
121
|
+
pattern=r"^[a-z][a-z0-9]{2,23}$",
|
|
121
122
|
),
|
|
122
123
|
}
|
|
123
124
|
|
|
@@ -140,7 +141,7 @@ def build_get_request(
|
|
|
140
141
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
141
142
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
142
143
|
|
|
143
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
144
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
144
145
|
accept = _headers.pop("Accept", "application/json")
|
|
145
146
|
|
|
146
147
|
# Construct URL
|
|
@@ -162,7 +163,7 @@ def build_get_request(
|
|
|
162
163
|
"str",
|
|
163
164
|
max_length=24,
|
|
164
165
|
min_length=3,
|
|
165
|
-
pattern=r"^[a-z0-9]{
|
|
166
|
+
pattern=r"^[a-z][a-z0-9]{2,23}$",
|
|
166
167
|
),
|
|
167
168
|
}
|
|
168
169
|
|
|
@@ -183,7 +184,7 @@ def build_delete_request(
|
|
|
183
184
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
184
185
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
185
186
|
|
|
186
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
187
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
187
188
|
accept = _headers.pop("Accept", "application/json")
|
|
188
189
|
|
|
189
190
|
# Construct URL
|
|
@@ -205,7 +206,7 @@ def build_delete_request(
|
|
|
205
206
|
"str",
|
|
206
207
|
max_length=24,
|
|
207
208
|
min_length=3,
|
|
208
|
-
pattern=r"^[a-z0-9]{
|
|
209
|
+
pattern=r"^[a-z][a-z0-9]{2,23}$",
|
|
209
210
|
),
|
|
210
211
|
}
|
|
211
212
|
|
|
@@ -221,17 +222,12 @@ def build_delete_request(
|
|
|
221
222
|
|
|
222
223
|
|
|
223
224
|
def build_list_request(
|
|
224
|
-
resource_group_name: str,
|
|
225
|
-
account_name: str,
|
|
226
|
-
subscription_id: str,
|
|
227
|
-
*,
|
|
228
|
-
maxpagesize: Optional[int] = None,
|
|
229
|
-
**kwargs: Any
|
|
225
|
+
resource_group_name: str, account_name: str, subscription_id: str, *, top: Optional[int] = None, **kwargs: Any
|
|
230
226
|
) -> HttpRequest:
|
|
231
227
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
232
228
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
233
229
|
|
|
234
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
230
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
235
231
|
accept = _headers.pop("Accept", "application/json")
|
|
236
232
|
|
|
237
233
|
# Construct URL
|
|
@@ -252,8 +248,8 @@ def build_list_request(
|
|
|
252
248
|
_url: str = _url.format(**path_format_arguments) # type: ignore
|
|
253
249
|
|
|
254
250
|
# Construct parameters
|
|
255
|
-
if
|
|
256
|
-
_params["$
|
|
251
|
+
if top is not None:
|
|
252
|
+
_params["$top"] = _SERIALIZER.query("top", top, "int")
|
|
257
253
|
_params["api-version"] = _SERIALIZER.query("api_version", api_version, "str")
|
|
258
254
|
|
|
259
255
|
# Construct headers
|
|
@@ -935,7 +931,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
935
931
|
|
|
936
932
|
@distributed_trace
|
|
937
933
|
def list(
|
|
938
|
-
self, resource_group_name: str, account_name: str,
|
|
934
|
+
self, resource_group_name: str, account_name: str, top: Optional[int] = None, **kwargs: Any
|
|
939
935
|
) -> ItemPaged["_models.StorageTaskAssignment"]:
|
|
940
936
|
"""List all the storage task assignments in an account.
|
|
941
937
|
|
|
@@ -946,9 +942,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
946
942
|
Storage account names must be between 3 and 24 characters in length and use numbers and
|
|
947
943
|
lower-case letters only. Required.
|
|
948
944
|
:type account_name: str
|
|
949
|
-
:param
|
|
945
|
+
:param top: Optional, specifies the maximum number of storage task assignment Ids to be
|
|
950
946
|
included in the list response. Default value is None.
|
|
951
|
-
:type
|
|
947
|
+
:type top: int
|
|
952
948
|
:return: An iterator like instance of either StorageTaskAssignment or the result of
|
|
953
949
|
cls(response)
|
|
954
950
|
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.storage.models.StorageTaskAssignment]
|
|
@@ -975,7 +971,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
975
971
|
resource_group_name=resource_group_name,
|
|
976
972
|
account_name=account_name,
|
|
977
973
|
subscription_id=self._config.subscription_id,
|
|
978
|
-
|
|
974
|
+
top=top,
|
|
979
975
|
api_version=api_version,
|
|
980
976
|
headers=_headers,
|
|
981
977
|
params=_params,
|
|
@@ -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,
|
|
11
|
+
from typing import Any, Callable, IO, Optional, TypeVar, Union, overload
|
|
12
12
|
import urllib.parse
|
|
13
13
|
|
|
14
14
|
from azure.core import PipelineClient
|
|
@@ -32,7 +32,8 @@ from .._configuration import StorageManagementClientConfiguration
|
|
|
32
32
|
from .._utils.serialization import Deserializer, Serializer
|
|
33
33
|
|
|
34
34
|
T = TypeVar("T")
|
|
35
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T,
|
|
35
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]]
|
|
36
|
+
List = list
|
|
36
37
|
|
|
37
38
|
_SERIALIZER = Serializer()
|
|
38
39
|
_SERIALIZER.client_side_validation = False
|
|
@@ -44,7 +45,7 @@ def build_create_request(
|
|
|
44
45
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
45
46
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
46
47
|
|
|
47
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
48
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
48
49
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
49
50
|
accept = _headers.pop("Accept", "application/json")
|
|
50
51
|
|
|
@@ -85,7 +86,7 @@ def build_update_request(
|
|
|
85
86
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
86
87
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
87
88
|
|
|
88
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
89
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
89
90
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
90
91
|
accept = _headers.pop("Accept", "application/json")
|
|
91
92
|
|
|
@@ -126,7 +127,7 @@ def build_get_request(
|
|
|
126
127
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
127
128
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
128
129
|
|
|
129
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
130
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
130
131
|
accept = _headers.pop("Accept", "application/json")
|
|
131
132
|
|
|
132
133
|
# Construct URL
|
|
@@ -164,7 +165,7 @@ def build_delete_request(
|
|
|
164
165
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
165
166
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
166
167
|
|
|
167
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
168
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
168
169
|
accept = _headers.pop("Accept", "application/json")
|
|
169
170
|
|
|
170
171
|
# Construct URL
|
|
@@ -200,7 +201,7 @@ def build_list_request(resource_group_name: str, account_name: str, subscription
|
|
|
200
201
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
201
202
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
202
203
|
|
|
203
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
204
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
204
205
|
accept = _headers.pop("Accept", "application/json")
|
|
205
206
|
|
|
206
207
|
# Construct URL
|
|
@@ -358,9 +359,10 @@ class TableOperations:
|
|
|
358
359
|
|
|
359
360
|
api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version))
|
|
360
361
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
362
|
+
content_type = content_type if parameters else None
|
|
361
363
|
cls: ClsType[_models.Table] = kwargs.pop("cls", None)
|
|
362
364
|
|
|
363
|
-
content_type = content_type or "application/json"
|
|
365
|
+
content_type = content_type or "application/json" if parameters else None
|
|
364
366
|
_json = None
|
|
365
367
|
_content = None
|
|
366
368
|
if isinstance(parameters, (IOBase, bytes)):
|
|
@@ -513,9 +515,10 @@ class TableOperations:
|
|
|
513
515
|
|
|
514
516
|
api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version))
|
|
515
517
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
518
|
+
content_type = content_type if parameters else None
|
|
516
519
|
cls: ClsType[_models.Table] = kwargs.pop("cls", None)
|
|
517
520
|
|
|
518
|
-
content_type = content_type or "application/json"
|
|
521
|
+
content_type = content_type or "application/json" if parameters else None
|
|
519
522
|
_json = None
|
|
520
523
|
_content = None
|
|
521
524
|
if isinstance(parameters, (IOBase, bytes)):
|
|
@@ -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,
|
|
11
|
+
from typing import Any, Callable, IO, Literal, Optional, TypeVar, Union, overload
|
|
12
12
|
|
|
13
13
|
from azure.core import PipelineClient
|
|
14
14
|
from azure.core.exceptions import (
|
|
@@ -30,7 +30,8 @@ from .._configuration import StorageManagementClientConfiguration
|
|
|
30
30
|
from .._utils.serialization import Deserializer, Serializer
|
|
31
31
|
|
|
32
32
|
T = TypeVar("T")
|
|
33
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T,
|
|
33
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]]
|
|
34
|
+
List = list
|
|
34
35
|
|
|
35
36
|
_SERIALIZER = Serializer()
|
|
36
37
|
_SERIALIZER.client_side_validation = False
|
|
@@ -40,7 +41,7 @@ def build_list_request(resource_group_name: str, account_name: str, subscription
|
|
|
40
41
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
41
42
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
42
43
|
|
|
43
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
44
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
44
45
|
accept = _headers.pop("Accept", "application/json")
|
|
45
46
|
|
|
46
47
|
# Construct URL
|
|
@@ -75,7 +76,7 @@ def build_set_service_properties_request(
|
|
|
75
76
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
76
77
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
77
78
|
|
|
78
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
79
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
79
80
|
table_service_name: Literal["default"] = kwargs.pop("table_service_name", "default")
|
|
80
81
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
81
82
|
accept = _headers.pop("Accept", "application/json")
|
|
@@ -115,7 +116,7 @@ def build_get_service_properties_request(
|
|
|
115
116
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
116
117
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
117
118
|
|
|
118
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
119
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
119
120
|
table_service_name: Literal["default"] = kwargs.pop("table_service_name", "default")
|
|
120
121
|
accept = _headers.pop("Accept", "application/json")
|
|
121
122
|
|
|
@@ -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,
|
|
9
|
+
from typing import Any, Callable, Optional, TypeVar
|
|
10
10
|
import urllib.parse
|
|
11
11
|
|
|
12
12
|
from azure.core import PipelineClient
|
|
@@ -30,7 +30,8 @@ from .._configuration import StorageManagementClientConfiguration
|
|
|
30
30
|
from .._utils.serialization import Deserializer, Serializer
|
|
31
31
|
|
|
32
32
|
T = TypeVar("T")
|
|
33
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T,
|
|
33
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]]
|
|
34
|
+
List = list
|
|
34
35
|
|
|
35
36
|
_SERIALIZER = Serializer()
|
|
36
37
|
_SERIALIZER.client_side_validation = False
|
|
@@ -40,7 +41,7 @@ def build_list_by_location_request(location: str, subscription_id: str, **kwargs
|
|
|
40
41
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
|
41
42
|
_params = case_insensitive_dict(kwargs.pop("params", {}) or {})
|
|
42
43
|
|
|
43
|
-
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-
|
|
44
|
+
api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-06-01"))
|
|
44
45
|
accept = _headers.pop("Accept", "application/json")
|
|
45
46
|
|
|
46
47
|
# Construct URL
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: azure-mgmt-storage
|
|
3
|
-
Version:
|
|
3
|
+
Version: 24.0.0
|
|
4
4
|
Summary: Microsoft Azure Storage Management Client Library for Python
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
5
|
+
Author-email: Microsoft Corporation <azpysdkhelp@microsoft.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: repository, https://github.com/Azure/azure-sdk-for-python
|
|
9
8
|
Keywords: azure,azure sdk
|
|
10
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
10
|
Classifier: Programming Language :: Python
|
|
@@ -16,26 +15,13 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
20
18
|
Requires-Python: >=3.9
|
|
21
19
|
Description-Content-Type: text/markdown
|
|
22
20
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist: typing-extensions>=4.6.0
|
|
25
|
-
Requires-Dist: azure-common>=1.1
|
|
21
|
+
Requires-Dist: msrest>=0.7.1
|
|
26
22
|
Requires-Dist: azure-mgmt-core>=1.6.0
|
|
27
|
-
|
|
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
|
|
23
|
+
Requires-Dist: typing-extensions>=4.6.0
|
|
35
24
|
Dynamic: license-file
|
|
36
|
-
Dynamic: requires-dist
|
|
37
|
-
Dynamic: requires-python
|
|
38
|
-
Dynamic: summary
|
|
39
25
|
|
|
40
26
|
# Microsoft Azure SDK for Python
|
|
41
27
|
|
|
@@ -99,9 +85,24 @@ If you encounter any bugs or have suggestions, please file an issue in the
|
|
|
99
85
|
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
|
|
100
86
|
section of the project.
|
|
101
87
|
|
|
102
|
-
|
|
103
88
|
# Release History
|
|
104
89
|
|
|
90
|
+
## 24.0.0 (2025-10-22)
|
|
91
|
+
|
|
92
|
+
### Features Added
|
|
93
|
+
|
|
94
|
+
- Model `StorageManagementClient` added parameter `cloud_setting` in method `__init__`
|
|
95
|
+
- Model `ObjectReplicationPolicy` added property `priority_replication`
|
|
96
|
+
- Model `StorageAccount` added property `geo_priority_replication_status`
|
|
97
|
+
- Model `StorageAccountCreateParameters` added property `geo_priority_replication_status`
|
|
98
|
+
- Model `StorageAccountUpdateParameters` added property `geo_priority_replication_status`
|
|
99
|
+
- Added model `GeoPriorityReplicationStatus`
|
|
100
|
+
- Added model `ObjectReplicationPolicyPropertiesPriorityReplication`
|
|
101
|
+
|
|
102
|
+
### Breaking Changes
|
|
103
|
+
|
|
104
|
+
- Method `StorageTaskAssignmentsOperations.list` renamed its parameter from `maxpagesize` to `top`
|
|
105
|
+
|
|
105
106
|
## 23.1.0 (2025-09-22)
|
|
106
107
|
|
|
107
108
|
### Features Added
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
azure/mgmt/storage/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7k,1063
|
|
2
|
+
azure/mgmt/storage/_configuration.py,sha256=jWCIDt3DVqngzIlLS49OazlCKcfkCC33OH00ywqmhT4,3700
|
|
3
|
+
azure/mgmt/storage/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
4
|
+
azure/mgmt/storage/_storage_management_client.py,sha256=TGQt9G1uH8Cta9N3CAVTrRvaFhsxS6_kWK4keIJGP4U,13492
|
|
5
|
+
azure/mgmt/storage/_version.py,sha256=Y3YKJ7xnEVIbUMdex1kznpLYyr9pvEXhcPeL_5J2JDA,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=GkLifT2hg5JY-uZXFkNGLhAUrteTl8ff97Mz_UPKxds,81948
|
|
9
|
+
azure/mgmt/storage/aio/__init__.py,sha256=y3iibWAAHOz6PL7TZfbzKkWVdp3zcSebEwSvsuWCTzw,1010
|
|
10
|
+
azure/mgmt/storage/aio/_configuration.py,sha256=Vw7m0VV9jYUpyJKcwIPTjZTSTjWXSk-Rf2D3Yx0FNyk,3748
|
|
11
|
+
azure/mgmt/storage/aio/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
12
|
+
azure/mgmt/storage/aio/_storage_management_client.py,sha256=z0mxLo6QXqlBsq628I9GM7FmE5KGUyd2fh3MURFcutM,13776
|
|
13
|
+
azure/mgmt/storage/aio/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
|
14
|
+
azure/mgmt/storage/aio/operations/_blob_containers_operations.py,sha256=8YZrrxuUzY_xPDLMx-N__UjSJxZ4rVXNVWbcOEKSTnA,88113
|
|
15
|
+
azure/mgmt/storage/aio/operations/_blob_inventory_policies_operations.py,sha256=LogsP5TpzLKQXUErLXDYlBIEmTIPL2ma2hMID9D-4zA,19538
|
|
16
|
+
azure/mgmt/storage/aio/operations/_blob_services_operations.py,sha256=QGjOmHy9iRsTEf8c-V3u9LomQU-z2UOdk-_OKLd6q8s,16220
|
|
17
|
+
azure/mgmt/storage/aio/operations/_deleted_accounts_operations.py,sha256=xuf4u1uGT_r7tsPcHAkyDyN0Cq8_gp2UHCLDc6lqspQ,8225
|
|
18
|
+
azure/mgmt/storage/aio/operations/_encryption_scopes_operations.py,sha256=-MMeDadX3GZAFciHFcQI7Y64CC1fRMQDcKpEF40Ghzk,26614
|
|
19
|
+
azure/mgmt/storage/aio/operations/_file_services_operations.py,sha256=PeIjkBo2nFmVeBpffZbHPP7crwsHy-uUEAy4fhp_p5o,21901
|
|
20
|
+
azure/mgmt/storage/aio/operations/_file_shares_operations.py,sha256=bI78-TvluiqRO8Bsh5rNuCfho9PNURig-lIVA0Uy2zY,45373
|
|
21
|
+
azure/mgmt/storage/aio/operations/_local_users_operations.py,sha256=bJAnkmkED164-co2oVcODmVeHtienkFRd4dNnMyoFyo,25994
|
|
22
|
+
azure/mgmt/storage/aio/operations/_management_policies_operations.py,sha256=CIowRztNdZSFypcaq8CQle4winJDuVVotAPwvE23LOA,15069
|
|
23
|
+
azure/mgmt/storage/aio/operations/_network_security_perimeter_configurations_operations.py,sha256=p8kukM9DoMtYh9aoQaP7tXKayc3lXvk4GeSyIVhR1BA,15925
|
|
24
|
+
azure/mgmt/storage/aio/operations/_object_replication_policies_operations.py,sha256=LZfIMnfP2ajoAFdVGiT5Pq7eiryFzXnUS2wGYs-rYf8,20840
|
|
25
|
+
azure/mgmt/storage/aio/operations/_operations.py,sha256=KQGl5-u4kzj8gxgmW9pvJsYt82BgnUAvrQMvYks3nXU,5497
|
|
26
|
+
azure/mgmt/storage/aio/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
27
|
+
azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py,sha256=B4eWKHObjzqYGpO-qWLXv3TkThj4xgYOi_dG02dlcik,19495
|
|
28
|
+
azure/mgmt/storage/aio/operations/_private_link_resources_operations.py,sha256=ldNYt40xLiSkDJLm9clQrOSkevsTYr-Q8jEOrkzZ-jI,4966
|
|
29
|
+
azure/mgmt/storage/aio/operations/_queue_operations.py,sha256=3EP5e0p6RWiOExOmcq6douffaZJf5Vd2Y5csNxLhWjI,26974
|
|
30
|
+
azure/mgmt/storage/aio/operations/_queue_services_operations.py,sha256=rF_eCkrw5QydtoIiVhbUlIc4ZXwy5DXWXHBnXhuYnVA,14695
|
|
31
|
+
azure/mgmt/storage/aio/operations/_skus_operations.py,sha256=a6v_ajjChVE2LIiLQiazd3SVx8Tt0ejyHiI_D1o1pVI,5607
|
|
32
|
+
azure/mgmt/storage/aio/operations/_storage_accounts_operations.py,sha256=4BqIcnU8bjYQAoEQvx11YOJJ0bu8CwTOT9BgofBIebc,103250
|
|
33
|
+
azure/mgmt/storage/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=YcS-MZfUmoQdoz2Pk2V4OIxeRsI6i1zeUrFxtKZ2kiM,7767
|
|
34
|
+
azure/mgmt/storage/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=O1IUomcvX05c4Ca7HUiB8riT18mg0a21ydP11EW0B30,7345
|
|
35
|
+
azure/mgmt/storage/aio/operations/_storage_task_assignments_operations.py,sha256=czRP_1p8MuT0_KRRniERoeivhYkzpzlKwSik8mAbpsc,39248
|
|
36
|
+
azure/mgmt/storage/aio/operations/_table_operations.py,sha256=IfmLAaetLpyVvQM6pPNbkG982v6Ik751kf7F1tty1yw,25966
|
|
37
|
+
azure/mgmt/storage/aio/operations/_table_services_operations.py,sha256=kY-aIOTrzRgiDDivu_rxmBXEFXbN4aSDnxfi5IQ2V-M,14695
|
|
38
|
+
azure/mgmt/storage/aio/operations/_usages_operations.py,sha256=QNE8n71ZQeBzyr8xXwBS4P4gsM2OD_Azh8SrODLEv7o,5802
|
|
39
|
+
azure/mgmt/storage/models/__init__.py,sha256=aRmKkdUKYKIbWn3Mxipa0LO_6Fmv2uEfEsFBODd_YCw,15873
|
|
40
|
+
azure/mgmt/storage/models/_models_py3.py,sha256=Lj1f4vEEO1anC4xQiUNAEph9MhytAMkjs-yYWB7r4zs,515603
|
|
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=L4xaCt49iR83xCQIFYl4e8vVvfXiudtrmJxtBGtgUAk,113457
|
|
45
|
+
azure/mgmt/storage/operations/_blob_inventory_policies_operations.py,sha256=fmInK-vKRGtNMli-oV5LgD_OUbGfrHsR73d2oKJdbPA,26126
|
|
46
|
+
azure/mgmt/storage/operations/_blob_services_operations.py,sha256=dnV_VwbXz0jNDsR_73jbRdBmE-hBmnWZcrBgO0PfEug,21018
|
|
47
|
+
azure/mgmt/storage/operations/_deleted_accounts_operations.py,sha256=vATczGrh7ketI0gsg8eN4zMqof5J41o9xBsYrvZ66AA,10405
|
|
48
|
+
azure/mgmt/storage/operations/_encryption_scopes_operations.py,sha256=kwsRaV-bNs7XJsaCNdHXhUzHjF5m5kgChJMaE_SqyMI,33801
|
|
49
|
+
azure/mgmt/storage/operations/_file_services_operations.py,sha256=0qdo4n-PTyS30wigcw-wefWoAS0rqUFw6Cr8IQnup0s,30377
|
|
50
|
+
azure/mgmt/storage/operations/_file_shares_operations.py,sha256=3IjG48H0GeU6oBjFO5Z3og8vQ2YD2rim3s3n4HLk9yU,58576
|
|
51
|
+
azure/mgmt/storage/operations/_local_users_operations.py,sha256=Zecnh4WY4LmnlX4Ph5N_9jtNvT9NXW0apSFrn5Lpt30,35888
|
|
52
|
+
azure/mgmt/storage/operations/_management_policies_operations.py,sha256=AGU5f-lAiYD0lo2g2ZOFS5uvbR0ZxcxfIVOhf_5C-ko,20044
|
|
53
|
+
azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py,sha256=h0no24vzszjw-YODVY-5yi7E74hSdjiGow2sH0xdnYY,20782
|
|
54
|
+
azure/mgmt/storage/operations/_object_replication_policies_operations.py,sha256=EOzFXaBvP2f4ZZS-HMJFaxu0WGo766crDTZB4HUxnqI,27417
|
|
55
|
+
azure/mgmt/storage/operations/_operations.py,sha256=VjptCoqCnHfybklV98ZNPXPlmSh3XQw4MXoytqh8DJA,6159
|
|
56
|
+
azure/mgmt/storage/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
|
57
|
+
azure/mgmt/storage/operations/_private_endpoint_connections_operations.py,sha256=r6kI8qAoj4IZ5zUy3cmFSLgWfOXGKR-MLaZ0xvIO3Sk,26141
|
|
58
|
+
azure/mgmt/storage/operations/_private_link_resources_operations.py,sha256=3kcNNe9HtJijmarMhn6c1PrKIoqp3t77zd94iPNFfk0,6429
|
|
59
|
+
azure/mgmt/storage/operations/_queue_operations.py,sha256=pgFFPqQFueRBFaNzJYHhlnQh2MdMjCnYWXA14X82RQo,35969
|
|
60
|
+
azure/mgmt/storage/operations/_queue_services_operations.py,sha256=aeCJeg9Aawcp8ZgkRoiBdpm_2KK0pHJusGR8c-o903Q,19611
|
|
61
|
+
azure/mgmt/storage/operations/_skus_operations.py,sha256=5jD786ruqHrFBByCGx1Ex4ZeXs9PRI1X5FOfIgLLp-8,6517
|
|
62
|
+
azure/mgmt/storage/operations/_storage_accounts_operations.py,sha256=H6PwirBVawUl1ICWX93d3UYa8pf--VyJYmDP6n172TI,129027
|
|
63
|
+
azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py,sha256=bgEJPIDzhoB-OteC936GATI8KqUV2f5OAsI8Hf6J5GU,9743
|
|
64
|
+
azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py,sha256=bNs8vuyuH-LfXZjGMdaKLVDy0075RWyuOWsEraLVIzM,8961
|
|
65
|
+
azure/mgmt/storage/operations/_storage_task_assignments_operations.py,sha256=qKhqsEn7s2FpiCpcLMMIHJsbt-YlL_UZD0z362L6FVg,47664
|
|
66
|
+
azure/mgmt/storage/operations/_table_operations.py,sha256=dIHFaQle7ldPcL46T9NLTtYnprtU6rPAqndlCLsQiBg,34351
|
|
67
|
+
azure/mgmt/storage/operations/_table_services_operations.py,sha256=eBlZoIVc5Fie44plLDu-iz43E2Zejme3-OLyNHmrpzw,19611
|
|
68
|
+
azure/mgmt/storage/operations/_usages_operations.py,sha256=LNjEHXNr9CDdxtzY4x6-82CTvS0F-rboGr5pxVbKjl0,6828
|
|
69
|
+
azure_mgmt_storage-24.0.0.dist-info/licenses/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
|
|
70
|
+
azure_mgmt_storage-24.0.0.dist-info/METADATA,sha256=dFSTybEF1Hnvfx0OYa_q4ZjbhiWv7XZby_dDkOuxxxU,36108
|
|
71
|
+
azure_mgmt_storage-24.0.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
72
|
+
azure_mgmt_storage-24.0.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
|
73
|
+
azure_mgmt_storage-24.0.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=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,,
|
|
File without changes
|
{azure_mgmt_storage-23.1.0.dist-info → azure_mgmt_storage-24.0.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|