mypy-boto3-transfer 1.40.42__py3-none-any.whl → 1.41.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.
- 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 +8 -7
- mypy_boto3_transfer/literals.pyi +8 -7
- mypy_boto3_transfer/type_defs.py +106 -70
- mypy_boto3_transfer/type_defs.pyi +100 -70
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/METADATA +11 -25
- mypy_boto3_transfer-1.41.0.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.40.42.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.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.0\n"
|
|
16
|
+
"Version: 1.41.0\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.0\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
|
@@ -29,6 +29,8 @@ __all__ = (
|
|
|
29
29
|
"CertificateTypeType",
|
|
30
30
|
"CertificateUsageTypeType",
|
|
31
31
|
"CompressionEnumType",
|
|
32
|
+
"ConnectorEgressTypeType",
|
|
33
|
+
"ConnectorStatusType",
|
|
32
34
|
"CustomStepStatusType",
|
|
33
35
|
"DirectoryListingOptimizationType",
|
|
34
36
|
"DomainType",
|
|
@@ -89,6 +91,8 @@ CertificateStatusTypeType = Literal["ACTIVE", "INACTIVE", "PENDING_ROTATION"]
|
|
|
89
91
|
CertificateTypeType = Literal["CERTIFICATE", "CERTIFICATE_WITH_PRIVATE_KEY"]
|
|
90
92
|
CertificateUsageTypeType = Literal["ENCRYPTION", "SIGNING", "TLS"]
|
|
91
93
|
CompressionEnumType = Literal["DISABLED", "ZLIB"]
|
|
94
|
+
ConnectorEgressTypeType = Literal["SERVICE_MANAGED", "VPC_LATTICE"]
|
|
95
|
+
ConnectorStatusType = Literal["ACTIVE", "ERRORED", "PENDING"]
|
|
92
96
|
CustomStepStatusType = Literal["FAILURE", "SUCCESS"]
|
|
93
97
|
DirectoryListingOptimizationType = Literal["DISABLED", "ENABLED"]
|
|
94
98
|
DomainType = Literal["EFS", "S3"]
|
|
@@ -174,7 +178,6 @@ ServiceName = Literal[
|
|
|
174
178
|
"apprunner",
|
|
175
179
|
"appstream",
|
|
176
180
|
"appsync",
|
|
177
|
-
"apptest",
|
|
178
181
|
"arc-region-switch",
|
|
179
182
|
"arc-zonal-shift",
|
|
180
183
|
"artifact",
|
|
@@ -342,7 +345,6 @@ ServiceName = Literal[
|
|
|
342
345
|
"iotdeviceadvisor",
|
|
343
346
|
"iotevents",
|
|
344
347
|
"iotevents-data",
|
|
345
|
-
"iotfleethub",
|
|
346
348
|
"iotfleetwise",
|
|
347
349
|
"iotsecuretunneling",
|
|
348
350
|
"iotsitewise",
|
|
@@ -381,8 +383,6 @@ ServiceName = Literal[
|
|
|
381
383
|
"location",
|
|
382
384
|
"logs",
|
|
383
385
|
"lookoutequipment",
|
|
384
|
-
"lookoutmetrics",
|
|
385
|
-
"lookoutvision",
|
|
386
386
|
"m2",
|
|
387
387
|
"machinelearning",
|
|
388
388
|
"macie2",
|
|
@@ -417,6 +417,7 @@ ServiceName = Literal[
|
|
|
417
417
|
"mq",
|
|
418
418
|
"mturk",
|
|
419
419
|
"mwaa",
|
|
420
|
+
"mwaa-serverless",
|
|
420
421
|
"neptune",
|
|
421
422
|
"neptune-graph",
|
|
422
423
|
"neptunedata",
|
|
@@ -436,6 +437,7 @@ ServiceName = Literal[
|
|
|
436
437
|
"osis",
|
|
437
438
|
"outposts",
|
|
438
439
|
"panorama",
|
|
440
|
+
"partnercentral-channel",
|
|
439
441
|
"partnercentral-selling",
|
|
440
442
|
"payment-cryptography",
|
|
441
443
|
"payment-cryptography-data",
|
|
@@ -457,8 +459,6 @@ ServiceName = Literal[
|
|
|
457
459
|
"qapps",
|
|
458
460
|
"qbusiness",
|
|
459
461
|
"qconnect",
|
|
460
|
-
"qldb",
|
|
461
|
-
"qldb-session",
|
|
462
462
|
"quicksight",
|
|
463
463
|
"ram",
|
|
464
464
|
"rbin",
|
|
@@ -473,7 +473,6 @@ ServiceName = Literal[
|
|
|
473
473
|
"resource-explorer-2",
|
|
474
474
|
"resource-groups",
|
|
475
475
|
"resourcegroupstaggingapi",
|
|
476
|
-
"robomaker",
|
|
477
476
|
"rolesanywhere",
|
|
478
477
|
"route53",
|
|
479
478
|
"route53-recovery-cluster",
|
|
@@ -482,6 +481,7 @@ ServiceName = Literal[
|
|
|
482
481
|
"route53domains",
|
|
483
482
|
"route53profiles",
|
|
484
483
|
"route53resolver",
|
|
484
|
+
"rtbfabric",
|
|
485
485
|
"rum",
|
|
486
486
|
"s3",
|
|
487
487
|
"s3control",
|
|
@@ -512,6 +512,7 @@ ServiceName = Literal[
|
|
|
512
512
|
"sesv2",
|
|
513
513
|
"shield",
|
|
514
514
|
"signer",
|
|
515
|
+
"signin",
|
|
515
516
|
"simspaceweaver",
|
|
516
517
|
"snow-device-management",
|
|
517
518
|
"snowball",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -28,6 +28,8 @@ __all__ = (
|
|
|
28
28
|
"CertificateTypeType",
|
|
29
29
|
"CertificateUsageTypeType",
|
|
30
30
|
"CompressionEnumType",
|
|
31
|
+
"ConnectorEgressTypeType",
|
|
32
|
+
"ConnectorStatusType",
|
|
31
33
|
"CustomStepStatusType",
|
|
32
34
|
"DirectoryListingOptimizationType",
|
|
33
35
|
"DomainType",
|
|
@@ -87,6 +89,8 @@ CertificateStatusTypeType = Literal["ACTIVE", "INACTIVE", "PENDING_ROTATION"]
|
|
|
87
89
|
CertificateTypeType = Literal["CERTIFICATE", "CERTIFICATE_WITH_PRIVATE_KEY"]
|
|
88
90
|
CertificateUsageTypeType = Literal["ENCRYPTION", "SIGNING", "TLS"]
|
|
89
91
|
CompressionEnumType = Literal["DISABLED", "ZLIB"]
|
|
92
|
+
ConnectorEgressTypeType = Literal["SERVICE_MANAGED", "VPC_LATTICE"]
|
|
93
|
+
ConnectorStatusType = Literal["ACTIVE", "ERRORED", "PENDING"]
|
|
90
94
|
CustomStepStatusType = Literal["FAILURE", "SUCCESS"]
|
|
91
95
|
DirectoryListingOptimizationType = Literal["DISABLED", "ENABLED"]
|
|
92
96
|
DomainType = Literal["EFS", "S3"]
|
|
@@ -172,7 +176,6 @@ ServiceName = Literal[
|
|
|
172
176
|
"apprunner",
|
|
173
177
|
"appstream",
|
|
174
178
|
"appsync",
|
|
175
|
-
"apptest",
|
|
176
179
|
"arc-region-switch",
|
|
177
180
|
"arc-zonal-shift",
|
|
178
181
|
"artifact",
|
|
@@ -340,7 +343,6 @@ ServiceName = Literal[
|
|
|
340
343
|
"iotdeviceadvisor",
|
|
341
344
|
"iotevents",
|
|
342
345
|
"iotevents-data",
|
|
343
|
-
"iotfleethub",
|
|
344
346
|
"iotfleetwise",
|
|
345
347
|
"iotsecuretunneling",
|
|
346
348
|
"iotsitewise",
|
|
@@ -379,8 +381,6 @@ ServiceName = Literal[
|
|
|
379
381
|
"location",
|
|
380
382
|
"logs",
|
|
381
383
|
"lookoutequipment",
|
|
382
|
-
"lookoutmetrics",
|
|
383
|
-
"lookoutvision",
|
|
384
384
|
"m2",
|
|
385
385
|
"machinelearning",
|
|
386
386
|
"macie2",
|
|
@@ -415,6 +415,7 @@ ServiceName = Literal[
|
|
|
415
415
|
"mq",
|
|
416
416
|
"mturk",
|
|
417
417
|
"mwaa",
|
|
418
|
+
"mwaa-serverless",
|
|
418
419
|
"neptune",
|
|
419
420
|
"neptune-graph",
|
|
420
421
|
"neptunedata",
|
|
@@ -434,6 +435,7 @@ ServiceName = Literal[
|
|
|
434
435
|
"osis",
|
|
435
436
|
"outposts",
|
|
436
437
|
"panorama",
|
|
438
|
+
"partnercentral-channel",
|
|
437
439
|
"partnercentral-selling",
|
|
438
440
|
"payment-cryptography",
|
|
439
441
|
"payment-cryptography-data",
|
|
@@ -455,8 +457,6 @@ ServiceName = Literal[
|
|
|
455
457
|
"qapps",
|
|
456
458
|
"qbusiness",
|
|
457
459
|
"qconnect",
|
|
458
|
-
"qldb",
|
|
459
|
-
"qldb-session",
|
|
460
460
|
"quicksight",
|
|
461
461
|
"ram",
|
|
462
462
|
"rbin",
|
|
@@ -471,7 +471,6 @@ ServiceName = Literal[
|
|
|
471
471
|
"resource-explorer-2",
|
|
472
472
|
"resource-groups",
|
|
473
473
|
"resourcegroupstaggingapi",
|
|
474
|
-
"robomaker",
|
|
475
474
|
"rolesanywhere",
|
|
476
475
|
"route53",
|
|
477
476
|
"route53-recovery-cluster",
|
|
@@ -480,6 +479,7 @@ ServiceName = Literal[
|
|
|
480
479
|
"route53domains",
|
|
481
480
|
"route53profiles",
|
|
482
481
|
"route53resolver",
|
|
482
|
+
"rtbfabric",
|
|
483
483
|
"rum",
|
|
484
484
|
"s3",
|
|
485
485
|
"s3control",
|
|
@@ -510,6 +510,7 @@ ServiceName = Literal[
|
|
|
510
510
|
"sesv2",
|
|
511
511
|
"shield",
|
|
512
512
|
"signer",
|
|
513
|
+
"signin",
|
|
513
514
|
"simspaceweaver",
|
|
514
515
|
"snow-device-management",
|
|
515
516
|
"snowball",
|