azure-mgmt-storage 23.0.0__py3-none-any.whl → 23.0.1__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/_version.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 +8 -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/_models_py3.py +2 -2
- azure/mgmt/storage/operations/_blob_containers_operations.py +3 -3
- azure/mgmt/storage/operations/_blob_inventory_policies_operations.py +3 -3
- azure/mgmt/storage/operations/_blob_services_operations.py +3 -3
- azure/mgmt/storage/operations/_deleted_accounts_operations.py +3 -3
- azure/mgmt/storage/operations/_encryption_scopes_operations.py +3 -3
- azure/mgmt/storage/operations/_file_services_operations.py +3 -3
- azure/mgmt/storage/operations/_file_shares_operations.py +3 -3
- azure/mgmt/storage/operations/_local_users_operations.py +3 -3
- azure/mgmt/storage/operations/_management_policies_operations.py +1 -1
- azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py +3 -3
- azure/mgmt/storage/operations/_object_replication_policies_operations.py +3 -3
- azure/mgmt/storage/operations/_operations.py +3 -3
- azure/mgmt/storage/operations/_private_endpoint_connections_operations.py +3 -3
- azure/mgmt/storage/operations/_private_link_resources_operations.py +1 -1
- azure/mgmt/storage/operations/_queue_operations.py +3 -3
- azure/mgmt/storage/operations/_queue_services_operations.py +1 -1
- azure/mgmt/storage/operations/_skus_operations.py +3 -3
- azure/mgmt/storage/operations/_storage_accounts_operations.py +4 -4
- azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py +3 -3
- azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py +3 -3
- azure/mgmt/storage/operations/_storage_task_assignments_operations.py +6 -6
- azure/mgmt/storage/operations/_table_operations.py +3 -3
- azure/mgmt/storage/operations/_table_services_operations.py +1 -1
- azure/mgmt/storage/operations/_usages_operations.py +3 -3
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.0.1.dist-info}/METADATA +7 -1
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.0.1.dist-info}/RECORD +51 -51
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.0.1.dist-info}/LICENSE +0 -0
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.0.1.dist-info}/WHEEL +0 -0
- {azure_mgmt_storage-23.0.0.dist-info → azure_mgmt_storage-23.0.1.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, 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
|
@@ -364,7 +364,7 @@ class FileSharesOperations:
|
|
364
364
|
|
365
365
|
models = _models
|
366
366
|
|
367
|
-
def __init__(self, *args, **kwargs):
|
367
|
+
def __init__(self, *args, **kwargs) -> None:
|
368
368
|
input_args = list(args)
|
369
369
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
370
370
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -380,7 +380,7 @@ class FileSharesOperations:
|
|
380
380
|
filter: Optional[str] = None,
|
381
381
|
expand: Optional[str] = None,
|
382
382
|
**kwargs: Any
|
383
|
-
) ->
|
383
|
+
) -> ItemPaged["_models.FileShareItem"]:
|
384
384
|
"""Lists all shares.
|
385
385
|
|
386
386
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
@@ -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
|
@@ -281,7 +281,7 @@ class LocalUsersOperations:
|
|
281
281
|
|
282
282
|
models = _models
|
283
283
|
|
284
|
-
def __init__(self, *args, **kwargs):
|
284
|
+
def __init__(self, *args, **kwargs) -> None:
|
285
285
|
input_args = list(args)
|
286
286
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
287
287
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -297,7 +297,7 @@ class LocalUsersOperations:
|
|
297
297
|
filter: Optional[str] = None,
|
298
298
|
include: Optional[Union[str, _models.ListLocalUserIncludeParam]] = None,
|
299
299
|
**kwargs: Any
|
300
|
-
) ->
|
300
|
+
) -> ItemPaged["_models.LocalUser"]:
|
301
301
|
"""List the local users associated with the storage account.
|
302
302
|
|
303
303
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
@@ -165,7 +165,7 @@ class ManagementPoliciesOperations:
|
|
165
165
|
|
166
166
|
models = _models
|
167
167
|
|
168
|
-
def __init__(self, *args, **kwargs):
|
168
|
+
def __init__(self, *args, **kwargs) -> None:
|
169
169
|
input_args = list(args)
|
170
170
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
171
171
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -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, Iterator, Optional, TypeVar, Union, cast
|
11
11
|
import urllib.parse
|
12
12
|
|
13
13
|
from azure.core import PipelineClient
|
@@ -176,7 +176,7 @@ class NetworkSecurityPerimeterConfigurationsOperations: # pylint: disable=name-
|
|
176
176
|
|
177
177
|
models = _models
|
178
178
|
|
179
|
-
def __init__(self, *args, **kwargs):
|
179
|
+
def __init__(self, *args, **kwargs) -> None:
|
180
180
|
input_args = list(args)
|
181
181
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
182
182
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -186,7 +186,7 @@ class NetworkSecurityPerimeterConfigurationsOperations: # pylint: disable=name-
|
|
186
186
|
@distributed_trace
|
187
187
|
def list(
|
188
188
|
self, resource_group_name: str, account_name: str, **kwargs: Any
|
189
|
-
) ->
|
189
|
+
) -> ItemPaged["_models.NetworkSecurityPerimeterConfiguration"]:
|
190
190
|
"""Gets list of effective NetworkSecurityPerimeterConfiguration for storage account.
|
191
191
|
|
192
192
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
@@ -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
|
@@ -200,7 +200,7 @@ class ObjectReplicationPoliciesOperations:
|
|
200
200
|
|
201
201
|
models = _models
|
202
202
|
|
203
|
-
def __init__(self, *args, **kwargs):
|
203
|
+
def __init__(self, *args, **kwargs) -> None:
|
204
204
|
input_args = list(args)
|
205
205
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
206
206
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -210,7 +210,7 @@ class ObjectReplicationPoliciesOperations:
|
|
210
210
|
@distributed_trace
|
211
211
|
def list(
|
212
212
|
self, resource_group_name: str, account_name: str, **kwargs: Any
|
213
|
-
) ->
|
213
|
+
) -> ItemPaged["_models.ObjectReplicationPolicy"]:
|
214
214
|
"""List the object replication policies associated with the storage account.
|
215
215
|
|
216
216
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
@@ -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
|
@@ -67,7 +67,7 @@ class Operations:
|
|
67
67
|
|
68
68
|
models = _models
|
69
69
|
|
70
|
-
def __init__(self, *args, **kwargs):
|
70
|
+
def __init__(self, *args, **kwargs) -> None:
|
71
71
|
input_args = list(args)
|
72
72
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
73
73
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -75,7 +75,7 @@ class Operations:
|
|
75
75
|
self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer")
|
76
76
|
|
77
77
|
@distributed_trace
|
78
|
-
def list(self, **kwargs: Any) ->
|
78
|
+
def list(self, **kwargs: Any) -> ItemPaged["_models.Operation"]:
|
79
79
|
"""Lists all of the available Storage Rest API operations.
|
80
80
|
|
81
81
|
:return: An iterator like instance of either Operation or the result of cls(response)
|
@@ -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
|
@@ -212,7 +212,7 @@ class PrivateEndpointConnectionsOperations:
|
|
212
212
|
|
213
213
|
models = _models
|
214
214
|
|
215
|
-
def __init__(self, *args, **kwargs):
|
215
|
+
def __init__(self, *args, **kwargs) -> None:
|
216
216
|
input_args = list(args)
|
217
217
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
218
218
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -222,7 +222,7 @@ class PrivateEndpointConnectionsOperations:
|
|
222
222
|
@distributed_trace
|
223
223
|
def list(
|
224
224
|
self, resource_group_name: str, account_name: str, **kwargs: Any
|
225
|
-
) ->
|
225
|
+
) -> ItemPaged["_models.PrivateEndpointConnection"]:
|
226
226
|
"""List all the private endpoint connections associated with the storage account.
|
227
227
|
|
228
228
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
@@ -82,7 +82,7 @@ class PrivateLinkResourcesOperations:
|
|
82
82
|
|
83
83
|
models = _models
|
84
84
|
|
85
|
-
def __init__(self, *args, **kwargs):
|
85
|
+
def __init__(self, *args, **kwargs) -> None:
|
86
86
|
input_args = list(args)
|
87
87
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
88
88
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -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
|
@@ -273,7 +273,7 @@ class QueueOperations:
|
|
273
273
|
|
274
274
|
models = _models
|
275
275
|
|
276
|
-
def __init__(self, *args, **kwargs):
|
276
|
+
def __init__(self, *args, **kwargs) -> None:
|
277
277
|
input_args = list(args)
|
278
278
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
279
279
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -722,7 +722,7 @@ class QueueOperations:
|
|
722
722
|
maxpagesize: Optional[str] = None,
|
723
723
|
filter: Optional[str] = None,
|
724
724
|
**kwargs: Any
|
725
|
-
) ->
|
725
|
+
) -> ItemPaged["_models.ListQueue"]:
|
726
726
|
"""Gets a list of all the queues under the specified storage account.
|
727
727
|
|
728
728
|
:param resource_group_name: The name of the resource group within the user's subscription. The
|
@@ -158,7 +158,7 @@ class QueueServicesOperations:
|
|
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
|
@@ -72,7 +72,7 @@ class SkusOperations:
|
|
72
72
|
|
73
73
|
models = _models
|
74
74
|
|
75
|
-
def __init__(self, *args, **kwargs):
|
75
|
+
def __init__(self, *args, **kwargs) -> None:
|
76
76
|
input_args = list(args)
|
77
77
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
78
78
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -80,7 +80,7 @@ class SkusOperations:
|
|
80
80
|
self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer")
|
81
81
|
|
82
82
|
@distributed_trace
|
83
|
-
def list(self, **kwargs: Any) ->
|
83
|
+
def list(self, **kwargs: Any) -> ItemPaged["_models.SkuInformation"]:
|
84
84
|
"""Lists the available SKUs supported by Microsoft.Storage for given subscription.
|
85
85
|
|
86
86
|
:return: An iterator like instance of either SkuInformation or the result of cls(response)
|
@@ -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, Literal, Optional, TypeVar, Union, cast, overload
|
12
12
|
import urllib.parse
|
13
13
|
|
14
14
|
from azure.core import PipelineClient
|
@@ -690,7 +690,7 @@ class StorageAccountsOperations: # pylint: disable=too-many-public-methods
|
|
690
690
|
|
691
691
|
models = _models
|
692
692
|
|
693
|
-
def __init__(self, *args, **kwargs):
|
693
|
+
def __init__(self, *args, **kwargs) -> None:
|
694
694
|
input_args = list(args)
|
695
695
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
696
696
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -1296,7 +1296,7 @@ class StorageAccountsOperations: # pylint: disable=too-many-public-methods
|
|
1296
1296
|
return deserialized # type: ignore
|
1297
1297
|
|
1298
1298
|
@distributed_trace
|
1299
|
-
def list(self, **kwargs: Any) ->
|
1299
|
+
def list(self, **kwargs: Any) -> ItemPaged["_models.StorageAccount"]:
|
1300
1300
|
"""Lists all the storage accounts available under the subscription. Note that storage keys are not
|
1301
1301
|
returned; use the ListKeys operation for this.
|
1302
1302
|
|
@@ -1371,7 +1371,7 @@ class StorageAccountsOperations: # pylint: disable=too-many-public-methods
|
|
1371
1371
|
return ItemPaged(get_next, extract_data)
|
1372
1372
|
|
1373
1373
|
@distributed_trace
|
1374
|
-
def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) ->
|
1374
|
+
def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> ItemPaged["_models.StorageAccount"]:
|
1375
1375
|
"""Lists all the storage accounts available under the given resource group. Note that storage keys
|
1376
1376
|
are not returned; use the ListKeys operation for this.
|
1377
1377
|
|
@@ -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
|
@@ -103,7 +103,7 @@ class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-to
|
|
103
103
|
|
104
104
|
models = _models
|
105
105
|
|
106
|
-
def __init__(self, *args, **kwargs):
|
106
|
+
def __init__(self, *args, **kwargs) -> None:
|
107
107
|
input_args = list(args)
|
108
108
|
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
|
109
109
|
self._config: StorageManagementClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
|
@@ -119,7 +119,7 @@ class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-to
|
|
119
119
|
maxpagesize: Optional[int] = None,
|
120
120
|
filter: Optional[str] = None,
|
121
121
|
**kwargs: Any
|
122
|
-
) ->
|
122
|
+
) -> ItemPaged["_models.StorageTaskReportInstance"]:
|
123
123
|
"""Fetch the report summary of a single storage task assignment's instances.
|
124
124
|
|
125
125
|
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
@@ -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
|
@@ -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
|
@@ -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")
|
@@ -499,7 +499,7 @@ class StorageTaskAssignmentsOperations:
|
|
499
499
|
|
500
500
|
if polling is True:
|
501
501
|
polling_method: PollingMethod = cast(
|
502
|
-
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "
|
502
|
+
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs)
|
503
503
|
)
|
504
504
|
elif polling is False:
|
505
505
|
polling_method = cast(PollingMethod, NoPolling())
|
@@ -722,7 +722,7 @@ class StorageTaskAssignmentsOperations:
|
|
722
722
|
|
723
723
|
if polling is True:
|
724
724
|
polling_method: PollingMethod = cast(
|
725
|
-
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "
|
725
|
+
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs)
|
726
726
|
)
|
727
727
|
elif polling is False:
|
728
728
|
polling_method = cast(PollingMethod, NoPolling())
|
@@ -909,7 +909,7 @@ class StorageTaskAssignmentsOperations:
|
|
909
909
|
|
910
910
|
if polling is True:
|
911
911
|
polling_method: PollingMethod = cast(
|
912
|
-
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "
|
912
|
+
PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "azure-async-operation"}, **kwargs)
|
913
913
|
)
|
914
914
|
elif polling is False:
|
915
915
|
polling_method = cast(PollingMethod, NoPolling())
|
@@ -927,7 +927,7 @@ class StorageTaskAssignmentsOperations:
|
|
927
927
|
@distributed_trace
|
928
928
|
def list(
|
929
929
|
self, resource_group_name: str, account_name: str, maxpagesize: Optional[int] = None, **kwargs: Any
|
930
|
-
) ->
|
930
|
+
) -> ItemPaged["_models.StorageTaskAssignment"]:
|
931
931
|
"""List all the storage task assignments in an account.
|
932
932
|
|
933
933
|
: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
|
@@ -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
|
@@ -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
|
@@ -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
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-mgmt-storage
|
3
|
-
Version: 23.0.
|
3
|
+
Version: 23.0.1
|
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
|
@@ -89,6 +89,12 @@ section of the project.
|
|
89
89
|
|
90
90
|
# Release History
|
91
91
|
|
92
|
+
## 23.0.1 (2025-06-30)
|
93
|
+
|
94
|
+
### Other Changes
|
95
|
+
|
96
|
+
- Fix for StorageTaskAssignmentsOperations
|
97
|
+
|
92
98
|
## 23.0.0 (2025-05-15)
|
93
99
|
|
94
100
|
### Breaking Changes
|
@@ -2,7 +2,7 @@ azure/mgmt/storage/__init__.py,sha256=anaPuy_M9WJzgg2lszSxU5JnlfORoG3js5p0jBaYY7
|
|
2
2
|
azure/mgmt/storage/_configuration.py,sha256=ueW5a5NL02MKrK9ldI1VrJHWCM_EtajIXy6AS3lFuMY,3359
|
3
3
|
azure/mgmt/storage/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
4
4
|
azure/mgmt/storage/_storage_management_client.py,sha256=yBPRDxnFWAO5liHdqELumnm3mePNeWmWnl61Avnd8lc,13135
|
5
|
-
azure/mgmt/storage/_version.py,sha256=
|
5
|
+
azure/mgmt/storage/_version.py,sha256=JAf6od5FvNoaOZkjk3Q43ydz3-yPsQgPR0-RGsUb0j0,346
|
6
6
|
azure/mgmt/storage/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
7
7
|
azure/mgmt/storage/_utils/__init__.py,sha256=sbjmEEjeH9Sr8xo3lkmUvyHuZkKo3xPbPehsxe7iQjE,452
|
8
8
|
azure/mgmt/storage/_utils/serialization.py,sha256=M0xRh7CzsPyQfr0h-Nbb14qAdUTjk2eMqxSGpBEWujI,81966
|
@@ -11,63 +11,63 @@ azure/mgmt/storage/aio/_configuration.py,sha256=zOGd3GdE0M5_rHawiiKhqZAGA6jqOe4Y
|
|
11
11
|
azure/mgmt/storage/aio/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
12
12
|
azure/mgmt/storage/aio/_storage_management_client.py,sha256=rjLSybK3pqnt4vEg9n5yotcup63h6XiSDEteMp3sPtg,13419
|
13
13
|
azure/mgmt/storage/aio/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
14
|
-
azure/mgmt/storage/aio/operations/_blob_containers_operations.py,sha256=
|
15
|
-
azure/mgmt/storage/aio/operations/_blob_inventory_policies_operations.py,sha256=
|
16
|
-
azure/mgmt/storage/aio/operations/_blob_services_operations.py,sha256=
|
17
|
-
azure/mgmt/storage/aio/operations/_deleted_accounts_operations.py,sha256=
|
18
|
-
azure/mgmt/storage/aio/operations/_encryption_scopes_operations.py,sha256=
|
19
|
-
azure/mgmt/storage/aio/operations/_file_services_operations.py,sha256=
|
20
|
-
azure/mgmt/storage/aio/operations/_file_shares_operations.py,sha256=
|
21
|
-
azure/mgmt/storage/aio/operations/_local_users_operations.py,sha256
|
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
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=
|
24
|
-
azure/mgmt/storage/aio/operations/_object_replication_policies_operations.py,sha256=
|
25
|
-
azure/mgmt/storage/aio/operations/_operations.py,sha256=
|
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
26
|
azure/mgmt/storage/aio/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
27
|
-
azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py,sha256=
|
27
|
+
azure/mgmt/storage/aio/operations/_private_endpoint_connections_operations.py,sha256=70ULAY3JKz1v3HvPFVW_spNOJ6_iX7cxZuan_xgrxls,19489
|
28
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=
|
29
|
+
azure/mgmt/storage/aio/operations/_queue_operations.py,sha256=s6k8u0dLl66rlwlGknFCaDoTjQGzRjVryaERPSHdWtE,26968
|
30
30
|
azure/mgmt/storage/aio/operations/_queue_services_operations.py,sha256=XWFV25QVYak63jeUiEkYKjgbi_geLwKvglQY8RxmJ4Y,14689
|
31
|
-
azure/mgmt/storage/aio/operations/_skus_operations.py,sha256=
|
32
|
-
azure/mgmt/storage/aio/operations/_storage_accounts_operations.py,sha256=
|
33
|
-
azure/mgmt/storage/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=
|
34
|
-
azure/mgmt/storage/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=
|
35
|
-
azure/mgmt/storage/aio/operations/_storage_task_assignments_operations.py,sha256=
|
36
|
-
azure/mgmt/storage/aio/operations/_table_operations.py,sha256=
|
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=aRwZOpuRmp1ufkmxx8BI3C9K_O_4GrtXFk2zRVT4SIs,38814
|
36
|
+
azure/mgmt/storage/aio/operations/_table_operations.py,sha256=JICdKrHdspBtJoBy6ArDFURlOloEyphlwVNPTBLn76k,25792
|
37
37
|
azure/mgmt/storage/aio/operations/_table_services_operations.py,sha256=abuJt8L0kViJZU5SIzwFHz2uy5RXRZJiiTbPgzF_FQI,14689
|
38
|
-
azure/mgmt/storage/aio/operations/_usages_operations.py,sha256=
|
38
|
+
azure/mgmt/storage/aio/operations/_usages_operations.py,sha256=kmJyFHDp1g3WBa-4qYC_yJWSkrzMhqa0iQFoW539WeE,5796
|
39
39
|
azure/mgmt/storage/models/__init__.py,sha256=CdHsbSUsb_LsQkB4yRZIKzLin2E3fGvknFJJJ3N6ibE,15221
|
40
|
-
azure/mgmt/storage/models/_models_py3.py,sha256=
|
40
|
+
azure/mgmt/storage/models/_models_py3.py,sha256=VVH-PMWP037UOysBHYsfpd8EluYw0VWhsQYvoCDhObQ,490623
|
41
41
|
azure/mgmt/storage/models/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
42
42
|
azure/mgmt/storage/models/_storage_management_client_enums.py,sha256=BT5Q3gd6uOl1oPPtsaNrPBdSPrTwwx8Spjm1yHqzZhM,21630
|
43
43
|
azure/mgmt/storage/operations/__init__.py,sha256=-oxZ71XxQSsZVeT-58uAIsof8sdtZDxuwQNpRP3tI3s,3811
|
44
|
-
azure/mgmt/storage/operations/_blob_containers_operations.py,sha256=
|
45
|
-
azure/mgmt/storage/operations/_blob_inventory_policies_operations.py,sha256=
|
46
|
-
azure/mgmt/storage/operations/_blob_services_operations.py,sha256
|
47
|
-
azure/mgmt/storage/operations/_deleted_accounts_operations.py,sha256=
|
48
|
-
azure/mgmt/storage/operations/_encryption_scopes_operations.py,sha256=
|
49
|
-
azure/mgmt/storage/operations/_file_services_operations.py,sha256=
|
50
|
-
azure/mgmt/storage/operations/_file_shares_operations.py,sha256=
|
51
|
-
azure/mgmt/storage/operations/_local_users_operations.py,sha256=
|
52
|
-
azure/mgmt/storage/operations/_management_policies_operations.py,sha256=
|
53
|
-
azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py,sha256=
|
54
|
-
azure/mgmt/storage/operations/_object_replication_policies_operations.py,sha256=
|
55
|
-
azure/mgmt/storage/operations/_operations.py,sha256=
|
44
|
+
azure/mgmt/storage/operations/_blob_containers_operations.py,sha256=sPhS_MY3G3yaJn2Jyp03jo9GY-_8T8XmLLUU4fwTDGg,113199
|
45
|
+
azure/mgmt/storage/operations/_blob_inventory_policies_operations.py,sha256=zOdDTUnDdekIzIBA9gWdbg1hat33_y_Q_6XWKToRfi8,26120
|
46
|
+
azure/mgmt/storage/operations/_blob_services_operations.py,sha256=y31rkPucck-9BQuBnARlIVOB9SWmyikpPsdUhnSBgGk,21012
|
47
|
+
azure/mgmt/storage/operations/_deleted_accounts_operations.py,sha256=MrRKzDuiu7gZMod_-0ugv1D2Hs774gIfBqcnEtxq8eM,10399
|
48
|
+
azure/mgmt/storage/operations/_encryption_scopes_operations.py,sha256=B6VcblY8AGtpD1izQ66X0bwKngaFM_lCuYIw0vo1fkM,33795
|
49
|
+
azure/mgmt/storage/operations/_file_services_operations.py,sha256=GqRiQMoe-sJAFQOdPbXXLaiWC2NG2sMn0C-4O4-b8fo,30371
|
50
|
+
azure/mgmt/storage/operations/_file_shares_operations.py,sha256=kGQ5mieMYs15Mz4nEpkSpmaBeAgywX5oziaUQQCX910,58486
|
51
|
+
azure/mgmt/storage/operations/_local_users_operations.py,sha256=FjLyDzDdKyHBDIuZwKBrUtvzxbdgTpjD8ACMZ69nj5Y,35882
|
52
|
+
azure/mgmt/storage/operations/_management_policies_operations.py,sha256=8DjcIoidkwguOZ4YmhY6RdIb02ekDiL84nWLzYY0CqQ,20038
|
53
|
+
azure/mgmt/storage/operations/_network_security_perimeter_configurations_operations.py,sha256=dCSEi4GsFHmU_pqGkgcqdAngqgQLaYPjujebhBvhvEQ,20776
|
54
|
+
azure/mgmt/storage/operations/_object_replication_policies_operations.py,sha256=NzVQyG9JTWLfYpaSCj0g4BfgiMs2Zq8kw3EyzxAcHhY,27411
|
55
|
+
azure/mgmt/storage/operations/_operations.py,sha256=mCniNf0Zr6jeMMCC5XpU1lIY8wqAxxF4yGou7lHcJD8,6153
|
56
56
|
azure/mgmt/storage/operations/_patch.py,sha256=lNLUF-PrKQxqNd7ZZ6cvds5HfRzDZIF2FOiV0eW4sGY,847
|
57
|
-
azure/mgmt/storage/operations/_private_endpoint_connections_operations.py,sha256=
|
58
|
-
azure/mgmt/storage/operations/_private_link_resources_operations.py,sha256=
|
59
|
-
azure/mgmt/storage/operations/_queue_operations.py,sha256=
|
60
|
-
azure/mgmt/storage/operations/_queue_services_operations.py,sha256=
|
61
|
-
azure/mgmt/storage/operations/_skus_operations.py,sha256=
|
62
|
-
azure/mgmt/storage/operations/_storage_accounts_operations.py,sha256=
|
63
|
-
azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py,sha256=
|
64
|
-
azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py,sha256=
|
65
|
-
azure/mgmt/storage/operations/_storage_task_assignments_operations.py,sha256=
|
66
|
-
azure/mgmt/storage/operations/_table_operations.py,sha256=
|
67
|
-
azure/mgmt/storage/operations/_table_services_operations.py,sha256=
|
68
|
-
azure/mgmt/storage/operations/_usages_operations.py,sha256=
|
69
|
-
azure_mgmt_storage-23.0.
|
70
|
-
azure_mgmt_storage-23.0.
|
71
|
-
azure_mgmt_storage-23.0.
|
72
|
-
azure_mgmt_storage-23.0.
|
73
|
-
azure_mgmt_storage-23.0.
|
57
|
+
azure/mgmt/storage/operations/_private_endpoint_connections_operations.py,sha256=F7om6X8MOXl4kT9ftm0qvWX-4AVXytMRoGHQfbKgSFs,26135
|
58
|
+
azure/mgmt/storage/operations/_private_link_resources_operations.py,sha256=cSIrv8uhlvy9HHcr8tSX75nLhqnyOro6V_3K0jpMOHA,6423
|
59
|
+
azure/mgmt/storage/operations/_queue_operations.py,sha256=Kk1WWXmoVNnq5HFl0Y9IyebZ-QYG7TFN6JHiKMUdxoY,35963
|
60
|
+
azure/mgmt/storage/operations/_queue_services_operations.py,sha256=BNkhqkdfW8F41d00ZEjbMCO1URWRIX6o61_-ki1L_rQ,19605
|
61
|
+
azure/mgmt/storage/operations/_skus_operations.py,sha256=mS-pxl0ddzcsxHmllJEvS5vhGDPcGIcCkLYXjOgc5oc,6511
|
62
|
+
azure/mgmt/storage/operations/_storage_accounts_operations.py,sha256=BRC6yaDetP0kHZNUP5iU03E8ikvg2Aiq0zAKSGZxbSI,129021
|
63
|
+
azure/mgmt/storage/operations/_storage_task_assignment_instances_report_operations.py,sha256=qMv3-iGdvVPT_kbXnNNXEmx1wExKetFoZ4GJFuIxg5c,9732
|
64
|
+
azure/mgmt/storage/operations/_storage_task_assignments_instances_report_operations.py,sha256=L4BL6TOpT9Xd7dNE5EnULnW_Jx8QyPIOsuxKTMRwIv0,8955
|
65
|
+
azure/mgmt/storage/operations/_storage_task_assignments_operations.py,sha256=560EXR1TpY9OXbk4jwPMcTIOmSMpzEwBAtWTZ6YOdA4,47270
|
66
|
+
azure/mgmt/storage/operations/_table_operations.py,sha256=8taBxLCRTgRWnnOCMhFfrS5XcrIVm-14zb3K3Z6L3Cg,34177
|
67
|
+
azure/mgmt/storage/operations/_table_services_operations.py,sha256=xFd2Qr8M3az-QMjJq3Ot17IKkJeR3w0uy2AHCeu50_8,19605
|
68
|
+
azure/mgmt/storage/operations/_usages_operations.py,sha256=WvwqCseH0sFHVqNu0W79WUg5g66uTr3OaiNKnFts9Z4,6822
|
69
|
+
azure_mgmt_storage-23.0.1.dist-info/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
|
70
|
+
azure_mgmt_storage-23.0.1.dist-info/METADATA,sha256=NrNVjA_iiAbFFrr31Qr1JzV5m136PkQyqj7lMZmGIBw,34018
|
71
|
+
azure_mgmt_storage-23.0.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
72
|
+
azure_mgmt_storage-23.0.1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
73
|
+
azure_mgmt_storage-23.0.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|