azure-mgmt-storage 21.2.0__py3-none-any.whl → 21.2.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/_serialization.py +1 -1
- azure/mgmt/storage/_version.py +1 -1
- azure/mgmt/storage/v2015_06_15/_version.py +1 -1
- azure/mgmt/storage/v2016_01_01/_version.py +1 -1
- azure/mgmt/storage/v2016_12_01/_version.py +1 -1
- azure/mgmt/storage/v2017_06_01/_version.py +1 -1
- azure/mgmt/storage/v2017_10_01/_version.py +1 -1
- azure/mgmt/storage/v2018_02_01/_version.py +1 -1
- azure/mgmt/storage/v2018_03_01_preview/_version.py +1 -1
- azure/mgmt/storage/v2018_07_01/_version.py +1 -1
- azure/mgmt/storage/v2018_11_01/_version.py +1 -1
- azure/mgmt/storage/v2019_04_01/_version.py +1 -1
- azure/mgmt/storage/v2019_06_01/_version.py +1 -1
- azure/mgmt/storage/v2020_08_01_preview/_version.py +1 -1
- azure/mgmt/storage/v2021_01_01/_version.py +1 -1
- azure/mgmt/storage/v2021_02_01/_version.py +1 -1
- azure/mgmt/storage/v2021_04_01/_version.py +1 -1
- azure/mgmt/storage/v2021_06_01/_version.py +1 -1
- azure/mgmt/storage/v2021_08_01/_version.py +1 -1
- azure/mgmt/storage/v2021_09_01/_version.py +1 -1
- azure/mgmt/storage/v2022_05_01/_version.py +1 -1
- azure/mgmt/storage/v2022_09_01/_version.py +1 -1
- azure/mgmt/storage/v2023_01_01/_version.py +1 -1
- azure/mgmt/storage/v2023_05_01/_version.py +1 -1
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py +2 -2
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py +2 -2
- azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py +2 -2
- azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py +4 -4
- azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py +4 -4
- azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py +4 -4
- {azure_mgmt_storage-21.2.0.dist-info → azure_mgmt_storage-21.2.1.dist-info}/METADATA +9 -1
- {azure_mgmt_storage-21.2.0.dist-info → azure_mgmt_storage-21.2.1.dist-info}/RECORD +35 -35
- {azure_mgmt_storage-21.2.0.dist-info → azure_mgmt_storage-21.2.1.dist-info}/LICENSE +0 -0
- {azure_mgmt_storage-21.2.0.dist-info → azure_mgmt_storage-21.2.1.dist-info}/WHEEL +0 -0
- {azure_mgmt_storage-21.2.0.dist-info → azure_mgmt_storage-21.2.1.dist-info}/top_level.txt +0 -0
@@ -1447,7 +1447,7 @@ class Deserializer(object):
|
|
1447
1447
|
elif isinstance(response, type) and issubclass(response, Enum):
|
1448
1448
|
return self.deserialize_enum(data, response)
|
1449
1449
|
|
1450
|
-
if data is None:
|
1450
|
+
if data is None or data is CoreNull:
|
1451
1451
|
return data
|
1452
1452
|
try:
|
1453
1453
|
attributes = response._attribute_map # type: ignore
|
azure/mgmt/storage/_version.py
CHANGED
@@ -64,7 +64,7 @@ class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-to
|
|
64
64
|
resource_group_name: str,
|
65
65
|
account_name: str,
|
66
66
|
storage_task_assignment_name: str,
|
67
|
-
maxpagesize: Optional[
|
67
|
+
maxpagesize: Optional[int] = None,
|
68
68
|
filter: Optional[str] = None,
|
69
69
|
**kwargs: Any
|
70
70
|
) -> AsyncIterable["_models.StorageTaskReportInstance"]:
|
@@ -83,7 +83,7 @@ class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-to
|
|
83
83
|
:type storage_task_assignment_name: str
|
84
84
|
:param maxpagesize: Optional, specifies the maximum number of storage task assignment instances
|
85
85
|
to be included in the list response. Default value is None.
|
86
|
-
:type maxpagesize:
|
86
|
+
:type maxpagesize: int
|
87
87
|
:param filter: Optional. When specified, it can be used to query using reporting properties.
|
88
88
|
See `Constructing Filter Strings
|
89
89
|
<https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#constructing-filter-strings>`_
|
@@ -63,7 +63,7 @@ class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-t
|
|
63
63
|
self,
|
64
64
|
resource_group_name: str,
|
65
65
|
account_name: str,
|
66
|
-
maxpagesize: Optional[
|
66
|
+
maxpagesize: Optional[int] = None,
|
67
67
|
filter: Optional[str] = None,
|
68
68
|
**kwargs: Any
|
69
69
|
) -> AsyncIterable["_models.StorageTaskReportInstance"]:
|
@@ -78,7 +78,7 @@ class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-t
|
|
78
78
|
:type account_name: str
|
79
79
|
:param maxpagesize: Optional, specifies the maximum number of storage task assignment instances
|
80
80
|
to be included in the list response. Default value is None.
|
81
|
-
:type maxpagesize:
|
81
|
+
:type maxpagesize: int
|
82
82
|
:param filter: Optional. When specified, it can be used to query using reporting properties.
|
83
83
|
See `Constructing Filter Strings
|
84
84
|
<https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#constructing-filter-strings>`_
|
@@ -709,7 +709,7 @@ class StorageTaskAssignmentsOperations:
|
|
709
709
|
|
710
710
|
@distributed_trace
|
711
711
|
def list(
|
712
|
-
self, resource_group_name: str, account_name: str, maxpagesize: Optional[
|
712
|
+
self, resource_group_name: str, account_name: str, maxpagesize: Optional[int] = None, **kwargs: Any
|
713
713
|
) -> AsyncIterable["_models.StorageTaskAssignment"]:
|
714
714
|
"""List all the storage task assignments in an account.
|
715
715
|
|
@@ -722,7 +722,7 @@ class StorageTaskAssignmentsOperations:
|
|
722
722
|
:type account_name: str
|
723
723
|
:param maxpagesize: Optional, specifies the maximum number of storage task assignment Ids to be
|
724
724
|
included in the list response. Default value is None.
|
725
|
-
:type maxpagesize:
|
725
|
+
:type maxpagesize: int
|
726
726
|
:return: An iterator like instance of either StorageTaskAssignment or the result of
|
727
727
|
cls(response)
|
728
728
|
:rtype:
|
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py
CHANGED
@@ -47,7 +47,7 @@ def build_list_request(
|
|
47
47
|
storage_task_assignment_name: str,
|
48
48
|
subscription_id: str,
|
49
49
|
*,
|
50
|
-
maxpagesize: Optional[
|
50
|
+
maxpagesize: Optional[int] = None,
|
51
51
|
filter: Optional[str] = None,
|
52
52
|
**kwargs: Any
|
53
53
|
) -> HttpRequest:
|
@@ -84,7 +84,7 @@ def build_list_request(
|
|
84
84
|
|
85
85
|
# Construct parameters
|
86
86
|
if maxpagesize is not None:
|
87
|
-
_params["$maxpagesize"] = _SERIALIZER.query("maxpagesize", maxpagesize, "
|
87
|
+
_params["$maxpagesize"] = _SERIALIZER.query("maxpagesize", maxpagesize, "int")
|
88
88
|
if filter is not None:
|
89
89
|
_params["$filter"] = _SERIALIZER.query("filter", filter, "str")
|
90
90
|
_params["api-version"] = _SERIALIZER.query("api_version", api_version, "str")
|
@@ -121,7 +121,7 @@ class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-to
|
|
121
121
|
resource_group_name: str,
|
122
122
|
account_name: str,
|
123
123
|
storage_task_assignment_name: str,
|
124
|
-
maxpagesize: Optional[
|
124
|
+
maxpagesize: Optional[int] = None,
|
125
125
|
filter: Optional[str] = None,
|
126
126
|
**kwargs: Any
|
127
127
|
) -> Iterable["_models.StorageTaskReportInstance"]:
|
@@ -140,7 +140,7 @@ class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-to
|
|
140
140
|
:type storage_task_assignment_name: str
|
141
141
|
:param maxpagesize: Optional, specifies the maximum number of storage task assignment instances
|
142
142
|
to be included in the list response. Default value is None.
|
143
|
-
:type maxpagesize:
|
143
|
+
:type maxpagesize: int
|
144
144
|
:param filter: Optional. When specified, it can be used to query using reporting properties.
|
145
145
|
See `Constructing Filter Strings
|
146
146
|
<https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#constructing-filter-strings>`_
|
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py
CHANGED
@@ -46,7 +46,7 @@ def build_list_request(
|
|
46
46
|
account_name: str,
|
47
47
|
subscription_id: str,
|
48
48
|
*,
|
49
|
-
maxpagesize: Optional[
|
49
|
+
maxpagesize: Optional[int] = None,
|
50
50
|
filter: Optional[str] = None,
|
51
51
|
**kwargs: Any
|
52
52
|
) -> HttpRequest:
|
@@ -75,7 +75,7 @@ def build_list_request(
|
|
75
75
|
|
76
76
|
# Construct parameters
|
77
77
|
if maxpagesize is not None:
|
78
|
-
_params["$maxpagesize"] = _SERIALIZER.query("maxpagesize", maxpagesize, "
|
78
|
+
_params["$maxpagesize"] = _SERIALIZER.query("maxpagesize", maxpagesize, "int")
|
79
79
|
if filter is not None:
|
80
80
|
_params["$filter"] = _SERIALIZER.query("filter", filter, "str")
|
81
81
|
_params["api-version"] = _SERIALIZER.query("api_version", api_version, "str")
|
@@ -111,7 +111,7 @@ class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-t
|
|
111
111
|
self,
|
112
112
|
resource_group_name: str,
|
113
113
|
account_name: str,
|
114
|
-
maxpagesize: Optional[
|
114
|
+
maxpagesize: Optional[int] = None,
|
115
115
|
filter: Optional[str] = None,
|
116
116
|
**kwargs: Any
|
117
117
|
) -> Iterable["_models.StorageTaskReportInstance"]:
|
@@ -126,7 +126,7 @@ class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-t
|
|
126
126
|
:type account_name: str
|
127
127
|
:param maxpagesize: Optional, specifies the maximum number of storage task assignment instances
|
128
128
|
to be included in the list response. Default value is None.
|
129
|
-
:type maxpagesize:
|
129
|
+
:type maxpagesize: int
|
130
130
|
:param filter: Optional. When specified, it can be used to query using reporting properties.
|
131
131
|
See `Constructing Filter Strings
|
132
132
|
<https://learn.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#constructing-filter-strings>`_
|
@@ -227,7 +227,7 @@ def build_list_request(
|
|
227
227
|
account_name: str,
|
228
228
|
subscription_id: str,
|
229
229
|
*,
|
230
|
-
maxpagesize: Optional[
|
230
|
+
maxpagesize: Optional[int] = None,
|
231
231
|
**kwargs: Any
|
232
232
|
) -> HttpRequest:
|
233
233
|
_headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
|
@@ -255,7 +255,7 @@ def build_list_request(
|
|
255
255
|
|
256
256
|
# Construct parameters
|
257
257
|
if maxpagesize is not None:
|
258
|
-
_params["$maxpagesize"] = _SERIALIZER.query("maxpagesize", maxpagesize, "
|
258
|
+
_params["$maxpagesize"] = _SERIALIZER.query("maxpagesize", maxpagesize, "int")
|
259
259
|
_params["api-version"] = _SERIALIZER.query("api_version", api_version, "str")
|
260
260
|
|
261
261
|
# Construct headers
|
@@ -925,7 +925,7 @@ class StorageTaskAssignmentsOperations:
|
|
925
925
|
|
926
926
|
@distributed_trace
|
927
927
|
def list(
|
928
|
-
self, resource_group_name: str, account_name: str, maxpagesize: Optional[
|
928
|
+
self, resource_group_name: str, account_name: str, maxpagesize: Optional[int] = None, **kwargs: Any
|
929
929
|
) -> Iterable["_models.StorageTaskAssignment"]:
|
930
930
|
"""List all the storage task assignments in an account.
|
931
931
|
|
@@ -938,7 +938,7 @@ class StorageTaskAssignmentsOperations:
|
|
938
938
|
:type account_name: str
|
939
939
|
:param maxpagesize: Optional, specifies the maximum number of storage task assignment Ids to be
|
940
940
|
included in the list response. Default value is None.
|
941
|
-
:type maxpagesize:
|
941
|
+
:type maxpagesize: int
|
942
942
|
:return: An iterator like instance of either StorageTaskAssignment or the result of
|
943
943
|
cls(response)
|
944
944
|
:rtype:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-mgmt-storage
|
3
|
-
Version: 21.2.
|
3
|
+
Version: 21.2.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,14 @@ section of the project.
|
|
89
89
|
|
90
90
|
# Release History
|
91
91
|
|
92
|
+
## 21.2.1 (2024-06-27)
|
93
|
+
|
94
|
+
### Bugs Fixed
|
95
|
+
|
96
|
+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentInstancesReportOperations.list from str to int
|
97
|
+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsInstancesReportOperations.list from str to int
|
98
|
+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsOperations.list from str to int
|
99
|
+
|
92
100
|
## 21.2.0 (2024-06-17)
|
93
101
|
|
94
102
|
### Features Added
|
@@ -1,8 +1,8 @@
|
|
1
1
|
azure/mgmt/storage/__init__.py,sha256=m8sm-rRh8sQ0tlJ4ymmPEGRr_JntgMvjpcrOcwjz_AM,725
|
2
2
|
azure/mgmt/storage/_configuration.py,sha256=WGXuK1mWScrq7p-y-RZzZtsIcd1oc3M2uQFlSf00l1c,3099
|
3
|
-
azure/mgmt/storage/_serialization.py,sha256=
|
3
|
+
azure/mgmt/storage/_serialization.py,sha256=QRp-bhABMUkUkR7PsiFyMNsoIQHILct4JNCC2z1_tQ0,78973
|
4
4
|
azure/mgmt/storage/_storage_management_client.py,sha256=H8FqENTa_mDM2HYgRIdgOki7laj7qht_XKBIA-3uGuA,95879
|
5
|
-
azure/mgmt/storage/_version.py,sha256=
|
5
|
+
azure/mgmt/storage/_version.py,sha256=5xORYfp8c1FQQITM-l6ZijdwH5Y5eY4SZsUZcrjbZnE,346
|
6
6
|
azure/mgmt/storage/models.py,sha256=UqC780jl8XtNHvMxk_Gfybw3grkN8Na1zJtfwI3pbOI,394
|
7
7
|
azure/mgmt/storage/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
8
8
|
azure/mgmt/storage/aio/__init__.py,sha256=91Ueq_d_YhUQnoHuhv-HKRhRnDGx8kYi1QeyF_cT3A4,570
|
@@ -13,7 +13,7 @@ azure/mgmt/storage/v2015_06_15/_configuration.py,sha256=g2fdQv9IFvktPHIlRyM5OnJ_
|
|
13
13
|
azure/mgmt/storage/v2015_06_15/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
14
14
|
azure/mgmt/storage/v2015_06_15/_storage_management.py,sha256=xVmMMsvI2N_KprwK8C7UFmVxNb6erG3_7PPh2I-c1xs,5531
|
15
15
|
azure/mgmt/storage/v2015_06_15/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
16
|
-
azure/mgmt/storage/v2015_06_15/_version.py,sha256=
|
16
|
+
azure/mgmt/storage/v2015_06_15/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
17
17
|
azure/mgmt/storage/v2015_06_15/aio/__init__.py,sha256=-thZF-XTZ6YiI3LJNif3nCn1IW0CsbhA0voPJnMuULU,837
|
18
18
|
azure/mgmt/storage/v2015_06_15/aio/_configuration.py,sha256=DqTdlN3e-Z7DWBGZ4gWK9N_6-htKAKjQHtQRgT6dgr4,3582
|
19
19
|
azure/mgmt/storage/v2015_06_15/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -35,7 +35,7 @@ azure/mgmt/storage/v2016_01_01/_configuration.py,sha256=MFWPrhlEWfjTSaTFeLHGYCCy
|
|
35
35
|
azure/mgmt/storage/v2016_01_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
36
36
|
azure/mgmt/storage/v2016_01_01/_storage_management_client.py,sha256=aMzIgAnyCY6n4LWwYr1W3f-G0pnzF7YQjFIodhEqKAE,5579
|
37
37
|
azure/mgmt/storage/v2016_01_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
38
|
-
azure/mgmt/storage/v2016_01_01/_version.py,sha256=
|
38
|
+
azure/mgmt/storage/v2016_01_01/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
39
39
|
azure/mgmt/storage/v2016_01_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
40
40
|
azure/mgmt/storage/v2016_01_01/aio/_configuration.py,sha256=_HIGfPjI-COGiszwWe60NgV2y5N-W8VXSSZbiwKMMAA,3599
|
41
41
|
azure/mgmt/storage/v2016_01_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -57,7 +57,7 @@ azure/mgmt/storage/v2016_12_01/_configuration.py,sha256=vRWmJEuPdbiNNBegtZfEey2M
|
|
57
57
|
azure/mgmt/storage/v2016_12_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
58
58
|
azure/mgmt/storage/v2016_12_01/_storage_management.py,sha256=nJTsHskV_nEsDOjMEc5NKnUxtkuAxEMTkszynj3Pz-0,5536
|
59
59
|
azure/mgmt/storage/v2016_12_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
60
|
-
azure/mgmt/storage/v2016_12_01/_version.py,sha256=
|
60
|
+
azure/mgmt/storage/v2016_12_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
61
61
|
azure/mgmt/storage/v2016_12_01/aio/__init__.py,sha256=-thZF-XTZ6YiI3LJNif3nCn1IW0CsbhA0voPJnMuULU,837
|
62
62
|
azure/mgmt/storage/v2016_12_01/aio/_configuration.py,sha256=FI-j6A9b6okVLNu1OgV6hAiz-lzm2ORpsmcTO18meig,3587
|
63
63
|
azure/mgmt/storage/v2016_12_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -79,7 +79,7 @@ azure/mgmt/storage/v2017_06_01/_configuration.py,sha256=h4IPaIL39b689g5jzFvFb0YF
|
|
79
79
|
azure/mgmt/storage/v2017_06_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
80
80
|
azure/mgmt/storage/v2017_06_01/_storage_management.py,sha256=KMTvz16ksuyqqjbRXx2s3YbLVfaCatjt5pZithHRWZ8,6032
|
81
81
|
azure/mgmt/storage/v2017_06_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
82
|
-
azure/mgmt/storage/v2017_06_01/_version.py,sha256=
|
82
|
+
azure/mgmt/storage/v2017_06_01/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
83
83
|
azure/mgmt/storage/v2017_06_01/aio/__init__.py,sha256=-thZF-XTZ6YiI3LJNif3nCn1IW0CsbhA0voPJnMuULU,837
|
84
84
|
azure/mgmt/storage/v2017_06_01/aio/_configuration.py,sha256=SSXWpne5MmjCFp2GM4Af5pgWOA6pqqZ4Ga_cX1CPr9U,3587
|
85
85
|
azure/mgmt/storage/v2017_06_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -105,7 +105,7 @@ azure/mgmt/storage/v2017_10_01/_configuration.py,sha256=kylcEQWqhWcnQu56jwJlPxbQ
|
|
105
105
|
azure/mgmt/storage/v2017_10_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
106
106
|
azure/mgmt/storage/v2017_10_01/_storage_management.py,sha256=ORIMHri-aSelcmX-CFM_eweHiuUanSATXd2KAEL2_Oc,6032
|
107
107
|
azure/mgmt/storage/v2017_10_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
108
|
-
azure/mgmt/storage/v2017_10_01/_version.py,sha256=
|
108
|
+
azure/mgmt/storage/v2017_10_01/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
109
109
|
azure/mgmt/storage/v2017_10_01/aio/__init__.py,sha256=-thZF-XTZ6YiI3LJNif3nCn1IW0CsbhA0voPJnMuULU,837
|
110
110
|
azure/mgmt/storage/v2017_10_01/aio/_configuration.py,sha256=oR6jTxtt7JyCbSCImmrpfyD5cwkL1W0Zv4e667LbYjs,3587
|
111
111
|
azure/mgmt/storage/v2017_10_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -131,7 +131,7 @@ azure/mgmt/storage/v2018_02_01/_configuration.py,sha256=d_tXB5eQkg0OSyuhwWhSUlXy
|
|
131
131
|
azure/mgmt/storage/v2018_02_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
132
132
|
azure/mgmt/storage/v2018_02_01/_storage_management_client.py,sha256=z__saAhzgZQtt8lq-Oz2j1aG5hH14sR7QVDmFwpZO6U,6296
|
133
133
|
azure/mgmt/storage/v2018_02_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
134
|
-
azure/mgmt/storage/v2018_02_01/_version.py,sha256=
|
134
|
+
azure/mgmt/storage/v2018_02_01/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
135
135
|
azure/mgmt/storage/v2018_02_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
136
136
|
azure/mgmt/storage/v2018_02_01/aio/_configuration.py,sha256=AD1vVbuAEdGw8HATzhIv47oW10uQspYGzg7EjItOUPo,3475
|
137
137
|
azure/mgmt/storage/v2018_02_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -159,7 +159,7 @@ azure/mgmt/storage/v2018_03_01_preview/_configuration.py,sha256=tecpPPyh2_hXTgzv
|
|
159
159
|
azure/mgmt/storage/v2018_03_01_preview/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
160
160
|
azure/mgmt/storage/v2018_03_01_preview/_storage_management_client.py,sha256=zrDiSLOAFuDBRMs_KszcMEgifB3m4bS7XkIwW4ADxok,6865
|
161
161
|
azure/mgmt/storage/v2018_03_01_preview/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
162
|
-
azure/mgmt/storage/v2018_03_01_preview/_version.py,sha256=
|
162
|
+
azure/mgmt/storage/v2018_03_01_preview/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
163
163
|
azure/mgmt/storage/v2018_03_01_preview/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
164
164
|
azure/mgmt/storage/v2018_03_01_preview/aio/_configuration.py,sha256=ErVboeHDii7HaiR-wRBoBPdbX_wSAgFp0YcKzlRCFz0,3491
|
165
165
|
azure/mgmt/storage/v2018_03_01_preview/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -189,7 +189,7 @@ azure/mgmt/storage/v2018_07_01/_configuration.py,sha256=hihW9F20pg5XRULvBQEkYHfl
|
|
189
189
|
azure/mgmt/storage/v2018_07_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
190
190
|
azure/mgmt/storage/v2018_07_01/_storage_management_client.py,sha256=BR1inXB6rxHxS0ly1I1ABCHfQNUonALYiN9FzbPfCII,6660
|
191
191
|
azure/mgmt/storage/v2018_07_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
192
|
-
azure/mgmt/storage/v2018_07_01/_version.py,sha256=
|
192
|
+
azure/mgmt/storage/v2018_07_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
193
193
|
azure/mgmt/storage/v2018_07_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
194
194
|
azure/mgmt/storage/v2018_07_01/aio/_configuration.py,sha256=CdQ_zAvmSSVYuyu0Gy1_3XcAdBNbouMTkjSWV-DWTAc,3475
|
195
195
|
azure/mgmt/storage/v2018_07_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -219,7 +219,7 @@ azure/mgmt/storage/v2018_11_01/_configuration.py,sha256=TDuN-zuwdJ4uXMep-d354PLL
|
|
219
219
|
azure/mgmt/storage/v2018_11_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
220
220
|
azure/mgmt/storage/v2018_11_01/_storage_management_client.py,sha256=PcfRjCMPiqgK71J8RGbcGNTZaaC3ENyP2vbBgjjSpco,7068
|
221
221
|
azure/mgmt/storage/v2018_11_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
222
|
-
azure/mgmt/storage/v2018_11_01/_version.py,sha256=
|
222
|
+
azure/mgmt/storage/v2018_11_01/_version.py,sha256=ghKeRY_iVoDPsNuGAedrZrvdN6cGzCKqMb29WFdFAF8,487
|
223
223
|
azure/mgmt/storage/v2018_11_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
224
224
|
azure/mgmt/storage/v2018_11_01/aio/_configuration.py,sha256=thliAObz9_uPtp7GBEv9CgCeXgHRd9084F_FeXRHbRc,3475
|
225
225
|
azure/mgmt/storage/v2018_11_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -251,7 +251,7 @@ azure/mgmt/storage/v2019_04_01/_configuration.py,sha256=R6jMidcN4r9bb8oHMaZ1nAUe
|
|
251
251
|
azure/mgmt/storage/v2019_04_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
252
252
|
azure/mgmt/storage/v2019_04_01/_storage_management_client.py,sha256=nOdOkTgObnFhvng01mijT4MOGrf_5_DmL539ByAtWqY,7718
|
253
253
|
azure/mgmt/storage/v2019_04_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
254
|
-
azure/mgmt/storage/v2019_04_01/_version.py,sha256=
|
254
|
+
azure/mgmt/storage/v2019_04_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
255
255
|
azure/mgmt/storage/v2019_04_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
256
256
|
azure/mgmt/storage/v2019_04_01/aio/_configuration.py,sha256=Lq7OcqgB59cj7PdEtyXqeNHtZNw72myqXxuCoY9bHC4,3475
|
257
257
|
azure/mgmt/storage/v2019_04_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -287,7 +287,7 @@ azure/mgmt/storage/v2019_06_01/_configuration.py,sha256=0BJFtYpk1_439xwhrGRuSPXU
|
|
287
287
|
azure/mgmt/storage/v2019_06_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
288
288
|
azure/mgmt/storage/v2019_06_01/_storage_management_client.py,sha256=dQ_C8TOliKhI6LL4fZAnVIrDP331Mvai4MO-8vUnCvQ,10945
|
289
289
|
azure/mgmt/storage/v2019_06_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
290
|
-
azure/mgmt/storage/v2019_06_01/_version.py,sha256=
|
290
|
+
azure/mgmt/storage/v2019_06_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
291
291
|
azure/mgmt/storage/v2019_06_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
292
292
|
azure/mgmt/storage/v2019_06_01/aio/_configuration.py,sha256=AYtFA0NoRxs8gp4TnwNwSa_fFDFuso07Edt47PN2yhs,3475
|
293
293
|
azure/mgmt/storage/v2019_06_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -341,7 +341,7 @@ azure/mgmt/storage/v2020_08_01_preview/_configuration.py,sha256=T4nAhv5BpTJ5PNNl
|
|
341
341
|
azure/mgmt/storage/v2020_08_01_preview/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
342
342
|
azure/mgmt/storage/v2020_08_01_preview/_storage_management_client.py,sha256=mgNULcaFc-hlvO1pF7KoIg7oFWGia5pLoqNjywO1A-4,11733
|
343
343
|
azure/mgmt/storage/v2020_08_01_preview/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
344
|
-
azure/mgmt/storage/v2020_08_01_preview/_version.py,sha256=
|
344
|
+
azure/mgmt/storage/v2020_08_01_preview/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
345
345
|
azure/mgmt/storage/v2020_08_01_preview/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
346
346
|
azure/mgmt/storage/v2020_08_01_preview/aio/_configuration.py,sha256=FJ_ynE_AvCv8vcrqtBGWGPl6Yu-4ZtVjPCF2RmHthR8,3491
|
347
347
|
azure/mgmt/storage/v2020_08_01_preview/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -397,7 +397,7 @@ azure/mgmt/storage/v2021_01_01/_configuration.py,sha256=3RWewQUvt0vUbKC5Ah_F8cpr
|
|
397
397
|
azure/mgmt/storage/v2021_01_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
398
398
|
azure/mgmt/storage/v2021_01_01/_storage_management_client.py,sha256=ofa8lZwJdV7nZ_ij7S9gPHMAyRNgKng6BipRjGW7TDQ,11298
|
399
399
|
azure/mgmt/storage/v2021_01_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
400
|
-
azure/mgmt/storage/v2021_01_01/_version.py,sha256=
|
400
|
+
azure/mgmt/storage/v2021_01_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
401
401
|
azure/mgmt/storage/v2021_01_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
402
402
|
azure/mgmt/storage/v2021_01_01/aio/_configuration.py,sha256=Cf-BICV3OFjRKCqP3thfB0cmoPb2F1iS24nWHJl5dwY,3475
|
403
403
|
azure/mgmt/storage/v2021_01_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -453,7 +453,7 @@ azure/mgmt/storage/v2021_02_01/_configuration.py,sha256=wlxa2bRcfv9VUJ7jEBYZ8PZ5
|
|
453
453
|
azure/mgmt/storage/v2021_02_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
454
454
|
azure/mgmt/storage/v2021_02_01/_storage_management_client.py,sha256=D0W78yt_YXpy0MYcdXROuPf03B6X1LbSLapmmXMIu0M,11298
|
455
455
|
azure/mgmt/storage/v2021_02_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
456
|
-
azure/mgmt/storage/v2021_02_01/_version.py,sha256=
|
456
|
+
azure/mgmt/storage/v2021_02_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
457
457
|
azure/mgmt/storage/v2021_02_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
458
458
|
azure/mgmt/storage/v2021_02_01/aio/_configuration.py,sha256=QTt08XHbqjiFjSjWzDQHA3xaWcOIiPgF_AGdC5U_jYQ,3475
|
459
459
|
azure/mgmt/storage/v2021_02_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -509,7 +509,7 @@ azure/mgmt/storage/v2021_04_01/_configuration.py,sha256=P7UebI0GJuusovEF0h8zvwTo
|
|
509
509
|
azure/mgmt/storage/v2021_04_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
510
510
|
azure/mgmt/storage/v2021_04_01/_storage_management_client.py,sha256=7FL33UzFqqpLlDUq2db4rMlOypV5ESrd6-kXlzjNtwg,11298
|
511
511
|
azure/mgmt/storage/v2021_04_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
512
|
-
azure/mgmt/storage/v2021_04_01/_version.py,sha256=
|
512
|
+
azure/mgmt/storage/v2021_04_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
513
513
|
azure/mgmt/storage/v2021_04_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
514
514
|
azure/mgmt/storage/v2021_04_01/aio/_configuration.py,sha256=B6xfsDh5HaUfRm20GWKsxlt1bMZZsPIBewAsQ6shgKA,3475
|
515
515
|
azure/mgmt/storage/v2021_04_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -565,7 +565,7 @@ azure/mgmt/storage/v2021_06_01/_configuration.py,sha256=mxl8Nc80SpJLZRvIi3OU2A9j
|
|
565
565
|
azure/mgmt/storage/v2021_06_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
566
566
|
azure/mgmt/storage/v2021_06_01/_storage_management_client.py,sha256=T7L0zBk3UxX-fK8h1lR6xIWkJEykv1yDEsldtiNtuoU,11298
|
567
567
|
azure/mgmt/storage/v2021_06_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
568
|
-
azure/mgmt/storage/v2021_06_01/_version.py,sha256=
|
568
|
+
azure/mgmt/storage/v2021_06_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
569
569
|
azure/mgmt/storage/v2021_06_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
570
570
|
azure/mgmt/storage/v2021_06_01/aio/_configuration.py,sha256=OYAqu8TUESf3mzg4TtslVy4jFFOAAT3Ev_GTFyftpfY,3475
|
571
571
|
azure/mgmt/storage/v2021_06_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -621,7 +621,7 @@ azure/mgmt/storage/v2021_08_01/_configuration.py,sha256=WkZHtsLFTx2h7M5XUxA4ZdzM
|
|
621
621
|
azure/mgmt/storage/v2021_08_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
622
622
|
azure/mgmt/storage/v2021_08_01/_storage_management_client.py,sha256=tHsJOi1fvC7oNNBUBmR1gi0mtliBe0S_AFtlu7g2fSc,11616
|
623
623
|
azure/mgmt/storage/v2021_08_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
624
|
-
azure/mgmt/storage/v2021_08_01/_version.py,sha256=
|
624
|
+
azure/mgmt/storage/v2021_08_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
625
625
|
azure/mgmt/storage/v2021_08_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
626
626
|
azure/mgmt/storage/v2021_08_01/aio/_configuration.py,sha256=uqkMIDOoyzu308E2KAN9GM-461iPOeE6fREiBL0t65s,3475
|
627
627
|
azure/mgmt/storage/v2021_08_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -679,7 +679,7 @@ azure/mgmt/storage/v2021_09_01/_configuration.py,sha256=E_rg1iwuRjvioHbDUPeRj_oC
|
|
679
679
|
azure/mgmt/storage/v2021_09_01/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
680
680
|
azure/mgmt/storage/v2021_09_01/_storage_management_client.py,sha256=XUPge4whr4KnneweQDz_qgEUHDhxCw-elzPXQZWvg2A,11616
|
681
681
|
azure/mgmt/storage/v2021_09_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
682
|
-
azure/mgmt/storage/v2021_09_01/_version.py,sha256=
|
682
|
+
azure/mgmt/storage/v2021_09_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
683
683
|
azure/mgmt/storage/v2021_09_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
684
684
|
azure/mgmt/storage/v2021_09_01/aio/_configuration.py,sha256=g5xzDR-MQgSD0E4Q-Cmc2rm5kfOTqfqQ7fjlzASfGCg,3475
|
685
685
|
azure/mgmt/storage/v2021_09_01/aio/_patch.py,sha256=OSgdfwzpocExbdlOm1J8mI9CGXjLs5l6FvoQkS9_Bew,1531
|
@@ -737,7 +737,7 @@ azure/mgmt/storage/v2022_05_01/_configuration.py,sha256=I95msmFtYUhzKQTt7pv9tkgT
|
|
737
737
|
azure/mgmt/storage/v2022_05_01/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
738
738
|
azure/mgmt/storage/v2022_05_01/_storage_management_client.py,sha256=eNms9pfVK7KUb2cu2S_-mf9IxTNZkS-bH0GsDkRFIsE,11616
|
739
739
|
azure/mgmt/storage/v2022_05_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
740
|
-
azure/mgmt/storage/v2022_05_01/_version.py,sha256=
|
740
|
+
azure/mgmt/storage/v2022_05_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
741
741
|
azure/mgmt/storage/v2022_05_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
742
742
|
azure/mgmt/storage/v2022_05_01/aio/_configuration.py,sha256=7ijHH9h4UHXNu5YtVE_Vc5hu5xTyOX3J1WIMemPNjnA,3475
|
743
743
|
azure/mgmt/storage/v2022_05_01/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
@@ -795,7 +795,7 @@ azure/mgmt/storage/v2022_09_01/_configuration.py,sha256=7pDOyWNft4Dwu1Inn9q0hAvp
|
|
795
795
|
azure/mgmt/storage/v2022_09_01/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
796
796
|
azure/mgmt/storage/v2022_09_01/_storage_management_client.py,sha256=pto9iGzh5ilw8BCiHWDOKAEaPnJ1f-rekYOu0NDT09g,11616
|
797
797
|
azure/mgmt/storage/v2022_09_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
798
|
-
azure/mgmt/storage/v2022_09_01/_version.py,sha256=
|
798
|
+
azure/mgmt/storage/v2022_09_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
799
799
|
azure/mgmt/storage/v2022_09_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
800
800
|
azure/mgmt/storage/v2022_09_01/aio/_configuration.py,sha256=ya7lrqYDhCBF4nMvlbaatrYDbOYSQ9Ya2ewEKbsCX9s,3475
|
801
801
|
azure/mgmt/storage/v2022_09_01/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
@@ -853,7 +853,7 @@ azure/mgmt/storage/v2023_01_01/_configuration.py,sha256=ypbb2NAPBkrcV6oaFoLcin1y
|
|
853
853
|
azure/mgmt/storage/v2023_01_01/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
854
854
|
azure/mgmt/storage/v2023_01_01/_storage_management_client.py,sha256=o7w0q2Dn6w20sXMCsuLnaH5eaPAN4Sd-3toP8CNcEn4,11616
|
855
855
|
azure/mgmt/storage/v2023_01_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
856
|
-
azure/mgmt/storage/v2023_01_01/_version.py,sha256=
|
856
|
+
azure/mgmt/storage/v2023_01_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
857
857
|
azure/mgmt/storage/v2023_01_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
858
858
|
azure/mgmt/storage/v2023_01_01/aio/_configuration.py,sha256=0d9k1r6rF9sSV1VbfZniAgzpgueIMSdqXhBFYg6gtuE,3475
|
859
859
|
azure/mgmt/storage/v2023_01_01/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
@@ -911,7 +911,7 @@ azure/mgmt/storage/v2023_05_01/_configuration.py,sha256=RNzkozgUlX1q6mSwkRmXWbHx
|
|
911
911
|
azure/mgmt/storage/v2023_05_01/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
912
912
|
azure/mgmt/storage/v2023_05_01/_storage_management_client.py,sha256=oUwjWJ0azmCXvrq0XLJEG2DfNYu1vlJzWP-Xqi9ePWs,13601
|
913
913
|
azure/mgmt/storage/v2023_05_01/_vendor.py,sha256=e3w-rd6okoiCIB8rNMtF0fehAYFWNlshwiwTsIRkEH4,778
|
914
|
-
azure/mgmt/storage/v2023_05_01/_version.py,sha256=
|
914
|
+
azure/mgmt/storage/v2023_05_01/_version.py,sha256=SgtyYAdWJAYhVPDLyiBVyCTG8wYI9ZT2cqBGlg1eU1s,486
|
915
915
|
azure/mgmt/storage/v2023_05_01/aio/__init__.py,sha256=bAx1ih7ENmb1M9e3yUxOlLz9UNdxG8JV5nJX6kNEiO4,856
|
916
916
|
azure/mgmt/storage/v2023_05_01/aio/_configuration.py,sha256=WJfZQk5auYm88q_dguMPjUmvoPsY58pvRQCnrINU-v8,3475
|
917
917
|
azure/mgmt/storage/v2023_05_01/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
|
@@ -936,9 +936,9 @@ azure/mgmt/storage/v2023_05_01/aio/operations/_queue_operations.py,sha256=53VvS0
|
|
936
936
|
azure/mgmt/storage/v2023_05_01/aio/operations/_queue_services_operations.py,sha256=nNLSzzQsoBpYPALkZNdbM83vH_PBPmMA2OEMGigwCNQ,15117
|
937
937
|
azure/mgmt/storage/v2023_05_01/aio/operations/_skus_operations.py,sha256=mqzSGv0cY8Gt7sgDgqkNawV2HtK7Yob_9V7pGSooTdk,5907
|
938
938
|
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_accounts_operations.py,sha256=H8i8DaxB4Iy7E4_BQiGaFz4A6FTqdk8SeMUpJkx1lIc,103548
|
939
|
-
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=
|
940
|
-
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=
|
941
|
-
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py,sha256=
|
939
|
+
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignment_instances_report_operations.py,sha256=QwrU_r0uIwDR8bbcg-_1dM6oe7jlzBIosUrIpHCVYEI,8012
|
940
|
+
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_instances_report_operations.py,sha256=ShlX-xONRUOnW9_jMgs0ocH7zIPW_HoSp7kw-PAK09M,7590
|
941
|
+
azure/mgmt/storage/v2023_05_01/aio/operations/_storage_task_assignments_operations.py,sha256=DRmttBL5NqIfTo2WdcfhvYzeag_P4WKCavJrOhwD54E,38781
|
942
942
|
azure/mgmt/storage/v2023_05_01/aio/operations/_table_operations.py,sha256=lIx0t9DjOi_4kMtmjpGCo1k_kMwzlazSDsDkUoaG4Q8,26583
|
943
943
|
azure/mgmt/storage/v2023_05_01/aio/operations/_table_services_operations.py,sha256=B72f8sDlTJe69AiSxVi2x12Q3Xcs37Fc_Xm8IQi-AUk,15117
|
944
944
|
azure/mgmt/storage/v2023_05_01/aio/operations/_usages_operations.py,sha256=4eXkzyQ-wuh2bv98gpIDUPD42lTXuSd1QvNJ6rX1oo4,6093
|
@@ -966,14 +966,14 @@ azure/mgmt/storage/v2023_05_01/operations/_queue_operations.py,sha256=6F9SmjMtIp
|
|
966
966
|
azure/mgmt/storage/v2023_05_01/operations/_queue_services_operations.py,sha256=8-7DqSzh_vcR5biqcUGi6zAj1zHdavb0dHZgeTT1Crs,20123
|
967
967
|
azure/mgmt/storage/v2023_05_01/operations/_skus_operations.py,sha256=2S5_EZM-PxgEbjyCVeWSAuqd_nDyMqcb-4sjGsK_4Ns,6846
|
968
968
|
azure/mgmt/storage/v2023_05_01/operations/_storage_accounts_operations.py,sha256=b88XM34FTYMmiZwj-4pm1Ajk3jpjEf9CfUxM11xDhMc,129794
|
969
|
-
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py,sha256=
|
970
|
-
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py,sha256=
|
971
|
-
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py,sha256=
|
969
|
+
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignment_instances_report_operations.py,sha256=dolXJbp9EiWukMIJjLumogw1S9az8ZOh003Rd932c5w,10063
|
970
|
+
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_instances_report_operations.py,sha256=wuvQ3BN8DTclicm-ba49CfP3OS00HPXghCzTQtD_VF0,9286
|
971
|
+
azure/mgmt/storage/v2023_05_01/operations/_storage_task_assignments_operations.py,sha256=JEQGBfeu3CdgAKsr_2WZ7hrWlZfsY0yi_pjb9meZwYQ,47504
|
972
972
|
azure/mgmt/storage/v2023_05_01/operations/_table_operations.py,sha256=5rhWAoMjlybuQqZyXvIQt3dPULy_qPkOSAv13yoCS7M,35055
|
973
973
|
azure/mgmt/storage/v2023_05_01/operations/_table_services_operations.py,sha256=05VG_t9lbEtsuSdeaarvLcNMKEZaupAfne2S8s8IOto,20123
|
974
974
|
azure/mgmt/storage/v2023_05_01/operations/_usages_operations.py,sha256=PwiliveWztU0NDES0Efz1UXHFCXasa3TPZg3zRyTBKs,7190
|
975
|
-
azure_mgmt_storage-21.2.
|
976
|
-
azure_mgmt_storage-21.2.
|
977
|
-
azure_mgmt_storage-21.2.
|
978
|
-
azure_mgmt_storage-21.2.
|
979
|
-
azure_mgmt_storage-21.2.
|
975
|
+
azure_mgmt_storage-21.2.1.dist-info/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
|
976
|
+
azure_mgmt_storage-21.2.1.dist-info/METADATA,sha256=1W6ejfiItgkfeMzSrSIMh2WFZLgRs3Hl8j_LX4vkEKQ,31193
|
977
|
+
azure_mgmt_storage-21.2.1.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
|
978
|
+
azure_mgmt_storage-21.2.1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
979
|
+
azure_mgmt_storage-21.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|