mypy-boto3-transfer 1.40.52__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 +4 -7
- mypy_boto3_transfer/literals.pyi +4 -7
- mypy_boto3_transfer/type_defs.py +52 -57
- mypy_boto3_transfer/type_defs.pyi +52 -57
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.40.52.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.52.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.40.52.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
|
@@ -178,7 +178,6 @@ ServiceName = Literal[
|
|
|
178
178
|
"apprunner",
|
|
179
179
|
"appstream",
|
|
180
180
|
"appsync",
|
|
181
|
-
"apptest",
|
|
182
181
|
"arc-region-switch",
|
|
183
182
|
"arc-zonal-shift",
|
|
184
183
|
"artifact",
|
|
@@ -346,7 +345,6 @@ ServiceName = Literal[
|
|
|
346
345
|
"iotdeviceadvisor",
|
|
347
346
|
"iotevents",
|
|
348
347
|
"iotevents-data",
|
|
349
|
-
"iotfleethub",
|
|
350
348
|
"iotfleetwise",
|
|
351
349
|
"iotsecuretunneling",
|
|
352
350
|
"iotsitewise",
|
|
@@ -385,8 +383,6 @@ ServiceName = Literal[
|
|
|
385
383
|
"location",
|
|
386
384
|
"logs",
|
|
387
385
|
"lookoutequipment",
|
|
388
|
-
"lookoutmetrics",
|
|
389
|
-
"lookoutvision",
|
|
390
386
|
"m2",
|
|
391
387
|
"machinelearning",
|
|
392
388
|
"macie2",
|
|
@@ -421,6 +417,7 @@ ServiceName = Literal[
|
|
|
421
417
|
"mq",
|
|
422
418
|
"mturk",
|
|
423
419
|
"mwaa",
|
|
420
|
+
"mwaa-serverless",
|
|
424
421
|
"neptune",
|
|
425
422
|
"neptune-graph",
|
|
426
423
|
"neptunedata",
|
|
@@ -440,6 +437,7 @@ ServiceName = Literal[
|
|
|
440
437
|
"osis",
|
|
441
438
|
"outposts",
|
|
442
439
|
"panorama",
|
|
440
|
+
"partnercentral-channel",
|
|
443
441
|
"partnercentral-selling",
|
|
444
442
|
"payment-cryptography",
|
|
445
443
|
"payment-cryptography-data",
|
|
@@ -461,8 +459,6 @@ ServiceName = Literal[
|
|
|
461
459
|
"qapps",
|
|
462
460
|
"qbusiness",
|
|
463
461
|
"qconnect",
|
|
464
|
-
"qldb",
|
|
465
|
-
"qldb-session",
|
|
466
462
|
"quicksight",
|
|
467
463
|
"ram",
|
|
468
464
|
"rbin",
|
|
@@ -477,7 +473,6 @@ ServiceName = Literal[
|
|
|
477
473
|
"resource-explorer-2",
|
|
478
474
|
"resource-groups",
|
|
479
475
|
"resourcegroupstaggingapi",
|
|
480
|
-
"robomaker",
|
|
481
476
|
"rolesanywhere",
|
|
482
477
|
"route53",
|
|
483
478
|
"route53-recovery-cluster",
|
|
@@ -486,6 +481,7 @@ ServiceName = Literal[
|
|
|
486
481
|
"route53domains",
|
|
487
482
|
"route53profiles",
|
|
488
483
|
"route53resolver",
|
|
484
|
+
"rtbfabric",
|
|
489
485
|
"rum",
|
|
490
486
|
"s3",
|
|
491
487
|
"s3control",
|
|
@@ -516,6 +512,7 @@ ServiceName = Literal[
|
|
|
516
512
|
"sesv2",
|
|
517
513
|
"shield",
|
|
518
514
|
"signer",
|
|
515
|
+
"signin",
|
|
519
516
|
"simspaceweaver",
|
|
520
517
|
"snow-device-management",
|
|
521
518
|
"snowball",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -176,7 +176,6 @@ ServiceName = Literal[
|
|
|
176
176
|
"apprunner",
|
|
177
177
|
"appstream",
|
|
178
178
|
"appsync",
|
|
179
|
-
"apptest",
|
|
180
179
|
"arc-region-switch",
|
|
181
180
|
"arc-zonal-shift",
|
|
182
181
|
"artifact",
|
|
@@ -344,7 +343,6 @@ ServiceName = Literal[
|
|
|
344
343
|
"iotdeviceadvisor",
|
|
345
344
|
"iotevents",
|
|
346
345
|
"iotevents-data",
|
|
347
|
-
"iotfleethub",
|
|
348
346
|
"iotfleetwise",
|
|
349
347
|
"iotsecuretunneling",
|
|
350
348
|
"iotsitewise",
|
|
@@ -383,8 +381,6 @@ ServiceName = Literal[
|
|
|
383
381
|
"location",
|
|
384
382
|
"logs",
|
|
385
383
|
"lookoutequipment",
|
|
386
|
-
"lookoutmetrics",
|
|
387
|
-
"lookoutvision",
|
|
388
384
|
"m2",
|
|
389
385
|
"machinelearning",
|
|
390
386
|
"macie2",
|
|
@@ -419,6 +415,7 @@ ServiceName = Literal[
|
|
|
419
415
|
"mq",
|
|
420
416
|
"mturk",
|
|
421
417
|
"mwaa",
|
|
418
|
+
"mwaa-serverless",
|
|
422
419
|
"neptune",
|
|
423
420
|
"neptune-graph",
|
|
424
421
|
"neptunedata",
|
|
@@ -438,6 +435,7 @@ ServiceName = Literal[
|
|
|
438
435
|
"osis",
|
|
439
436
|
"outposts",
|
|
440
437
|
"panorama",
|
|
438
|
+
"partnercentral-channel",
|
|
441
439
|
"partnercentral-selling",
|
|
442
440
|
"payment-cryptography",
|
|
443
441
|
"payment-cryptography-data",
|
|
@@ -459,8 +457,6 @@ ServiceName = Literal[
|
|
|
459
457
|
"qapps",
|
|
460
458
|
"qbusiness",
|
|
461
459
|
"qconnect",
|
|
462
|
-
"qldb",
|
|
463
|
-
"qldb-session",
|
|
464
460
|
"quicksight",
|
|
465
461
|
"ram",
|
|
466
462
|
"rbin",
|
|
@@ -475,7 +471,6 @@ ServiceName = Literal[
|
|
|
475
471
|
"resource-explorer-2",
|
|
476
472
|
"resource-groups",
|
|
477
473
|
"resourcegroupstaggingapi",
|
|
478
|
-
"robomaker",
|
|
479
474
|
"rolesanywhere",
|
|
480
475
|
"route53",
|
|
481
476
|
"route53-recovery-cluster",
|
|
@@ -484,6 +479,7 @@ ServiceName = Literal[
|
|
|
484
479
|
"route53domains",
|
|
485
480
|
"route53profiles",
|
|
486
481
|
"route53resolver",
|
|
482
|
+
"rtbfabric",
|
|
487
483
|
"rum",
|
|
488
484
|
"s3",
|
|
489
485
|
"s3control",
|
|
@@ -514,6 +510,7 @@ ServiceName = Literal[
|
|
|
514
510
|
"sesv2",
|
|
515
511
|
"shield",
|
|
516
512
|
"signer",
|
|
513
|
+
"signin",
|
|
517
514
|
"simspaceweaver",
|
|
518
515
|
"snow-device-management",
|
|
519
516
|
"snowball",
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import IO, Any, Union
|
|
22
23
|
|
|
@@ -61,12 +62,6 @@ from .literals import (
|
|
|
61
62
|
WorkflowStepTypeType,
|
|
62
63
|
)
|
|
63
64
|
|
|
64
|
-
if sys.version_info >= (3, 9):
|
|
65
|
-
from builtins import dict as Dict
|
|
66
|
-
from builtins import list as List
|
|
67
|
-
from collections.abc import Sequence
|
|
68
|
-
else:
|
|
69
|
-
from typing import Dict, List, Sequence
|
|
70
65
|
if sys.version_info >= (3, 12):
|
|
71
66
|
from typing import Literal, NotRequired, TypedDict
|
|
72
67
|
else:
|
|
@@ -348,7 +343,7 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
|
|
|
348
343
|
class ResponseMetadataTypeDef(TypedDict):
|
|
349
344
|
RequestId: str
|
|
350
345
|
HTTPStatusCode: int
|
|
351
|
-
HTTPHeaders:
|
|
346
|
+
HTTPHeaders: dict[str, str]
|
|
352
347
|
RetryAttempts: int
|
|
353
348
|
HostId: NotRequired[str]
|
|
354
349
|
|
|
@@ -489,13 +484,13 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
489
484
|
{
|
|
490
485
|
"SecurityPolicyName": str,
|
|
491
486
|
"Fips": NotRequired[bool],
|
|
492
|
-
"SshCiphers": NotRequired[
|
|
493
|
-
"SshKexs": NotRequired[
|
|
494
|
-
"SshMacs": NotRequired[
|
|
495
|
-
"TlsCiphers": NotRequired[
|
|
496
|
-
"SshHostKeyAlgorithms": NotRequired[
|
|
487
|
+
"SshCiphers": NotRequired[list[str]],
|
|
488
|
+
"SshKexs": NotRequired[list[str]],
|
|
489
|
+
"SshMacs": NotRequired[list[str]],
|
|
490
|
+
"TlsCiphers": NotRequired[list[str]],
|
|
491
|
+
"SshHostKeyAlgorithms": NotRequired[list[str]],
|
|
497
492
|
"Type": NotRequired[SecurityPolicyResourceTypeType],
|
|
498
|
-
"Protocols": NotRequired[
|
|
493
|
+
"Protocols": NotRequired[list[SecurityPolicyProtocolType]],
|
|
499
494
|
},
|
|
500
495
|
)
|
|
501
496
|
|
|
@@ -537,7 +532,7 @@ class DescribeWorkflowRequestTypeDef(TypedDict):
|
|
|
537
532
|
class PosixProfileOutputTypeDef(TypedDict):
|
|
538
533
|
Uid: int
|
|
539
534
|
Gid: int
|
|
540
|
-
SecondaryGids: NotRequired[
|
|
535
|
+
SecondaryGids: NotRequired[list[int]]
|
|
541
536
|
|
|
542
537
|
|
|
543
538
|
class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
@@ -547,7 +542,7 @@ class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
|
547
542
|
|
|
548
543
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
549
544
|
UserSecretId: NotRequired[str]
|
|
550
|
-
TrustedHostKeys: NotRequired[
|
|
545
|
+
TrustedHostKeys: NotRequired[list[str]]
|
|
551
546
|
MaxConcurrentConnections: NotRequired[int]
|
|
552
547
|
|
|
553
548
|
|
|
@@ -563,18 +558,18 @@ class DescribedIdentityCenterConfigTypeDef(TypedDict):
|
|
|
563
558
|
|
|
564
559
|
|
|
565
560
|
class EndpointDetailsOutputTypeDef(TypedDict):
|
|
566
|
-
AddressAllocationIds: NotRequired[
|
|
567
|
-
SubnetIds: NotRequired[
|
|
561
|
+
AddressAllocationIds: NotRequired[list[str]]
|
|
562
|
+
SubnetIds: NotRequired[list[str]]
|
|
568
563
|
VpcEndpointId: NotRequired[str]
|
|
569
564
|
VpcId: NotRequired[str]
|
|
570
|
-
SecurityGroupIds: NotRequired[
|
|
565
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
571
566
|
|
|
572
567
|
|
|
573
568
|
class ProtocolDetailsOutputTypeDef(TypedDict):
|
|
574
569
|
PassiveIp: NotRequired[str]
|
|
575
570
|
TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
|
|
576
571
|
SetStatOption: NotRequired[SetStatOptionType]
|
|
577
|
-
As2Transports: NotRequired[
|
|
572
|
+
As2Transports: NotRequired[list[Literal["HTTP"]]]
|
|
578
573
|
|
|
579
574
|
|
|
580
575
|
class SshPublicKeyTypeDef(TypedDict):
|
|
@@ -1000,13 +995,13 @@ class ImportSshPublicKeyResponseTypeDef(TypedDict):
|
|
|
1000
995
|
|
|
1001
996
|
|
|
1002
997
|
class ListFileTransferResultsResponseTypeDef(TypedDict):
|
|
1003
|
-
FileTransferResults:
|
|
998
|
+
FileTransferResults: list[ConnectorFileTransferResultTypeDef]
|
|
1004
999
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1005
1000
|
NextToken: NotRequired[str]
|
|
1006
1001
|
|
|
1007
1002
|
|
|
1008
1003
|
class ListSecurityPoliciesResponseTypeDef(TypedDict):
|
|
1009
|
-
SecurityPolicyNames:
|
|
1004
|
+
SecurityPolicyNames: list[str]
|
|
1010
1005
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1011
1006
|
NextToken: NotRequired[str]
|
|
1012
1007
|
|
|
@@ -1138,7 +1133,7 @@ class DescribedAgreementTypeDef(TypedDict):
|
|
|
1138
1133
|
PartnerProfileId: NotRequired[str]
|
|
1139
1134
|
BaseDirectory: NotRequired[str]
|
|
1140
1135
|
AccessRole: NotRequired[str]
|
|
1141
|
-
Tags: NotRequired[
|
|
1136
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1142
1137
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1143
1138
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1144
1139
|
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
@@ -1160,7 +1155,7 @@ DescribedCertificateTypeDef = TypedDict(
|
|
|
1160
1155
|
"NotAfterDate": NotRequired[datetime],
|
|
1161
1156
|
"Type": NotRequired[CertificateTypeType],
|
|
1162
1157
|
"Description": NotRequired[str],
|
|
1163
|
-
"Tags": NotRequired[
|
|
1158
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1164
1159
|
},
|
|
1165
1160
|
)
|
|
1166
1161
|
DescribedHostKeyTypeDef = TypedDict(
|
|
@@ -1172,7 +1167,7 @@ DescribedHostKeyTypeDef = TypedDict(
|
|
|
1172
1167
|
"Description": NotRequired[str],
|
|
1173
1168
|
"Type": NotRequired[str],
|
|
1174
1169
|
"DateImported": NotRequired[datetime],
|
|
1175
|
-
"Tags": NotRequired[
|
|
1170
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1176
1171
|
},
|
|
1177
1172
|
)
|
|
1178
1173
|
|
|
@@ -1182,8 +1177,8 @@ class DescribedProfileTypeDef(TypedDict):
|
|
|
1182
1177
|
ProfileId: NotRequired[str]
|
|
1183
1178
|
ProfileType: NotRequired[ProfileTypeType]
|
|
1184
1179
|
As2Id: NotRequired[str]
|
|
1185
|
-
CertificateIds: NotRequired[
|
|
1186
|
-
Tags: NotRequired[
|
|
1180
|
+
CertificateIds: NotRequired[list[str]]
|
|
1181
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1187
1182
|
|
|
1188
1183
|
|
|
1189
1184
|
class ImportHostKeyRequestTypeDef(TypedDict):
|
|
@@ -1195,7 +1190,7 @@ class ImportHostKeyRequestTypeDef(TypedDict):
|
|
|
1195
1190
|
|
|
1196
1191
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1197
1192
|
Arn: str
|
|
1198
|
-
Tags:
|
|
1193
|
+
Tags: list[TagTypeDef]
|
|
1199
1194
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1200
1195
|
NextToken: NotRequired[str]
|
|
1201
1196
|
|
|
@@ -1227,7 +1222,7 @@ class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
|
|
|
1227
1222
|
|
|
1228
1223
|
class DescribedAccessTypeDef(TypedDict):
|
|
1229
1224
|
HomeDirectory: NotRequired[str]
|
|
1230
|
-
HomeDirectoryMappings: NotRequired[
|
|
1225
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1231
1226
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1232
1227
|
Policy: NotRequired[str]
|
|
1233
1228
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
@@ -1246,13 +1241,13 @@ class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
|
1246
1241
|
class DescribedUserTypeDef(TypedDict):
|
|
1247
1242
|
Arn: str
|
|
1248
1243
|
HomeDirectory: NotRequired[str]
|
|
1249
|
-
HomeDirectoryMappings: NotRequired[
|
|
1244
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1250
1245
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1251
1246
|
Policy: NotRequired[str]
|
|
1252
1247
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1253
1248
|
Role: NotRequired[str]
|
|
1254
|
-
SshPublicKeys: NotRequired[
|
|
1255
|
-
Tags: NotRequired[
|
|
1249
|
+
SshPublicKeys: NotRequired[list[SshPublicKeyTypeDef]]
|
|
1250
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1256
1251
|
UserName: NotRequired[str]
|
|
1257
1252
|
|
|
1258
1253
|
|
|
@@ -1359,63 +1354,63 @@ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
|
|
|
1359
1354
|
|
|
1360
1355
|
class ListAccessesResponseTypeDef(TypedDict):
|
|
1361
1356
|
ServerId: str
|
|
1362
|
-
Accesses:
|
|
1357
|
+
Accesses: list[ListedAccessTypeDef]
|
|
1363
1358
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1364
1359
|
NextToken: NotRequired[str]
|
|
1365
1360
|
|
|
1366
1361
|
|
|
1367
1362
|
class ListAgreementsResponseTypeDef(TypedDict):
|
|
1368
|
-
Agreements:
|
|
1363
|
+
Agreements: list[ListedAgreementTypeDef]
|
|
1369
1364
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1370
1365
|
NextToken: NotRequired[str]
|
|
1371
1366
|
|
|
1372
1367
|
|
|
1373
1368
|
class ListCertificatesResponseTypeDef(TypedDict):
|
|
1374
|
-
Certificates:
|
|
1369
|
+
Certificates: list[ListedCertificateTypeDef]
|
|
1375
1370
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1376
1371
|
NextToken: NotRequired[str]
|
|
1377
1372
|
|
|
1378
1373
|
|
|
1379
1374
|
class ListConnectorsResponseTypeDef(TypedDict):
|
|
1380
|
-
Connectors:
|
|
1375
|
+
Connectors: list[ListedConnectorTypeDef]
|
|
1381
1376
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1382
1377
|
NextToken: NotRequired[str]
|
|
1383
1378
|
|
|
1384
1379
|
|
|
1385
1380
|
class ListHostKeysResponseTypeDef(TypedDict):
|
|
1386
1381
|
ServerId: str
|
|
1387
|
-
HostKeys:
|
|
1382
|
+
HostKeys: list[ListedHostKeyTypeDef]
|
|
1388
1383
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1389
1384
|
NextToken: NotRequired[str]
|
|
1390
1385
|
|
|
1391
1386
|
|
|
1392
1387
|
class ListProfilesResponseTypeDef(TypedDict):
|
|
1393
|
-
Profiles:
|
|
1388
|
+
Profiles: list[ListedProfileTypeDef]
|
|
1394
1389
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1395
1390
|
NextToken: NotRequired[str]
|
|
1396
1391
|
|
|
1397
1392
|
|
|
1398
1393
|
class ListServersResponseTypeDef(TypedDict):
|
|
1399
|
-
Servers:
|
|
1394
|
+
Servers: list[ListedServerTypeDef]
|
|
1400
1395
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1401
1396
|
NextToken: NotRequired[str]
|
|
1402
1397
|
|
|
1403
1398
|
|
|
1404
1399
|
class ListUsersResponseTypeDef(TypedDict):
|
|
1405
1400
|
ServerId: str
|
|
1406
|
-
Users:
|
|
1401
|
+
Users: list[ListedUserTypeDef]
|
|
1407
1402
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1408
1403
|
NextToken: NotRequired[str]
|
|
1409
1404
|
|
|
1410
1405
|
|
|
1411
1406
|
class ListWebAppsResponseTypeDef(TypedDict):
|
|
1412
|
-
WebApps:
|
|
1407
|
+
WebApps: list[ListedWebAppTypeDef]
|
|
1413
1408
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1414
1409
|
NextToken: NotRequired[str]
|
|
1415
1410
|
|
|
1416
1411
|
|
|
1417
1412
|
class ListWorkflowsResponseTypeDef(TypedDict):
|
|
1418
|
-
Workflows:
|
|
1413
|
+
Workflows: list[ListedWorkflowTypeDef]
|
|
1419
1414
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1420
1415
|
NextToken: NotRequired[str]
|
|
1421
1416
|
|
|
@@ -1426,7 +1421,7 @@ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutpu
|
|
|
1426
1421
|
|
|
1427
1422
|
class TagStepDetailsOutputTypeDef(TypedDict):
|
|
1428
1423
|
Name: NotRequired[str]
|
|
1429
|
-
Tags: NotRequired[
|
|
1424
|
+
Tags: NotRequired[list[S3TagTypeDef]]
|
|
1430
1425
|
SourceFileLocation: NotRequired[str]
|
|
1431
1426
|
|
|
1432
1427
|
|
|
@@ -1462,8 +1457,8 @@ class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
|
1462
1457
|
|
|
1463
1458
|
|
|
1464
1459
|
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1465
|
-
OnUpload: NotRequired[
|
|
1466
|
-
OnPartialUpload: NotRequired[
|
|
1460
|
+
OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1461
|
+
OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1467
1462
|
|
|
1468
1463
|
|
|
1469
1464
|
class WorkflowDetailsTypeDef(TypedDict):
|
|
@@ -1506,9 +1501,9 @@ class DescribedConnectorTypeDef(TypedDict):
|
|
|
1506
1501
|
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1507
1502
|
AccessRole: NotRequired[str]
|
|
1508
1503
|
LoggingRole: NotRequired[str]
|
|
1509
|
-
Tags: NotRequired[
|
|
1504
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1510
1505
|
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1511
|
-
ServiceManagedEgressIpAddresses: NotRequired[
|
|
1506
|
+
ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1512
1507
|
SecurityPolicyName: NotRequired[str]
|
|
1513
1508
|
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1514
1509
|
ErrorMessage: NotRequired[str]
|
|
@@ -1521,7 +1516,7 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1521
1516
|
AccessEndpoint: NotRequired[str]
|
|
1522
1517
|
WebAppEndpoint: NotRequired[str]
|
|
1523
1518
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1524
|
-
Tags: NotRequired[
|
|
1519
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1525
1520
|
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1526
1521
|
|
|
1527
1522
|
|
|
@@ -1532,8 +1527,8 @@ class DescribeUserResponseTypeDef(TypedDict):
|
|
|
1532
1527
|
|
|
1533
1528
|
|
|
1534
1529
|
class ExecutionResultsTypeDef(TypedDict):
|
|
1535
|
-
Steps: NotRequired[
|
|
1536
|
-
OnExceptionSteps: NotRequired[
|
|
1530
|
+
Steps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1531
|
+
OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1537
1532
|
|
|
1538
1533
|
|
|
1539
1534
|
class CreateWebAppRequestTypeDef(TypedDict):
|
|
@@ -1661,16 +1656,16 @@ class DescribedServerTypeDef(TypedDict):
|
|
|
1661
1656
|
LoggingRole: NotRequired[str]
|
|
1662
1657
|
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1663
1658
|
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1664
|
-
Protocols: NotRequired[
|
|
1659
|
+
Protocols: NotRequired[list[ProtocolType]]
|
|
1665
1660
|
SecurityPolicyName: NotRequired[str]
|
|
1666
1661
|
ServerId: NotRequired[str]
|
|
1667
1662
|
State: NotRequired[StateType]
|
|
1668
|
-
Tags: NotRequired[
|
|
1663
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1669
1664
|
UserCount: NotRequired[int]
|
|
1670
1665
|
WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
|
|
1671
|
-
StructuredLogDestinations: NotRequired[
|
|
1666
|
+
StructuredLogDestinations: NotRequired[list[str]]
|
|
1672
1667
|
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1673
|
-
As2ServiceManagedEgressIpAddresses: NotRequired[
|
|
1668
|
+
As2ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1674
1669
|
IpAddressType: NotRequired[IpAddressTypeType]
|
|
1675
1670
|
|
|
1676
1671
|
|
|
@@ -1724,7 +1719,7 @@ WorkflowStepTypeDef = TypedDict(
|
|
|
1724
1719
|
|
|
1725
1720
|
class ListExecutionsResponseTypeDef(TypedDict):
|
|
1726
1721
|
WorkflowId: str
|
|
1727
|
-
Executions:
|
|
1722
|
+
Executions: list[ListedExecutionTypeDef]
|
|
1728
1723
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1729
1724
|
NextToken: NotRequired[str]
|
|
1730
1725
|
|
|
@@ -1784,10 +1779,10 @@ class DescribeExecutionResponseTypeDef(TypedDict):
|
|
|
1784
1779
|
class DescribedWorkflowTypeDef(TypedDict):
|
|
1785
1780
|
Arn: str
|
|
1786
1781
|
Description: NotRequired[str]
|
|
1787
|
-
Steps: NotRequired[
|
|
1788
|
-
OnExceptionSteps: NotRequired[
|
|
1782
|
+
Steps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1783
|
+
OnExceptionSteps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1789
1784
|
WorkflowId: NotRequired[str]
|
|
1790
|
-
Tags: NotRequired[
|
|
1785
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1791
1786
|
|
|
1792
1787
|
|
|
1793
1788
|
WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import IO, Any, Union
|
|
22
23
|
|
|
@@ -61,12 +62,6 @@ from .literals import (
|
|
|
61
62
|
WorkflowStepTypeType,
|
|
62
63
|
)
|
|
63
64
|
|
|
64
|
-
if sys.version_info >= (3, 9):
|
|
65
|
-
from builtins import dict as Dict
|
|
66
|
-
from builtins import list as List
|
|
67
|
-
from collections.abc import Sequence
|
|
68
|
-
else:
|
|
69
|
-
from typing import Dict, List, Sequence
|
|
70
65
|
if sys.version_info >= (3, 12):
|
|
71
66
|
from typing import Literal, NotRequired, TypedDict
|
|
72
67
|
else:
|
|
@@ -341,7 +336,7 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
|
|
|
341
336
|
class ResponseMetadataTypeDef(TypedDict):
|
|
342
337
|
RequestId: str
|
|
343
338
|
HTTPStatusCode: int
|
|
344
|
-
HTTPHeaders:
|
|
339
|
+
HTTPHeaders: dict[str, str]
|
|
345
340
|
RetryAttempts: int
|
|
346
341
|
HostId: NotRequired[str]
|
|
347
342
|
|
|
@@ -454,13 +449,13 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
454
449
|
{
|
|
455
450
|
"SecurityPolicyName": str,
|
|
456
451
|
"Fips": NotRequired[bool],
|
|
457
|
-
"SshCiphers": NotRequired[
|
|
458
|
-
"SshKexs": NotRequired[
|
|
459
|
-
"SshMacs": NotRequired[
|
|
460
|
-
"TlsCiphers": NotRequired[
|
|
461
|
-
"SshHostKeyAlgorithms": NotRequired[
|
|
452
|
+
"SshCiphers": NotRequired[list[str]],
|
|
453
|
+
"SshKexs": NotRequired[list[str]],
|
|
454
|
+
"SshMacs": NotRequired[list[str]],
|
|
455
|
+
"TlsCiphers": NotRequired[list[str]],
|
|
456
|
+
"SshHostKeyAlgorithms": NotRequired[list[str]],
|
|
462
457
|
"Type": NotRequired[SecurityPolicyResourceTypeType],
|
|
463
|
-
"Protocols": NotRequired[
|
|
458
|
+
"Protocols": NotRequired[list[SecurityPolicyProtocolType]],
|
|
464
459
|
},
|
|
465
460
|
)
|
|
466
461
|
|
|
@@ -494,7 +489,7 @@ class DescribeWorkflowRequestTypeDef(TypedDict):
|
|
|
494
489
|
class PosixProfileOutputTypeDef(TypedDict):
|
|
495
490
|
Uid: int
|
|
496
491
|
Gid: int
|
|
497
|
-
SecondaryGids: NotRequired[
|
|
492
|
+
SecondaryGids: NotRequired[list[int]]
|
|
498
493
|
|
|
499
494
|
class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
500
495
|
ResourceConfigurationArn: str
|
|
@@ -502,7 +497,7 @@ class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
|
502
497
|
|
|
503
498
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
504
499
|
UserSecretId: NotRequired[str]
|
|
505
|
-
TrustedHostKeys: NotRequired[
|
|
500
|
+
TrustedHostKeys: NotRequired[list[str]]
|
|
506
501
|
MaxConcurrentConnections: NotRequired[int]
|
|
507
502
|
|
|
508
503
|
class LoggingConfigurationTypeDef(TypedDict):
|
|
@@ -515,17 +510,17 @@ class DescribedIdentityCenterConfigTypeDef(TypedDict):
|
|
|
515
510
|
Role: NotRequired[str]
|
|
516
511
|
|
|
517
512
|
class EndpointDetailsOutputTypeDef(TypedDict):
|
|
518
|
-
AddressAllocationIds: NotRequired[
|
|
519
|
-
SubnetIds: NotRequired[
|
|
513
|
+
AddressAllocationIds: NotRequired[list[str]]
|
|
514
|
+
SubnetIds: NotRequired[list[str]]
|
|
520
515
|
VpcEndpointId: NotRequired[str]
|
|
521
516
|
VpcId: NotRequired[str]
|
|
522
|
-
SecurityGroupIds: NotRequired[
|
|
517
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
523
518
|
|
|
524
519
|
class ProtocolDetailsOutputTypeDef(TypedDict):
|
|
525
520
|
PassiveIp: NotRequired[str]
|
|
526
521
|
TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
|
|
527
522
|
SetStatOption: NotRequired[SetStatOptionType]
|
|
528
|
-
As2Transports: NotRequired[
|
|
523
|
+
As2Transports: NotRequired[list[Literal["HTTP"]]]
|
|
529
524
|
|
|
530
525
|
class SshPublicKeyTypeDef(TypedDict):
|
|
531
526
|
DateImported: datetime
|
|
@@ -881,12 +876,12 @@ class ImportSshPublicKeyResponseTypeDef(TypedDict):
|
|
|
881
876
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
882
877
|
|
|
883
878
|
class ListFileTransferResultsResponseTypeDef(TypedDict):
|
|
884
|
-
FileTransferResults:
|
|
879
|
+
FileTransferResults: list[ConnectorFileTransferResultTypeDef]
|
|
885
880
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
886
881
|
NextToken: NotRequired[str]
|
|
887
882
|
|
|
888
883
|
class ListSecurityPoliciesResponseTypeDef(TypedDict):
|
|
889
|
-
SecurityPolicyNames:
|
|
884
|
+
SecurityPolicyNames: list[str]
|
|
890
885
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
891
886
|
NextToken: NotRequired[str]
|
|
892
887
|
|
|
@@ -999,7 +994,7 @@ class DescribedAgreementTypeDef(TypedDict):
|
|
|
999
994
|
PartnerProfileId: NotRequired[str]
|
|
1000
995
|
BaseDirectory: NotRequired[str]
|
|
1001
996
|
AccessRole: NotRequired[str]
|
|
1002
|
-
Tags: NotRequired[
|
|
997
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1003
998
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1004
999
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1005
1000
|
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
@@ -1020,7 +1015,7 @@ DescribedCertificateTypeDef = TypedDict(
|
|
|
1020
1015
|
"NotAfterDate": NotRequired[datetime],
|
|
1021
1016
|
"Type": NotRequired[CertificateTypeType],
|
|
1022
1017
|
"Description": NotRequired[str],
|
|
1023
|
-
"Tags": NotRequired[
|
|
1018
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1024
1019
|
},
|
|
1025
1020
|
)
|
|
1026
1021
|
DescribedHostKeyTypeDef = TypedDict(
|
|
@@ -1032,7 +1027,7 @@ DescribedHostKeyTypeDef = TypedDict(
|
|
|
1032
1027
|
"Description": NotRequired[str],
|
|
1033
1028
|
"Type": NotRequired[str],
|
|
1034
1029
|
"DateImported": NotRequired[datetime],
|
|
1035
|
-
"Tags": NotRequired[
|
|
1030
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1036
1031
|
},
|
|
1037
1032
|
)
|
|
1038
1033
|
|
|
@@ -1041,8 +1036,8 @@ class DescribedProfileTypeDef(TypedDict):
|
|
|
1041
1036
|
ProfileId: NotRequired[str]
|
|
1042
1037
|
ProfileType: NotRequired[ProfileTypeType]
|
|
1043
1038
|
As2Id: NotRequired[str]
|
|
1044
|
-
CertificateIds: NotRequired[
|
|
1045
|
-
Tags: NotRequired[
|
|
1039
|
+
CertificateIds: NotRequired[list[str]]
|
|
1040
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1046
1041
|
|
|
1047
1042
|
class ImportHostKeyRequestTypeDef(TypedDict):
|
|
1048
1043
|
ServerId: str
|
|
@@ -1052,7 +1047,7 @@ class ImportHostKeyRequestTypeDef(TypedDict):
|
|
|
1052
1047
|
|
|
1053
1048
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1054
1049
|
Arn: str
|
|
1055
|
-
Tags:
|
|
1050
|
+
Tags: list[TagTypeDef]
|
|
1056
1051
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1057
1052
|
NextToken: NotRequired[str]
|
|
1058
1053
|
|
|
@@ -1078,7 +1073,7 @@ class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
|
|
|
1078
1073
|
|
|
1079
1074
|
class DescribedAccessTypeDef(TypedDict):
|
|
1080
1075
|
HomeDirectory: NotRequired[str]
|
|
1081
|
-
HomeDirectoryMappings: NotRequired[
|
|
1076
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1082
1077
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1083
1078
|
Policy: NotRequired[str]
|
|
1084
1079
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
@@ -1094,13 +1089,13 @@ class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
|
1094
1089
|
class DescribedUserTypeDef(TypedDict):
|
|
1095
1090
|
Arn: str
|
|
1096
1091
|
HomeDirectory: NotRequired[str]
|
|
1097
|
-
HomeDirectoryMappings: NotRequired[
|
|
1092
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1098
1093
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1099
1094
|
Policy: NotRequired[str]
|
|
1100
1095
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1101
1096
|
Role: NotRequired[str]
|
|
1102
|
-
SshPublicKeys: NotRequired[
|
|
1103
|
-
Tags: NotRequired[
|
|
1097
|
+
SshPublicKeys: NotRequired[list[SshPublicKeyTypeDef]]
|
|
1098
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1104
1099
|
UserName: NotRequired[str]
|
|
1105
1100
|
|
|
1106
1101
|
EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
|
|
@@ -1186,54 +1181,54 @@ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
|
|
|
1186
1181
|
|
|
1187
1182
|
class ListAccessesResponseTypeDef(TypedDict):
|
|
1188
1183
|
ServerId: str
|
|
1189
|
-
Accesses:
|
|
1184
|
+
Accesses: list[ListedAccessTypeDef]
|
|
1190
1185
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1191
1186
|
NextToken: NotRequired[str]
|
|
1192
1187
|
|
|
1193
1188
|
class ListAgreementsResponseTypeDef(TypedDict):
|
|
1194
|
-
Agreements:
|
|
1189
|
+
Agreements: list[ListedAgreementTypeDef]
|
|
1195
1190
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1196
1191
|
NextToken: NotRequired[str]
|
|
1197
1192
|
|
|
1198
1193
|
class ListCertificatesResponseTypeDef(TypedDict):
|
|
1199
|
-
Certificates:
|
|
1194
|
+
Certificates: list[ListedCertificateTypeDef]
|
|
1200
1195
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1201
1196
|
NextToken: NotRequired[str]
|
|
1202
1197
|
|
|
1203
1198
|
class ListConnectorsResponseTypeDef(TypedDict):
|
|
1204
|
-
Connectors:
|
|
1199
|
+
Connectors: list[ListedConnectorTypeDef]
|
|
1205
1200
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1206
1201
|
NextToken: NotRequired[str]
|
|
1207
1202
|
|
|
1208
1203
|
class ListHostKeysResponseTypeDef(TypedDict):
|
|
1209
1204
|
ServerId: str
|
|
1210
|
-
HostKeys:
|
|
1205
|
+
HostKeys: list[ListedHostKeyTypeDef]
|
|
1211
1206
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1212
1207
|
NextToken: NotRequired[str]
|
|
1213
1208
|
|
|
1214
1209
|
class ListProfilesResponseTypeDef(TypedDict):
|
|
1215
|
-
Profiles:
|
|
1210
|
+
Profiles: list[ListedProfileTypeDef]
|
|
1216
1211
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1217
1212
|
NextToken: NotRequired[str]
|
|
1218
1213
|
|
|
1219
1214
|
class ListServersResponseTypeDef(TypedDict):
|
|
1220
|
-
Servers:
|
|
1215
|
+
Servers: list[ListedServerTypeDef]
|
|
1221
1216
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1222
1217
|
NextToken: NotRequired[str]
|
|
1223
1218
|
|
|
1224
1219
|
class ListUsersResponseTypeDef(TypedDict):
|
|
1225
1220
|
ServerId: str
|
|
1226
|
-
Users:
|
|
1221
|
+
Users: list[ListedUserTypeDef]
|
|
1227
1222
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1228
1223
|
NextToken: NotRequired[str]
|
|
1229
1224
|
|
|
1230
1225
|
class ListWebAppsResponseTypeDef(TypedDict):
|
|
1231
|
-
WebApps:
|
|
1226
|
+
WebApps: list[ListedWebAppTypeDef]
|
|
1232
1227
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1233
1228
|
NextToken: NotRequired[str]
|
|
1234
1229
|
|
|
1235
1230
|
class ListWorkflowsResponseTypeDef(TypedDict):
|
|
1236
|
-
Workflows:
|
|
1231
|
+
Workflows: list[ListedWorkflowTypeDef]
|
|
1237
1232
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1238
1233
|
NextToken: NotRequired[str]
|
|
1239
1234
|
|
|
@@ -1242,7 +1237,7 @@ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutpu
|
|
|
1242
1237
|
|
|
1243
1238
|
class TagStepDetailsOutputTypeDef(TypedDict):
|
|
1244
1239
|
Name: NotRequired[str]
|
|
1245
|
-
Tags: NotRequired[
|
|
1240
|
+
Tags: NotRequired[list[S3TagTypeDef]]
|
|
1246
1241
|
SourceFileLocation: NotRequired[str]
|
|
1247
1242
|
|
|
1248
1243
|
class TagStepDetailsTypeDef(TypedDict):
|
|
@@ -1271,8 +1266,8 @@ class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
|
1271
1266
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1272
1267
|
|
|
1273
1268
|
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1274
|
-
OnUpload: NotRequired[
|
|
1275
|
-
OnPartialUpload: NotRequired[
|
|
1269
|
+
OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1270
|
+
OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1276
1271
|
|
|
1277
1272
|
class WorkflowDetailsTypeDef(TypedDict):
|
|
1278
1273
|
OnUpload: NotRequired[Sequence[WorkflowDetailTypeDef]]
|
|
@@ -1308,9 +1303,9 @@ class DescribedConnectorTypeDef(TypedDict):
|
|
|
1308
1303
|
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1309
1304
|
AccessRole: NotRequired[str]
|
|
1310
1305
|
LoggingRole: NotRequired[str]
|
|
1311
|
-
Tags: NotRequired[
|
|
1306
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1312
1307
|
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1313
|
-
ServiceManagedEgressIpAddresses: NotRequired[
|
|
1308
|
+
ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1314
1309
|
SecurityPolicyName: NotRequired[str]
|
|
1315
1310
|
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1316
1311
|
ErrorMessage: NotRequired[str]
|
|
@@ -1322,7 +1317,7 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1322
1317
|
AccessEndpoint: NotRequired[str]
|
|
1323
1318
|
WebAppEndpoint: NotRequired[str]
|
|
1324
1319
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1325
|
-
Tags: NotRequired[
|
|
1320
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1326
1321
|
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1327
1322
|
|
|
1328
1323
|
class DescribeUserResponseTypeDef(TypedDict):
|
|
@@ -1331,8 +1326,8 @@ class DescribeUserResponseTypeDef(TypedDict):
|
|
|
1331
1326
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1332
1327
|
|
|
1333
1328
|
class ExecutionResultsTypeDef(TypedDict):
|
|
1334
|
-
Steps: NotRequired[
|
|
1335
|
-
OnExceptionSteps: NotRequired[
|
|
1329
|
+
Steps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1330
|
+
OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1336
1331
|
|
|
1337
1332
|
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1338
1333
|
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
@@ -1447,16 +1442,16 @@ class DescribedServerTypeDef(TypedDict):
|
|
|
1447
1442
|
LoggingRole: NotRequired[str]
|
|
1448
1443
|
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1449
1444
|
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1450
|
-
Protocols: NotRequired[
|
|
1445
|
+
Protocols: NotRequired[list[ProtocolType]]
|
|
1451
1446
|
SecurityPolicyName: NotRequired[str]
|
|
1452
1447
|
ServerId: NotRequired[str]
|
|
1453
1448
|
State: NotRequired[StateType]
|
|
1454
|
-
Tags: NotRequired[
|
|
1449
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1455
1450
|
UserCount: NotRequired[int]
|
|
1456
1451
|
WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
|
|
1457
|
-
StructuredLogDestinations: NotRequired[
|
|
1452
|
+
StructuredLogDestinations: NotRequired[list[str]]
|
|
1458
1453
|
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1459
|
-
As2ServiceManagedEgressIpAddresses: NotRequired[
|
|
1454
|
+
As2ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1460
1455
|
IpAddressType: NotRequired[IpAddressTypeType]
|
|
1461
1456
|
|
|
1462
1457
|
WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
|
|
@@ -1504,7 +1499,7 @@ WorkflowStepTypeDef = TypedDict(
|
|
|
1504
1499
|
|
|
1505
1500
|
class ListExecutionsResponseTypeDef(TypedDict):
|
|
1506
1501
|
WorkflowId: str
|
|
1507
|
-
Executions:
|
|
1502
|
+
Executions: list[ListedExecutionTypeDef]
|
|
1508
1503
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1509
1504
|
NextToken: NotRequired[str]
|
|
1510
1505
|
|
|
@@ -1559,10 +1554,10 @@ class DescribeExecutionResponseTypeDef(TypedDict):
|
|
|
1559
1554
|
class DescribedWorkflowTypeDef(TypedDict):
|
|
1560
1555
|
Arn: str
|
|
1561
1556
|
Description: NotRequired[str]
|
|
1562
|
-
Steps: NotRequired[
|
|
1563
|
-
OnExceptionSteps: NotRequired[
|
|
1557
|
+
Steps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1558
|
+
OnExceptionSteps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1564
1559
|
WorkflowId: NotRequired[str]
|
|
1565
|
-
Tags: NotRequired[
|
|
1560
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1566
1561
|
|
|
1567
1562
|
WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
|
|
1568
1563
|
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.41.0
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.41.0 service generated with mypy-boto3-builder 8.12.0
|
|
5
|
+
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
9
8
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/
|
|
10
9
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
10
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3
|
|
11
|
+
Keywords: boto3,transfer,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
|
|
12
|
+
Platform: any
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
27
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
27
|
Classifier: Typing :: Stubs Only
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
31
29
|
Description-Content-Type: text/markdown
|
|
32
30
|
License-File: LICENSE
|
|
33
31
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
-
Dynamic: author
|
|
35
|
-
Dynamic: author-email
|
|
36
|
-
Dynamic: classifier
|
|
37
|
-
Dynamic: description
|
|
38
|
-
Dynamic: description-content-type
|
|
39
|
-
Dynamic: home-page
|
|
40
|
-
Dynamic: keywords
|
|
41
|
-
Dynamic: license
|
|
42
32
|
Dynamic: license-file
|
|
43
|
-
Dynamic: project-url
|
|
44
|
-
Dynamic: requires-dist
|
|
45
|
-
Dynamic: requires-python
|
|
46
|
-
Dynamic: summary
|
|
47
33
|
|
|
48
34
|
<a id="mypy-boto3-transfer"></a>
|
|
49
35
|
|
|
@@ -56,7 +42,7 @@ Dynamic: summary
|
|
|
56
42
|
|
|
57
43
|

|
|
58
44
|
|
|
59
|
-
Type annotations for [boto3 Transfer 1.
|
|
45
|
+
Type annotations for [boto3 Transfer 1.41.0](https://pypi.org/project/boto3/)
|
|
60
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +51,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
51
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
52
|
|
|
67
53
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
[mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
55
|
|
|
70
56
|
More information can be found on
|
|
71
57
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -119,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
105
|
isolation.
|
|
120
106
|
|
|
121
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.
|
|
108
|
+
`uvx --with 'boto3==1.41.0' mypy-boto3-builder`
|
|
123
109
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
110
|
3. Add `Transfer` service.
|
|
125
111
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
|
|
2
|
+
mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=U7rYjW38XpXeZ2jVfjAgroXnUROFkPjEWTw2JYXWc5U,985
|
|
4
|
+
mypy_boto3_transfer/client.py,sha256=wPNz8acxgqI7BJM12aBDyEKNl0aQPyfsS8OiZM7fWo8,53772
|
|
5
|
+
mypy_boto3_transfer/client.pyi,sha256=LWI2hmaZ_MLaOWdOIAFOe-JNv2v_Fo3ez8wJOeTwjYw,53769
|
|
6
|
+
mypy_boto3_transfer/literals.py,sha256=4IlmJaS6SRQnx9C2ZbtTRkWr97-MU9c-RjaTorGYdcU,15034
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=cNmynvRZn9Hxfxii7CTo6i4Y5qUNLFAuRjmw05xjr4Y,15032
|
|
8
|
+
mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
|
|
9
|
+
mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
|
|
10
|
+
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_transfer/type_defs.py,sha256=29dGcdyJ9Wvie5y3qqq3zfvYRjQ4psG2Xk-t8rgZY40,51466
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=4NSXgzGHMFMKgNqH-egdDdy3W-6Bb9A5YDenw87CgMk,51238
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
14
|
+
mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
|
|
15
|
+
mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
|
|
16
|
+
mypy_boto3_transfer-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.41.0.dist-info/METADATA,sha256=BWBnAd8CeSbijigDZtPUndtUqc-iUD5cVtvX6QmTDxM,16840
|
|
18
|
+
mypy_boto3_transfer-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_transfer-1.41.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.41.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
|
|
2
|
-
mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=Tf1RjRemuKy8ikTEFUTYnEhHV627qJy7FDkdwclhB7k,988
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=6l0uSAVJ6BVdzPf1gv_asKcvpxuMbBxwBHNprQJrGaE,53932
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=NNnyI8PomDZglArhR_iQXKG452-10OUFeLlp8LN8zcc,53929
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=cs4yhZbf9Qoru4t5IPfLcldpQ1CcnPdb3MI0ZWrC7KQ,15076
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=gZPDvfdnCzwCxn8-lbmc615BbISNyEcl6VPts2Awq6g,15074
|
|
8
|
-
mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
|
|
9
|
-
mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
|
|
10
|
-
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=TNE9McgB3AG0uAgun2QkTFOmSM4biEQwi35Uod2-8a8,51627
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=jC5-m1sop_37x50vi-lNUVLprxgNubdzevTissN1ASQ,51399
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=0k8Fn1_CJYltqJpGrEl30b_7OF3YNwqVfohrQCBE4dA,93
|
|
14
|
-
mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
|
|
15
|
-
mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
|
|
16
|
-
mypy_boto3_transfer-1.40.52.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_transfer-1.40.52.dist-info/METADATA,sha256=mZEbNF-tQgIsnQlR8shRjVT7aoyda70X2DJ1apF0wJo,17175
|
|
18
|
-
mypy_boto3_transfer-1.40.52.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_transfer-1.40.52.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.40.52.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|