azure-mgmt-storage 23.0.1__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 +16 -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 +22 -0
- azure/mgmt/storage/models/_models_py3.py +607 -132
- azure/mgmt/storage/models/_storage_management_client_enums.py +21 -1
- 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 +28 -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.0.1.dist-info → azure_mgmt_storage-24.0.0.dist-info}/METADATA +54 -11
- azure_mgmt_storage-24.0.0.dist-info/RECORD +73 -0
- {azure_mgmt_storage-23.0.1.dist-info → azure_mgmt_storage-24.0.0.dist-info}/WHEEL +1 -1
- azure_mgmt_storage-23.0.1.dist-info/RECORD +0 -73
- {azure_mgmt_storage-23.0.1.dist-info → azure_mgmt_storage-24.0.0.dist-info/licenses}/LICENSE +0 -0
- {azure_mgmt_storage-23.0.1.dist-info → azure_mgmt_storage-24.0.0.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
8
|
from collections.abc import MutableMapping
|
|
9
9
|
from io import IOBase
|
|
10
|
-
from typing import Any, Callable,
|
|
10
|
+
from typing import Any, Callable, IO, Literal, Optional, TypeVar, Union, overload
|
|
11
11
|
|
|
12
12
|
from azure.core import AsyncPipelineClient
|
|
13
13
|
from azure.core.exceptions import (
|
|
@@ -34,7 +34,8 @@ from ...operations._queue_services_operations import (
|
|
|
34
34
|
from .._configuration import StorageManagementClientConfiguration
|
|
35
35
|
|
|
36
36
|
T = TypeVar("T")
|
|
37
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
37
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
38
|
+
List = list
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
class QueueServicesOperations:
|
|
@@ -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 AsyncPipelineClient
|
|
@@ -31,7 +31,8 @@ from ...operations._skus_operations import build_list_request
|
|
|
31
31
|
from .._configuration import StorageManagementClientConfiguration
|
|
32
32
|
|
|
33
33
|
T = TypeVar("T")
|
|
34
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
34
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
35
|
+
List = list
|
|
35
36
|
|
|
36
37
|
|
|
37
38
|
class SkusOperations:
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# --------------------------------------------------------------------------
|
|
9
9
|
from collections.abc import MutableMapping
|
|
10
10
|
from io import IOBase
|
|
11
|
-
from typing import Any, AsyncIterator, Callable,
|
|
11
|
+
from typing import Any, AsyncIterator, Callable, IO, Literal, Optional, TypeVar, Union, cast, overload
|
|
12
12
|
import urllib.parse
|
|
13
13
|
|
|
14
14
|
from azure.core import AsyncPipelineClient
|
|
@@ -57,7 +57,8 @@ from ...operations._storage_accounts_operations import (
|
|
|
57
57
|
from .._configuration import StorageManagementClientConfiguration
|
|
58
58
|
|
|
59
59
|
T = TypeVar("T")
|
|
60
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
60
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
61
|
+
List = list
|
|
61
62
|
|
|
62
63
|
|
|
63
64
|
class StorageAccountsOperations: # pylint: disable=too-many-public-methods
|
|
@@ -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,
|
|
10
|
+
from typing import Any, Callable, Optional, TypeVar
|
|
11
11
|
import urllib.parse
|
|
12
12
|
|
|
13
13
|
from azure.core import AsyncPipelineClient
|
|
@@ -32,7 +32,8 @@ from ...operations._storage_task_assignment_instances_report_operations import b
|
|
|
32
32
|
from .._configuration import StorageManagementClientConfiguration
|
|
33
33
|
|
|
34
34
|
T = TypeVar("T")
|
|
35
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
35
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
36
|
+
List = list
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
class StorageTaskAssignmentInstancesReportOperations: # pylint: disable=name-too-long
|
|
@@ -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,
|
|
10
|
+
from typing import Any, Callable, Optional, TypeVar
|
|
11
11
|
import urllib.parse
|
|
12
12
|
|
|
13
13
|
from azure.core import AsyncPipelineClient
|
|
@@ -32,7 +32,8 @@ from ...operations._storage_task_assignments_instances_report_operations import
|
|
|
32
32
|
from .._configuration import StorageManagementClientConfiguration
|
|
33
33
|
|
|
34
34
|
T = TypeVar("T")
|
|
35
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
35
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
36
|
+
List = list
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
class StorageTaskAssignmentsInstancesReportOperations: # pylint: disable=name-too-long
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
8
|
from collections.abc import MutableMapping
|
|
9
9
|
from io import IOBase
|
|
10
|
-
from typing import Any, AsyncIterator, Callable,
|
|
10
|
+
from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload
|
|
11
11
|
import urllib.parse
|
|
12
12
|
|
|
13
13
|
from azure.core import AsyncPipelineClient
|
|
@@ -43,7 +43,8 @@ from ...operations._storage_task_assignments_operations import (
|
|
|
43
43
|
from .._configuration import StorageManagementClientConfiguration
|
|
44
44
|
|
|
45
45
|
T = TypeVar("T")
|
|
46
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
46
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
47
|
+
List = list
|
|
47
48
|
|
|
48
49
|
|
|
49
50
|
class StorageTaskAssignmentsOperations:
|
|
@@ -129,6 +130,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
129
130
|
|
|
130
131
|
response_headers = {}
|
|
131
132
|
if response.status_code == 202:
|
|
133
|
+
response_headers["Azure-AsyncOperation"] = self._deserialize(
|
|
134
|
+
"str", response.headers.get("Azure-AsyncOperation")
|
|
135
|
+
)
|
|
132
136
|
response_headers["Location"] = self._deserialize("str", response.headers.get("Location"))
|
|
133
137
|
|
|
134
138
|
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
|
|
@@ -365,6 +369,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
365
369
|
|
|
366
370
|
response_headers = {}
|
|
367
371
|
if response.status_code == 202:
|
|
372
|
+
response_headers["Azure-AsyncOperation"] = self._deserialize(
|
|
373
|
+
"str", response.headers.get("Azure-AsyncOperation")
|
|
374
|
+
)
|
|
368
375
|
response_headers["Location"] = self._deserialize("str", response.headers.get("Location"))
|
|
369
376
|
|
|
370
377
|
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
|
|
@@ -637,6 +644,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
637
644
|
|
|
638
645
|
response_headers = {}
|
|
639
646
|
if response.status_code == 202:
|
|
647
|
+
response_headers["Azure-AsyncOperation"] = self._deserialize(
|
|
648
|
+
"str", response.headers.get("Azure-AsyncOperation")
|
|
649
|
+
)
|
|
640
650
|
response_headers["Location"] = self._deserialize("str", response.headers.get("Location"))
|
|
641
651
|
|
|
642
652
|
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
|
|
@@ -713,7 +723,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
713
723
|
|
|
714
724
|
@distributed_trace
|
|
715
725
|
def list(
|
|
716
|
-
self, resource_group_name: str, account_name: str,
|
|
726
|
+
self, resource_group_name: str, account_name: str, top: Optional[int] = None, **kwargs: Any
|
|
717
727
|
) -> AsyncItemPaged["_models.StorageTaskAssignment"]:
|
|
718
728
|
"""List all the storage task assignments in an account.
|
|
719
729
|
|
|
@@ -724,9 +734,9 @@ class StorageTaskAssignmentsOperations:
|
|
|
724
734
|
Storage account names must be between 3 and 24 characters in length and use numbers and
|
|
725
735
|
lower-case letters only. Required.
|
|
726
736
|
:type account_name: str
|
|
727
|
-
:param
|
|
737
|
+
:param top: Optional, specifies the maximum number of storage task assignment Ids to be
|
|
728
738
|
included in the list response. Default value is None.
|
|
729
|
-
:type
|
|
739
|
+
:type top: int
|
|
730
740
|
:return: An iterator like instance of either StorageTaskAssignment or the result of
|
|
731
741
|
cls(response)
|
|
732
742
|
:rtype:
|
|
@@ -754,7 +764,7 @@ class StorageTaskAssignmentsOperations:
|
|
|
754
764
|
resource_group_name=resource_group_name,
|
|
755
765
|
account_name=account_name,
|
|
756
766
|
subscription_id=self._config.subscription_id,
|
|
757
|
-
|
|
767
|
+
top=top,
|
|
758
768
|
api_version=api_version,
|
|
759
769
|
headers=_headers,
|
|
760
770
|
params=_params,
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
8
|
from collections.abc import MutableMapping
|
|
9
9
|
from io import IOBase
|
|
10
|
-
from typing import Any, Callable,
|
|
10
|
+
from typing import Any, Callable, IO, Optional, TypeVar, Union, overload
|
|
11
11
|
import urllib.parse
|
|
12
12
|
|
|
13
13
|
from azure.core import AsyncPipelineClient
|
|
@@ -39,7 +39,8 @@ from ...operations._table_operations import (
|
|
|
39
39
|
from .._configuration import StorageManagementClientConfiguration
|
|
40
40
|
|
|
41
41
|
T = TypeVar("T")
|
|
42
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
42
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
43
|
+
List = list
|
|
43
44
|
|
|
44
45
|
|
|
45
46
|
class TableOperations:
|
|
@@ -171,9 +172,10 @@ class TableOperations:
|
|
|
171
172
|
|
|
172
173
|
api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version))
|
|
173
174
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
175
|
+
content_type = content_type if parameters else None
|
|
174
176
|
cls: ClsType[_models.Table] = kwargs.pop("cls", None)
|
|
175
177
|
|
|
176
|
-
content_type = content_type or "application/json"
|
|
178
|
+
content_type = content_type or "application/json" if parameters else None
|
|
177
179
|
_json = None
|
|
178
180
|
_content = None
|
|
179
181
|
if isinstance(parameters, (IOBase, bytes)):
|
|
@@ -326,9 +328,10 @@ class TableOperations:
|
|
|
326
328
|
|
|
327
329
|
api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version))
|
|
328
330
|
content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
|
|
331
|
+
content_type = content_type if parameters else None
|
|
329
332
|
cls: ClsType[_models.Table] = kwargs.pop("cls", None)
|
|
330
333
|
|
|
331
|
-
content_type = content_type or "application/json"
|
|
334
|
+
content_type = content_type or "application/json" if parameters else None
|
|
332
335
|
_json = None
|
|
333
336
|
_content = None
|
|
334
337
|
if isinstance(parameters, (IOBase, bytes)):
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# --------------------------------------------------------------------------
|
|
8
8
|
from collections.abc import MutableMapping
|
|
9
9
|
from io import IOBase
|
|
10
|
-
from typing import Any, Callable,
|
|
10
|
+
from typing import Any, Callable, IO, Literal, Optional, TypeVar, Union, overload
|
|
11
11
|
|
|
12
12
|
from azure.core import AsyncPipelineClient
|
|
13
13
|
from azure.core.exceptions import (
|
|
@@ -34,7 +34,8 @@ from ...operations._table_services_operations import (
|
|
|
34
34
|
from .._configuration import StorageManagementClientConfiguration
|
|
35
35
|
|
|
36
36
|
T = TypeVar("T")
|
|
37
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
37
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
38
|
+
List = list
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
class TableServicesOperations:
|
|
@@ -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 AsyncPipelineClient
|
|
@@ -31,7 +31,8 @@ from ...operations._usages_operations import build_list_by_location_request
|
|
|
31
31
|
from .._configuration import StorageManagementClientConfiguration
|
|
32
32
|
|
|
33
33
|
T = TypeVar("T")
|
|
34
|
-
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T,
|
|
34
|
+
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]]
|
|
35
|
+
List = list
|
|
35
36
|
|
|
36
37
|
|
|
37
38
|
class UsagesOperations:
|
|
@@ -49,8 +49,10 @@ from ._models_py3 import ( # type: ignore
|
|
|
49
49
|
DeletedAccountListResult,
|
|
50
50
|
DeletedShare,
|
|
51
51
|
Dimension,
|
|
52
|
+
DualStackEndpointPreference,
|
|
52
53
|
Encryption,
|
|
53
54
|
EncryptionIdentity,
|
|
55
|
+
EncryptionInTransit,
|
|
54
56
|
EncryptionScope,
|
|
55
57
|
EncryptionScopeKeyVaultProperties,
|
|
56
58
|
EncryptionScopeListResult,
|
|
@@ -77,6 +79,7 @@ from ._models_py3 import ( # type: ignore
|
|
|
77
79
|
FileShareLimits,
|
|
78
80
|
FileSharePropertiesFileSharePaidBursting,
|
|
79
81
|
FileShareRecommendations,
|
|
82
|
+
GeoPriorityReplicationStatus,
|
|
80
83
|
GeoReplicationStats,
|
|
81
84
|
IPRule,
|
|
82
85
|
Identity,
|
|
@@ -125,6 +128,7 @@ from ._models_py3 import ( # type: ignore
|
|
|
125
128
|
NetworkSecurityPerimeterConfigurationList,
|
|
126
129
|
NetworkSecurityPerimeterConfigurationPropertiesProfile,
|
|
127
130
|
NetworkSecurityPerimeterConfigurationPropertiesResourceAssociation,
|
|
131
|
+
NfsSetting,
|
|
128
132
|
NspAccessRule,
|
|
129
133
|
NspAccessRuleProperties,
|
|
130
134
|
NspAccessRulePropertiesSubscriptionsItem,
|
|
@@ -132,11 +136,13 @@ from ._models_py3 import ( # type: ignore
|
|
|
132
136
|
ObjectReplicationPolicy,
|
|
133
137
|
ObjectReplicationPolicyFilter,
|
|
134
138
|
ObjectReplicationPolicyPropertiesMetrics,
|
|
139
|
+
ObjectReplicationPolicyPropertiesPriorityReplication,
|
|
135
140
|
ObjectReplicationPolicyRule,
|
|
136
141
|
Operation,
|
|
137
142
|
OperationDisplay,
|
|
138
143
|
OperationListResult,
|
|
139
144
|
PermissionScope,
|
|
145
|
+
Placement,
|
|
140
146
|
PrivateEndpoint,
|
|
141
147
|
PrivateEndpointConnection,
|
|
142
148
|
PrivateEndpointConnectionListResult,
|
|
@@ -163,12 +169,15 @@ from ._models_py3 import ( # type: ignore
|
|
|
163
169
|
SignedIdentifier,
|
|
164
170
|
Sku,
|
|
165
171
|
SkuInformation,
|
|
172
|
+
SkuInformationLocationInfoItem,
|
|
173
|
+
SmbOAuthSettings,
|
|
166
174
|
SmbSetting,
|
|
167
175
|
SshPublicKey,
|
|
168
176
|
StorageAccount,
|
|
169
177
|
StorageAccountCheckNameAvailabilityParameters,
|
|
170
178
|
StorageAccountCreateParameters,
|
|
171
179
|
StorageAccountInternetEndpoints,
|
|
180
|
+
StorageAccountIpv6Endpoints,
|
|
172
181
|
StorageAccountKey,
|
|
173
182
|
StorageAccountListKeysResult,
|
|
174
183
|
StorageAccountListResult,
|
|
@@ -235,6 +244,7 @@ from ._storage_management_client_enums import ( # type: ignore
|
|
|
235
244
|
IdentityType,
|
|
236
245
|
ImmutabilityPolicyState,
|
|
237
246
|
ImmutabilityPolicyUpdateType,
|
|
247
|
+
IntervalUnit,
|
|
238
248
|
InventoryRuleType,
|
|
239
249
|
IssueType,
|
|
240
250
|
KeyPermission,
|
|
@@ -288,6 +298,7 @@ from ._storage_management_client_enums import ( # type: ignore
|
|
|
288
298
|
StorageAccountExpand,
|
|
289
299
|
TriggerType,
|
|
290
300
|
UsageUnit,
|
|
301
|
+
ZonePlacementPolicy,
|
|
291
302
|
)
|
|
292
303
|
from ._patch import __all__ as _patch_all
|
|
293
304
|
from ._patch import *
|
|
@@ -329,8 +340,10 @@ __all__ = [
|
|
|
329
340
|
"DeletedAccountListResult",
|
|
330
341
|
"DeletedShare",
|
|
331
342
|
"Dimension",
|
|
343
|
+
"DualStackEndpointPreference",
|
|
332
344
|
"Encryption",
|
|
333
345
|
"EncryptionIdentity",
|
|
346
|
+
"EncryptionInTransit",
|
|
334
347
|
"EncryptionScope",
|
|
335
348
|
"EncryptionScopeKeyVaultProperties",
|
|
336
349
|
"EncryptionScopeListResult",
|
|
@@ -357,6 +370,7 @@ __all__ = [
|
|
|
357
370
|
"FileShareLimits",
|
|
358
371
|
"FileSharePropertiesFileSharePaidBursting",
|
|
359
372
|
"FileShareRecommendations",
|
|
373
|
+
"GeoPriorityReplicationStatus",
|
|
360
374
|
"GeoReplicationStats",
|
|
361
375
|
"IPRule",
|
|
362
376
|
"Identity",
|
|
@@ -405,6 +419,7 @@ __all__ = [
|
|
|
405
419
|
"NetworkSecurityPerimeterConfigurationList",
|
|
406
420
|
"NetworkSecurityPerimeterConfigurationPropertiesProfile",
|
|
407
421
|
"NetworkSecurityPerimeterConfigurationPropertiesResourceAssociation",
|
|
422
|
+
"NfsSetting",
|
|
408
423
|
"NspAccessRule",
|
|
409
424
|
"NspAccessRuleProperties",
|
|
410
425
|
"NspAccessRulePropertiesSubscriptionsItem",
|
|
@@ -412,11 +427,13 @@ __all__ = [
|
|
|
412
427
|
"ObjectReplicationPolicy",
|
|
413
428
|
"ObjectReplicationPolicyFilter",
|
|
414
429
|
"ObjectReplicationPolicyPropertiesMetrics",
|
|
430
|
+
"ObjectReplicationPolicyPropertiesPriorityReplication",
|
|
415
431
|
"ObjectReplicationPolicyRule",
|
|
416
432
|
"Operation",
|
|
417
433
|
"OperationDisplay",
|
|
418
434
|
"OperationListResult",
|
|
419
435
|
"PermissionScope",
|
|
436
|
+
"Placement",
|
|
420
437
|
"PrivateEndpoint",
|
|
421
438
|
"PrivateEndpointConnection",
|
|
422
439
|
"PrivateEndpointConnectionListResult",
|
|
@@ -443,12 +460,15 @@ __all__ = [
|
|
|
443
460
|
"SignedIdentifier",
|
|
444
461
|
"Sku",
|
|
445
462
|
"SkuInformation",
|
|
463
|
+
"SkuInformationLocationInfoItem",
|
|
464
|
+
"SmbOAuthSettings",
|
|
446
465
|
"SmbSetting",
|
|
447
466
|
"SshPublicKey",
|
|
448
467
|
"StorageAccount",
|
|
449
468
|
"StorageAccountCheckNameAvailabilityParameters",
|
|
450
469
|
"StorageAccountCreateParameters",
|
|
451
470
|
"StorageAccountInternetEndpoints",
|
|
471
|
+
"StorageAccountIpv6Endpoints",
|
|
452
472
|
"StorageAccountKey",
|
|
453
473
|
"StorageAccountListKeysResult",
|
|
454
474
|
"StorageAccountListResult",
|
|
@@ -512,6 +532,7 @@ __all__ = [
|
|
|
512
532
|
"IdentityType",
|
|
513
533
|
"ImmutabilityPolicyState",
|
|
514
534
|
"ImmutabilityPolicyUpdateType",
|
|
535
|
+
"IntervalUnit",
|
|
515
536
|
"InventoryRuleType",
|
|
516
537
|
"IssueType",
|
|
517
538
|
"KeyPermission",
|
|
@@ -565,6 +586,7 @@ __all__ = [
|
|
|
565
586
|
"StorageAccountExpand",
|
|
566
587
|
"TriggerType",
|
|
567
588
|
"UsageUnit",
|
|
589
|
+
"ZonePlacementPolicy",
|
|
568
590
|
]
|
|
569
591
|
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
570
592
|
_patch_sdk()
|