mypy-boto3-transfer 1.40.52__py3-none-any.whl → 1.41.2__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.
- mypy_boto3_transfer/__main__.py +4 -4
- mypy_boto3_transfer/client.py +12 -17
- mypy_boto3_transfer/client.pyi +12 -17
- mypy_boto3_transfer/literals.py +7 -7
- mypy_boto3_transfer/literals.pyi +7 -7
- mypy_boto3_transfer/type_defs.py +106 -71
- mypy_boto3_transfer/type_defs.pyi +98 -69
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/METADATA +11 -25
- mypy_boto3_transfer-1.41.2.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.40.52.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Transfer 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.41.2\n"
|
|
16
|
+
"Version: 1.41.2\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#transfer\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.41.2\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_transfer/client.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -170,12 +171,6 @@ from .type_defs import (
|
|
|
170
171
|
)
|
|
171
172
|
from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
|
|
172
173
|
|
|
173
|
-
if sys.version_info >= (3, 9):
|
|
174
|
-
from builtins import dict as Dict
|
|
175
|
-
from builtins import type as Type
|
|
176
|
-
from collections.abc import Mapping
|
|
177
|
-
else:
|
|
178
|
-
from typing import Dict, Mapping, Type
|
|
179
174
|
if sys.version_info >= (3, 12):
|
|
180
175
|
from typing import Literal, Unpack
|
|
181
176
|
else:
|
|
@@ -186,16 +181,16 @@ __all__ = ("TransferClient",)
|
|
|
186
181
|
|
|
187
182
|
|
|
188
183
|
class Exceptions(BaseClientExceptions):
|
|
189
|
-
AccessDeniedException:
|
|
190
|
-
ClientError:
|
|
191
|
-
ConflictException:
|
|
192
|
-
InternalServiceError:
|
|
193
|
-
InvalidNextTokenException:
|
|
194
|
-
InvalidRequestException:
|
|
195
|
-
ResourceExistsException:
|
|
196
|
-
ResourceNotFoundException:
|
|
197
|
-
ServiceUnavailableException:
|
|
198
|
-
ThrottlingException:
|
|
184
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
185
|
+
ClientError: type[BotocoreClientError]
|
|
186
|
+
ConflictException: type[BotocoreClientError]
|
|
187
|
+
InternalServiceError: type[BotocoreClientError]
|
|
188
|
+
InvalidNextTokenException: type[BotocoreClientError]
|
|
189
|
+
InvalidRequestException: type[BotocoreClientError]
|
|
190
|
+
ResourceExistsException: type[BotocoreClientError]
|
|
191
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
192
|
+
ServiceUnavailableException: type[BotocoreClientError]
|
|
193
|
+
ThrottlingException: type[BotocoreClientError]
|
|
199
194
|
|
|
200
195
|
|
|
201
196
|
class TransferClient(BaseClient):
|
|
@@ -764,7 +759,7 @@ class TransferClient(BaseClient):
|
|
|
764
759
|
|
|
765
760
|
def send_workflow_step_state(
|
|
766
761
|
self, **kwargs: Unpack[SendWorkflowStepStateRequestTypeDef]
|
|
767
|
-
) ->
|
|
762
|
+
) -> dict[str, Any]:
|
|
768
763
|
"""
|
|
769
764
|
Sends a callback for asynchronous custom steps.
|
|
770
765
|
|
mypy_boto3_transfer/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -170,12 +171,6 @@ from .type_defs import (
|
|
|
170
171
|
)
|
|
171
172
|
from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
|
|
172
173
|
|
|
173
|
-
if sys.version_info >= (3, 9):
|
|
174
|
-
from builtins import dict as Dict
|
|
175
|
-
from builtins import type as Type
|
|
176
|
-
from collections.abc import Mapping
|
|
177
|
-
else:
|
|
178
|
-
from typing import Dict, Mapping, Type
|
|
179
174
|
if sys.version_info >= (3, 12):
|
|
180
175
|
from typing import Literal, Unpack
|
|
181
176
|
else:
|
|
@@ -184,16 +179,16 @@ else:
|
|
|
184
179
|
__all__ = ("TransferClient",)
|
|
185
180
|
|
|
186
181
|
class Exceptions(BaseClientExceptions):
|
|
187
|
-
AccessDeniedException:
|
|
188
|
-
ClientError:
|
|
189
|
-
ConflictException:
|
|
190
|
-
InternalServiceError:
|
|
191
|
-
InvalidNextTokenException:
|
|
192
|
-
InvalidRequestException:
|
|
193
|
-
ResourceExistsException:
|
|
194
|
-
ResourceNotFoundException:
|
|
195
|
-
ServiceUnavailableException:
|
|
196
|
-
ThrottlingException:
|
|
182
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
183
|
+
ClientError: type[BotocoreClientError]
|
|
184
|
+
ConflictException: type[BotocoreClientError]
|
|
185
|
+
InternalServiceError: type[BotocoreClientError]
|
|
186
|
+
InvalidNextTokenException: type[BotocoreClientError]
|
|
187
|
+
InvalidRequestException: type[BotocoreClientError]
|
|
188
|
+
ResourceExistsException: type[BotocoreClientError]
|
|
189
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
190
|
+
ServiceUnavailableException: type[BotocoreClientError]
|
|
191
|
+
ThrottlingException: type[BotocoreClientError]
|
|
197
192
|
|
|
198
193
|
class TransferClient(BaseClient):
|
|
199
194
|
"""
|
|
@@ -761,7 +756,7 @@ class TransferClient(BaseClient):
|
|
|
761
756
|
|
|
762
757
|
def send_workflow_step_state(
|
|
763
758
|
self, **kwargs: Unpack[SendWorkflowStepStateRequestTypeDef]
|
|
764
|
-
) ->
|
|
759
|
+
) -> dict[str, Any]:
|
|
765
760
|
"""
|
|
766
761
|
Sends a callback for asynchronous custom steps.
|
|
767
762
|
|
mypy_boto3_transfer/literals.py
CHANGED
|
@@ -81,6 +81,7 @@ __all__ = (
|
|
|
81
81
|
"TransferTableStatusType",
|
|
82
82
|
"WaiterName",
|
|
83
83
|
"WebAppEndpointPolicyType",
|
|
84
|
+
"WebAppEndpointTypeType",
|
|
84
85
|
"WorkflowStepTypeType",
|
|
85
86
|
)
|
|
86
87
|
|
|
@@ -150,6 +151,7 @@ StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING",
|
|
|
150
151
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
151
152
|
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
152
153
|
WebAppEndpointPolicyType = Literal["FIPS", "STANDARD"]
|
|
154
|
+
WebAppEndpointTypeType = Literal["PUBLIC", "VPC"]
|
|
153
155
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
154
156
|
TransferServiceName = Literal["transfer"]
|
|
155
157
|
ServiceName = Literal[
|
|
@@ -178,7 +180,6 @@ ServiceName = Literal[
|
|
|
178
180
|
"apprunner",
|
|
179
181
|
"appstream",
|
|
180
182
|
"appsync",
|
|
181
|
-
"apptest",
|
|
182
183
|
"arc-region-switch",
|
|
183
184
|
"arc-zonal-shift",
|
|
184
185
|
"artifact",
|
|
@@ -248,6 +249,7 @@ ServiceName = Literal[
|
|
|
248
249
|
"comprehend",
|
|
249
250
|
"comprehendmedical",
|
|
250
251
|
"compute-optimizer",
|
|
252
|
+
"compute-optimizer-automation",
|
|
251
253
|
"config",
|
|
252
254
|
"connect",
|
|
253
255
|
"connect-contact-lens",
|
|
@@ -346,7 +348,6 @@ ServiceName = Literal[
|
|
|
346
348
|
"iotdeviceadvisor",
|
|
347
349
|
"iotevents",
|
|
348
350
|
"iotevents-data",
|
|
349
|
-
"iotfleethub",
|
|
350
351
|
"iotfleetwise",
|
|
351
352
|
"iotsecuretunneling",
|
|
352
353
|
"iotsitewise",
|
|
@@ -385,8 +386,6 @@ ServiceName = Literal[
|
|
|
385
386
|
"location",
|
|
386
387
|
"logs",
|
|
387
388
|
"lookoutequipment",
|
|
388
|
-
"lookoutmetrics",
|
|
389
|
-
"lookoutvision",
|
|
390
389
|
"m2",
|
|
391
390
|
"machinelearning",
|
|
392
391
|
"macie2",
|
|
@@ -421,6 +420,7 @@ ServiceName = Literal[
|
|
|
421
420
|
"mq",
|
|
422
421
|
"mturk",
|
|
423
422
|
"mwaa",
|
|
423
|
+
"mwaa-serverless",
|
|
424
424
|
"neptune",
|
|
425
425
|
"neptune-graph",
|
|
426
426
|
"neptunedata",
|
|
@@ -440,6 +440,7 @@ ServiceName = Literal[
|
|
|
440
440
|
"osis",
|
|
441
441
|
"outposts",
|
|
442
442
|
"panorama",
|
|
443
|
+
"partnercentral-channel",
|
|
443
444
|
"partnercentral-selling",
|
|
444
445
|
"payment-cryptography",
|
|
445
446
|
"payment-cryptography-data",
|
|
@@ -461,8 +462,6 @@ ServiceName = Literal[
|
|
|
461
462
|
"qapps",
|
|
462
463
|
"qbusiness",
|
|
463
464
|
"qconnect",
|
|
464
|
-
"qldb",
|
|
465
|
-
"qldb-session",
|
|
466
465
|
"quicksight",
|
|
467
466
|
"ram",
|
|
468
467
|
"rbin",
|
|
@@ -477,7 +476,6 @@ ServiceName = Literal[
|
|
|
477
476
|
"resource-explorer-2",
|
|
478
477
|
"resource-groups",
|
|
479
478
|
"resourcegroupstaggingapi",
|
|
480
|
-
"robomaker",
|
|
481
479
|
"rolesanywhere",
|
|
482
480
|
"route53",
|
|
483
481
|
"route53-recovery-cluster",
|
|
@@ -486,6 +484,7 @@ ServiceName = Literal[
|
|
|
486
484
|
"route53domains",
|
|
487
485
|
"route53profiles",
|
|
488
486
|
"route53resolver",
|
|
487
|
+
"rtbfabric",
|
|
489
488
|
"rum",
|
|
490
489
|
"s3",
|
|
491
490
|
"s3control",
|
|
@@ -516,6 +515,7 @@ ServiceName = Literal[
|
|
|
516
515
|
"sesv2",
|
|
517
516
|
"shield",
|
|
518
517
|
"signer",
|
|
518
|
+
"signin",
|
|
519
519
|
"simspaceweaver",
|
|
520
520
|
"snow-device-management",
|
|
521
521
|
"snowball",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -80,6 +80,7 @@ __all__ = (
|
|
|
80
80
|
"TransferTableStatusType",
|
|
81
81
|
"WaiterName",
|
|
82
82
|
"WebAppEndpointPolicyType",
|
|
83
|
+
"WebAppEndpointTypeType",
|
|
83
84
|
"WorkflowStepTypeType",
|
|
84
85
|
)
|
|
85
86
|
|
|
@@ -148,6 +149,7 @@ StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING",
|
|
|
148
149
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
149
150
|
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
150
151
|
WebAppEndpointPolicyType = Literal["FIPS", "STANDARD"]
|
|
152
|
+
WebAppEndpointTypeType = Literal["PUBLIC", "VPC"]
|
|
151
153
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
152
154
|
TransferServiceName = Literal["transfer"]
|
|
153
155
|
ServiceName = Literal[
|
|
@@ -176,7 +178,6 @@ ServiceName = Literal[
|
|
|
176
178
|
"apprunner",
|
|
177
179
|
"appstream",
|
|
178
180
|
"appsync",
|
|
179
|
-
"apptest",
|
|
180
181
|
"arc-region-switch",
|
|
181
182
|
"arc-zonal-shift",
|
|
182
183
|
"artifact",
|
|
@@ -246,6 +247,7 @@ ServiceName = Literal[
|
|
|
246
247
|
"comprehend",
|
|
247
248
|
"comprehendmedical",
|
|
248
249
|
"compute-optimizer",
|
|
250
|
+
"compute-optimizer-automation",
|
|
249
251
|
"config",
|
|
250
252
|
"connect",
|
|
251
253
|
"connect-contact-lens",
|
|
@@ -344,7 +346,6 @@ ServiceName = Literal[
|
|
|
344
346
|
"iotdeviceadvisor",
|
|
345
347
|
"iotevents",
|
|
346
348
|
"iotevents-data",
|
|
347
|
-
"iotfleethub",
|
|
348
349
|
"iotfleetwise",
|
|
349
350
|
"iotsecuretunneling",
|
|
350
351
|
"iotsitewise",
|
|
@@ -383,8 +384,6 @@ ServiceName = Literal[
|
|
|
383
384
|
"location",
|
|
384
385
|
"logs",
|
|
385
386
|
"lookoutequipment",
|
|
386
|
-
"lookoutmetrics",
|
|
387
|
-
"lookoutvision",
|
|
388
387
|
"m2",
|
|
389
388
|
"machinelearning",
|
|
390
389
|
"macie2",
|
|
@@ -419,6 +418,7 @@ ServiceName = Literal[
|
|
|
419
418
|
"mq",
|
|
420
419
|
"mturk",
|
|
421
420
|
"mwaa",
|
|
421
|
+
"mwaa-serverless",
|
|
422
422
|
"neptune",
|
|
423
423
|
"neptune-graph",
|
|
424
424
|
"neptunedata",
|
|
@@ -438,6 +438,7 @@ ServiceName = Literal[
|
|
|
438
438
|
"osis",
|
|
439
439
|
"outposts",
|
|
440
440
|
"panorama",
|
|
441
|
+
"partnercentral-channel",
|
|
441
442
|
"partnercentral-selling",
|
|
442
443
|
"payment-cryptography",
|
|
443
444
|
"payment-cryptography-data",
|
|
@@ -459,8 +460,6 @@ ServiceName = Literal[
|
|
|
459
460
|
"qapps",
|
|
460
461
|
"qbusiness",
|
|
461
462
|
"qconnect",
|
|
462
|
-
"qldb",
|
|
463
|
-
"qldb-session",
|
|
464
463
|
"quicksight",
|
|
465
464
|
"ram",
|
|
466
465
|
"rbin",
|
|
@@ -475,7 +474,6 @@ ServiceName = Literal[
|
|
|
475
474
|
"resource-explorer-2",
|
|
476
475
|
"resource-groups",
|
|
477
476
|
"resourcegroupstaggingapi",
|
|
478
|
-
"robomaker",
|
|
479
477
|
"rolesanywhere",
|
|
480
478
|
"route53",
|
|
481
479
|
"route53-recovery-cluster",
|
|
@@ -484,6 +482,7 @@ ServiceName = Literal[
|
|
|
484
482
|
"route53domains",
|
|
485
483
|
"route53profiles",
|
|
486
484
|
"route53resolver",
|
|
485
|
+
"rtbfabric",
|
|
487
486
|
"rum",
|
|
488
487
|
"s3",
|
|
489
488
|
"s3control",
|
|
@@ -514,6 +513,7 @@ ServiceName = Literal[
|
|
|
514
513
|
"sesv2",
|
|
515
514
|
"shield",
|
|
516
515
|
"signer",
|
|
516
|
+
"signin",
|
|
517
517
|
"simspaceweaver",
|
|
518
518
|
"snow-device-management",
|
|
519
519
|
"snowball",
|