mypy-boto3-transfer 1.40.0__py3-none-any.whl → 1.40.52__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 +3 -3
- mypy_boto3_transfer/literals.py +9 -13
- mypy_boto3_transfer/literals.pyi +9 -13
- mypy_boto3_transfer/type_defs.py +57 -15
- mypy_boto3_transfer/type_defs.pyi +51 -15
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.40.0.dist-info → mypy_boto3_transfer-1.40.52.dist-info}/METADATA +4 -4
- mypy_boto3_transfer-1.40.52.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.40.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.40.0.dist-info → mypy_boto3_transfer-1.40.52.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.40.0.dist-info → mypy_boto3_transfer-1.40.52.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.40.0.dist-info → mypy_boto3_transfer-1.40.52.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ 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.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.40.52\n"
|
|
16
|
+
"Version: 1.40.52\n"
|
|
17
17
|
"Builder version: 8.11.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.52\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
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"]
|
|
@@ -175,6 +179,7 @@ ServiceName = Literal[
|
|
|
175
179
|
"appstream",
|
|
176
180
|
"appsync",
|
|
177
181
|
"apptest",
|
|
182
|
+
"arc-region-switch",
|
|
178
183
|
"arc-zonal-shift",
|
|
179
184
|
"artifact",
|
|
180
185
|
"athena",
|
|
@@ -186,8 +191,10 @@ ServiceName = Literal[
|
|
|
186
191
|
"backup-gateway",
|
|
187
192
|
"backupsearch",
|
|
188
193
|
"batch",
|
|
194
|
+
"bcm-dashboards",
|
|
189
195
|
"bcm-data-exports",
|
|
190
196
|
"bcm-pricing-calculator",
|
|
197
|
+
"bcm-recommended-actions",
|
|
191
198
|
"bedrock",
|
|
192
199
|
"bedrock-agent",
|
|
193
200
|
"bedrock-agent-runtime",
|
|
@@ -429,8 +436,6 @@ ServiceName = Literal[
|
|
|
429
436
|
"omics",
|
|
430
437
|
"opensearch",
|
|
431
438
|
"opensearchserverless",
|
|
432
|
-
"opsworks",
|
|
433
|
-
"opsworkscm",
|
|
434
439
|
"organizations",
|
|
435
440
|
"osis",
|
|
436
441
|
"outposts",
|
|
@@ -512,7 +517,6 @@ ServiceName = Literal[
|
|
|
512
517
|
"shield",
|
|
513
518
|
"signer",
|
|
514
519
|
"simspaceweaver",
|
|
515
|
-
"sms",
|
|
516
520
|
"snow-device-management",
|
|
517
521
|
"snowball",
|
|
518
522
|
"sns",
|
|
@@ -563,16 +567,7 @@ ServiceName = Literal[
|
|
|
563
567
|
"xray",
|
|
564
568
|
]
|
|
565
569
|
ResourceServiceName = Literal[
|
|
566
|
-
"cloudformation",
|
|
567
|
-
"cloudwatch",
|
|
568
|
-
"dynamodb",
|
|
569
|
-
"ec2",
|
|
570
|
-
"glacier",
|
|
571
|
-
"iam",
|
|
572
|
-
"opsworks",
|
|
573
|
-
"s3",
|
|
574
|
-
"sns",
|
|
575
|
-
"sqs",
|
|
570
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
576
571
|
]
|
|
577
572
|
PaginatorName = Literal[
|
|
578
573
|
"list_accesses",
|
|
@@ -593,6 +588,7 @@ WaiterName = Literal["server_offline", "server_online"]
|
|
|
593
588
|
RegionName = Literal[
|
|
594
589
|
"af-south-1",
|
|
595
590
|
"ap-east-1",
|
|
591
|
+
"ap-east-2",
|
|
596
592
|
"ap-northeast-1",
|
|
597
593
|
"ap-northeast-2",
|
|
598
594
|
"ap-northeast-3",
|
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"]
|
|
@@ -173,6 +177,7 @@ ServiceName = Literal[
|
|
|
173
177
|
"appstream",
|
|
174
178
|
"appsync",
|
|
175
179
|
"apptest",
|
|
180
|
+
"arc-region-switch",
|
|
176
181
|
"arc-zonal-shift",
|
|
177
182
|
"artifact",
|
|
178
183
|
"athena",
|
|
@@ -184,8 +189,10 @@ ServiceName = Literal[
|
|
|
184
189
|
"backup-gateway",
|
|
185
190
|
"backupsearch",
|
|
186
191
|
"batch",
|
|
192
|
+
"bcm-dashboards",
|
|
187
193
|
"bcm-data-exports",
|
|
188
194
|
"bcm-pricing-calculator",
|
|
195
|
+
"bcm-recommended-actions",
|
|
189
196
|
"bedrock",
|
|
190
197
|
"bedrock-agent",
|
|
191
198
|
"bedrock-agent-runtime",
|
|
@@ -427,8 +434,6 @@ ServiceName = Literal[
|
|
|
427
434
|
"omics",
|
|
428
435
|
"opensearch",
|
|
429
436
|
"opensearchserverless",
|
|
430
|
-
"opsworks",
|
|
431
|
-
"opsworkscm",
|
|
432
437
|
"organizations",
|
|
433
438
|
"osis",
|
|
434
439
|
"outposts",
|
|
@@ -510,7 +515,6 @@ ServiceName = Literal[
|
|
|
510
515
|
"shield",
|
|
511
516
|
"signer",
|
|
512
517
|
"simspaceweaver",
|
|
513
|
-
"sms",
|
|
514
518
|
"snow-device-management",
|
|
515
519
|
"snowball",
|
|
516
520
|
"sns",
|
|
@@ -561,16 +565,7 @@ ServiceName = Literal[
|
|
|
561
565
|
"xray",
|
|
562
566
|
]
|
|
563
567
|
ResourceServiceName = Literal[
|
|
564
|
-
"cloudformation",
|
|
565
|
-
"cloudwatch",
|
|
566
|
-
"dynamodb",
|
|
567
|
-
"ec2",
|
|
568
|
-
"glacier",
|
|
569
|
-
"iam",
|
|
570
|
-
"opsworks",
|
|
571
|
-
"s3",
|
|
572
|
-
"sns",
|
|
573
|
-
"sqs",
|
|
568
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
574
569
|
]
|
|
575
570
|
PaginatorName = Literal[
|
|
576
571
|
"list_accesses",
|
|
@@ -591,6 +586,7 @@ WaiterName = Literal["server_offline", "server_online"]
|
|
|
591
586
|
RegionName = Literal[
|
|
592
587
|
"af-south-1",
|
|
593
588
|
"ap-east-1",
|
|
589
|
+
"ap-east-2",
|
|
594
590
|
"ap-northeast-1",
|
|
595
591
|
"ap-northeast-2",
|
|
596
592
|
"ap-northeast-3",
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -28,6 +28,8 @@ from .literals import (
|
|
|
28
28
|
CertificateTypeType,
|
|
29
29
|
CertificateUsageTypeType,
|
|
30
30
|
CompressionEnumType,
|
|
31
|
+
ConnectorEgressTypeType,
|
|
32
|
+
ConnectorStatusType,
|
|
31
33
|
CustomStepStatusType,
|
|
32
34
|
DirectoryListingOptimizationType,
|
|
33
35
|
DomainType,
|
|
@@ -74,7 +76,9 @@ else:
|
|
|
74
76
|
__all__ = (
|
|
75
77
|
"As2ConnectorConfigTypeDef",
|
|
76
78
|
"BlobTypeDef",
|
|
79
|
+
"ConnectorEgressConfigTypeDef",
|
|
77
80
|
"ConnectorFileTransferResultTypeDef",
|
|
81
|
+
"ConnectorVpcLatticeEgressConfigTypeDef",
|
|
78
82
|
"CopyStepDetailsTypeDef",
|
|
79
83
|
"CreateAccessRequestTypeDef",
|
|
80
84
|
"CreateAccessResponseTypeDef",
|
|
@@ -139,7 +143,9 @@ __all__ = (
|
|
|
139
143
|
"DescribedAccessTypeDef",
|
|
140
144
|
"DescribedAgreementTypeDef",
|
|
141
145
|
"DescribedCertificateTypeDef",
|
|
146
|
+
"DescribedConnectorEgressConfigTypeDef",
|
|
142
147
|
"DescribedConnectorTypeDef",
|
|
148
|
+
"DescribedConnectorVpcLatticeEgressConfigTypeDef",
|
|
143
149
|
"DescribedExecutionTypeDef",
|
|
144
150
|
"DescribedHostKeyTypeDef",
|
|
145
151
|
"DescribedIdentityCenterConfigTypeDef",
|
|
@@ -269,8 +275,10 @@ __all__ = (
|
|
|
269
275
|
"UpdateAgreementResponseTypeDef",
|
|
270
276
|
"UpdateCertificateRequestTypeDef",
|
|
271
277
|
"UpdateCertificateResponseTypeDef",
|
|
278
|
+
"UpdateConnectorEgressConfigTypeDef",
|
|
272
279
|
"UpdateConnectorRequestTypeDef",
|
|
273
280
|
"UpdateConnectorResponseTypeDef",
|
|
281
|
+
"UpdateConnectorVpcLatticeEgressConfigTypeDef",
|
|
274
282
|
"UpdateHostKeyRequestTypeDef",
|
|
275
283
|
"UpdateHostKeyResponseTypeDef",
|
|
276
284
|
"UpdateProfileRequestTypeDef",
|
|
@@ -315,6 +323,11 @@ class As2ConnectorConfigTypeDef(TypedDict):
|
|
|
315
323
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
316
324
|
|
|
317
325
|
|
|
326
|
+
class ConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
327
|
+
ResourceConfigurationArn: str
|
|
328
|
+
PortNumber: NotRequired[int]
|
|
329
|
+
|
|
330
|
+
|
|
318
331
|
class ConnectorFileTransferResultTypeDef(TypedDict):
|
|
319
332
|
FilePath: str
|
|
320
333
|
StatusCode: TransferTableStatusType
|
|
@@ -527,6 +540,11 @@ class PosixProfileOutputTypeDef(TypedDict):
|
|
|
527
540
|
SecondaryGids: NotRequired[List[int]]
|
|
528
541
|
|
|
529
542
|
|
|
543
|
+
class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
544
|
+
ResourceConfigurationArn: str
|
|
545
|
+
PortNumber: NotRequired[int]
|
|
546
|
+
|
|
547
|
+
|
|
530
548
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
531
549
|
UserSecretId: NotRequired[str]
|
|
532
550
|
TrustedHostKeys: NotRequired[List[str]]
|
|
@@ -881,6 +899,11 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
881
899
|
TagKeys: Sequence[str]
|
|
882
900
|
|
|
883
901
|
|
|
902
|
+
class UpdateConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
903
|
+
ResourceConfigurationArn: NotRequired[str]
|
|
904
|
+
PortNumber: NotRequired[int]
|
|
905
|
+
|
|
906
|
+
|
|
884
907
|
class UpdateHostKeyRequestTypeDef(TypedDict):
|
|
885
908
|
ServerId: str
|
|
886
909
|
HostKeyId: str
|
|
@@ -908,6 +931,10 @@ class UpdateWebAppCustomizationRequestTypeDef(TypedDict):
|
|
|
908
931
|
FaviconFile: NotRequired[BlobTypeDef]
|
|
909
932
|
|
|
910
933
|
|
|
934
|
+
class ConnectorEgressConfigTypeDef(TypedDict):
|
|
935
|
+
VpcLattice: NotRequired[ConnectorVpcLatticeEgressConfigTypeDef]
|
|
936
|
+
|
|
937
|
+
|
|
911
938
|
class CreateAccessResponseTypeDef(TypedDict):
|
|
912
939
|
ServerId: str
|
|
913
940
|
ExternalId: str
|
|
@@ -1208,17 +1235,8 @@ class DescribedAccessTypeDef(TypedDict):
|
|
|
1208
1235
|
ExternalId: NotRequired[str]
|
|
1209
1236
|
|
|
1210
1237
|
|
|
1211
|
-
class
|
|
1212
|
-
|
|
1213
|
-
ConnectorId: NotRequired[str]
|
|
1214
|
-
Url: NotRequired[str]
|
|
1215
|
-
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1216
|
-
AccessRole: NotRequired[str]
|
|
1217
|
-
LoggingRole: NotRequired[str]
|
|
1218
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
1219
|
-
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1220
|
-
ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1221
|
-
SecurityPolicyName: NotRequired[str]
|
|
1238
|
+
class DescribedConnectorEgressConfigTypeDef(TypedDict):
|
|
1239
|
+
VpcLattice: NotRequired[DescribedConnectorVpcLatticeEgressConfigTypeDef]
|
|
1222
1240
|
|
|
1223
1241
|
|
|
1224
1242
|
class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
@@ -1435,6 +1453,10 @@ class TestConnectionResponseTypeDef(TypedDict):
|
|
|
1435
1453
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1436
1454
|
|
|
1437
1455
|
|
|
1456
|
+
class UpdateConnectorEgressConfigTypeDef(TypedDict):
|
|
1457
|
+
VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
|
|
1458
|
+
|
|
1459
|
+
|
|
1438
1460
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1439
1461
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1440
1462
|
|
|
@@ -1475,9 +1497,21 @@ class DescribeAccessResponseTypeDef(TypedDict):
|
|
|
1475
1497
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1476
1498
|
|
|
1477
1499
|
|
|
1478
|
-
class
|
|
1479
|
-
|
|
1480
|
-
|
|
1500
|
+
class DescribedConnectorTypeDef(TypedDict):
|
|
1501
|
+
Arn: str
|
|
1502
|
+
EgressType: ConnectorEgressTypeType
|
|
1503
|
+
Status: ConnectorStatusType
|
|
1504
|
+
ConnectorId: NotRequired[str]
|
|
1505
|
+
Url: NotRequired[str]
|
|
1506
|
+
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1507
|
+
AccessRole: NotRequired[str]
|
|
1508
|
+
LoggingRole: NotRequired[str]
|
|
1509
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1510
|
+
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1511
|
+
ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1512
|
+
SecurityPolicyName: NotRequired[str]
|
|
1513
|
+
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1514
|
+
ErrorMessage: NotRequired[str]
|
|
1481
1515
|
|
|
1482
1516
|
|
|
1483
1517
|
class DescribedWebAppTypeDef(TypedDict):
|
|
@@ -1586,13 +1620,14 @@ class ListedExecutionTypeDef(TypedDict):
|
|
|
1586
1620
|
|
|
1587
1621
|
|
|
1588
1622
|
class CreateConnectorRequestTypeDef(TypedDict):
|
|
1589
|
-
Url: str
|
|
1590
1623
|
AccessRole: str
|
|
1624
|
+
Url: NotRequired[str]
|
|
1591
1625
|
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1592
1626
|
LoggingRole: NotRequired[str]
|
|
1593
1627
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1594
1628
|
SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
|
|
1595
1629
|
SecurityPolicyName: NotRequired[str]
|
|
1630
|
+
EgressConfig: NotRequired[ConnectorEgressConfigTypeDef]
|
|
1596
1631
|
|
|
1597
1632
|
|
|
1598
1633
|
class UpdateConnectorRequestTypeDef(TypedDict):
|
|
@@ -1603,6 +1638,7 @@ class UpdateConnectorRequestTypeDef(TypedDict):
|
|
|
1603
1638
|
LoggingRole: NotRequired[str]
|
|
1604
1639
|
SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
|
|
1605
1640
|
SecurityPolicyName: NotRequired[str]
|
|
1641
|
+
EgressConfig: NotRequired[UpdateConnectorEgressConfigTypeDef]
|
|
1606
1642
|
|
|
1607
1643
|
|
|
1608
1644
|
class UpdateWebAppRequestTypeDef(TypedDict):
|
|
@@ -1641,6 +1677,11 @@ class DescribedServerTypeDef(TypedDict):
|
|
|
1641
1677
|
WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
|
|
1642
1678
|
|
|
1643
1679
|
|
|
1680
|
+
class DescribeConnectorResponseTypeDef(TypedDict):
|
|
1681
|
+
Connector: DescribedConnectorTypeDef
|
|
1682
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1683
|
+
|
|
1684
|
+
|
|
1644
1685
|
class DescribeWebAppResponseTypeDef(TypedDict):
|
|
1645
1686
|
WebApp: DescribedWebAppTypeDef
|
|
1646
1687
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1731,6 +1772,7 @@ class UpdateServerRequestTypeDef(TypedDict):
|
|
|
1731
1772
|
StructuredLogDestinations: NotRequired[Sequence[str]]
|
|
1732
1773
|
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1733
1774
|
IpAddressType: NotRequired[IpAddressTypeType]
|
|
1775
|
+
IdentityProviderType: NotRequired[IdentityProviderTypeType]
|
|
1734
1776
|
|
|
1735
1777
|
|
|
1736
1778
|
class DescribeExecutionResponseTypeDef(TypedDict):
|
|
@@ -28,6 +28,8 @@ from .literals import (
|
|
|
28
28
|
CertificateTypeType,
|
|
29
29
|
CertificateUsageTypeType,
|
|
30
30
|
CompressionEnumType,
|
|
31
|
+
ConnectorEgressTypeType,
|
|
32
|
+
ConnectorStatusType,
|
|
31
33
|
CustomStepStatusType,
|
|
32
34
|
DirectoryListingOptimizationType,
|
|
33
35
|
DomainType,
|
|
@@ -73,7 +75,9 @@ else:
|
|
|
73
75
|
__all__ = (
|
|
74
76
|
"As2ConnectorConfigTypeDef",
|
|
75
77
|
"BlobTypeDef",
|
|
78
|
+
"ConnectorEgressConfigTypeDef",
|
|
76
79
|
"ConnectorFileTransferResultTypeDef",
|
|
80
|
+
"ConnectorVpcLatticeEgressConfigTypeDef",
|
|
77
81
|
"CopyStepDetailsTypeDef",
|
|
78
82
|
"CreateAccessRequestTypeDef",
|
|
79
83
|
"CreateAccessResponseTypeDef",
|
|
@@ -138,7 +142,9 @@ __all__ = (
|
|
|
138
142
|
"DescribedAccessTypeDef",
|
|
139
143
|
"DescribedAgreementTypeDef",
|
|
140
144
|
"DescribedCertificateTypeDef",
|
|
145
|
+
"DescribedConnectorEgressConfigTypeDef",
|
|
141
146
|
"DescribedConnectorTypeDef",
|
|
147
|
+
"DescribedConnectorVpcLatticeEgressConfigTypeDef",
|
|
142
148
|
"DescribedExecutionTypeDef",
|
|
143
149
|
"DescribedHostKeyTypeDef",
|
|
144
150
|
"DescribedIdentityCenterConfigTypeDef",
|
|
@@ -268,8 +274,10 @@ __all__ = (
|
|
|
268
274
|
"UpdateAgreementResponseTypeDef",
|
|
269
275
|
"UpdateCertificateRequestTypeDef",
|
|
270
276
|
"UpdateCertificateResponseTypeDef",
|
|
277
|
+
"UpdateConnectorEgressConfigTypeDef",
|
|
271
278
|
"UpdateConnectorRequestTypeDef",
|
|
272
279
|
"UpdateConnectorResponseTypeDef",
|
|
280
|
+
"UpdateConnectorVpcLatticeEgressConfigTypeDef",
|
|
273
281
|
"UpdateHostKeyRequestTypeDef",
|
|
274
282
|
"UpdateHostKeyResponseTypeDef",
|
|
275
283
|
"UpdateProfileRequestTypeDef",
|
|
@@ -311,6 +319,10 @@ class As2ConnectorConfigTypeDef(TypedDict):
|
|
|
311
319
|
|
|
312
320
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
313
321
|
|
|
322
|
+
class ConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
323
|
+
ResourceConfigurationArn: str
|
|
324
|
+
PortNumber: NotRequired[int]
|
|
325
|
+
|
|
314
326
|
class ConnectorFileTransferResultTypeDef(TypedDict):
|
|
315
327
|
FilePath: str
|
|
316
328
|
StatusCode: TransferTableStatusType
|
|
@@ -484,6 +496,10 @@ class PosixProfileOutputTypeDef(TypedDict):
|
|
|
484
496
|
Gid: int
|
|
485
497
|
SecondaryGids: NotRequired[List[int]]
|
|
486
498
|
|
|
499
|
+
class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
500
|
+
ResourceConfigurationArn: str
|
|
501
|
+
PortNumber: NotRequired[int]
|
|
502
|
+
|
|
487
503
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
488
504
|
UserSecretId: NotRequired[str]
|
|
489
505
|
TrustedHostKeys: NotRequired[List[str]]
|
|
@@ -783,6 +799,10 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
783
799
|
Arn: str
|
|
784
800
|
TagKeys: Sequence[str]
|
|
785
801
|
|
|
802
|
+
class UpdateConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
803
|
+
ResourceConfigurationArn: NotRequired[str]
|
|
804
|
+
PortNumber: NotRequired[int]
|
|
805
|
+
|
|
786
806
|
class UpdateHostKeyRequestTypeDef(TypedDict):
|
|
787
807
|
ServerId: str
|
|
788
808
|
HostKeyId: str
|
|
@@ -805,6 +825,9 @@ class UpdateWebAppCustomizationRequestTypeDef(TypedDict):
|
|
|
805
825
|
LogoFile: NotRequired[BlobTypeDef]
|
|
806
826
|
FaviconFile: NotRequired[BlobTypeDef]
|
|
807
827
|
|
|
828
|
+
class ConnectorEgressConfigTypeDef(TypedDict):
|
|
829
|
+
VpcLattice: NotRequired[ConnectorVpcLatticeEgressConfigTypeDef]
|
|
830
|
+
|
|
808
831
|
class CreateAccessResponseTypeDef(TypedDict):
|
|
809
832
|
ServerId: str
|
|
810
833
|
ExternalId: str
|
|
@@ -1062,17 +1085,8 @@ class DescribedAccessTypeDef(TypedDict):
|
|
|
1062
1085
|
Role: NotRequired[str]
|
|
1063
1086
|
ExternalId: NotRequired[str]
|
|
1064
1087
|
|
|
1065
|
-
class
|
|
1066
|
-
|
|
1067
|
-
ConnectorId: NotRequired[str]
|
|
1068
|
-
Url: NotRequired[str]
|
|
1069
|
-
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1070
|
-
AccessRole: NotRequired[str]
|
|
1071
|
-
LoggingRole: NotRequired[str]
|
|
1072
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
1073
|
-
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1074
|
-
ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1075
|
-
SecurityPolicyName: NotRequired[str]
|
|
1088
|
+
class DescribedConnectorEgressConfigTypeDef(TypedDict):
|
|
1089
|
+
VpcLattice: NotRequired[DescribedConnectorVpcLatticeEgressConfigTypeDef]
|
|
1076
1090
|
|
|
1077
1091
|
class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1078
1092
|
IdentityCenterConfig: NotRequired[DescribedIdentityCenterConfigTypeDef]
|
|
@@ -1250,6 +1264,9 @@ class TestConnectionResponseTypeDef(TypedDict):
|
|
|
1250
1264
|
SftpConnectionDetails: SftpConnectorConnectionDetailsTypeDef
|
|
1251
1265
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1252
1266
|
|
|
1267
|
+
class UpdateConnectorEgressConfigTypeDef(TypedDict):
|
|
1268
|
+
VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
|
|
1269
|
+
|
|
1253
1270
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1254
1271
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1255
1272
|
|
|
@@ -1282,9 +1299,21 @@ class DescribeAccessResponseTypeDef(TypedDict):
|
|
|
1282
1299
|
Access: DescribedAccessTypeDef
|
|
1283
1300
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1284
1301
|
|
|
1285
|
-
class
|
|
1286
|
-
|
|
1287
|
-
|
|
1302
|
+
class DescribedConnectorTypeDef(TypedDict):
|
|
1303
|
+
Arn: str
|
|
1304
|
+
EgressType: ConnectorEgressTypeType
|
|
1305
|
+
Status: ConnectorStatusType
|
|
1306
|
+
ConnectorId: NotRequired[str]
|
|
1307
|
+
Url: NotRequired[str]
|
|
1308
|
+
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1309
|
+
AccessRole: NotRequired[str]
|
|
1310
|
+
LoggingRole: NotRequired[str]
|
|
1311
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1312
|
+
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1313
|
+
ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1314
|
+
SecurityPolicyName: NotRequired[str]
|
|
1315
|
+
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1316
|
+
ErrorMessage: NotRequired[str]
|
|
1288
1317
|
|
|
1289
1318
|
class DescribedWebAppTypeDef(TypedDict):
|
|
1290
1319
|
Arn: str
|
|
@@ -1380,13 +1409,14 @@ class ListedExecutionTypeDef(TypedDict):
|
|
|
1380
1409
|
Status: NotRequired[ExecutionStatusType]
|
|
1381
1410
|
|
|
1382
1411
|
class CreateConnectorRequestTypeDef(TypedDict):
|
|
1383
|
-
Url: str
|
|
1384
1412
|
AccessRole: str
|
|
1413
|
+
Url: NotRequired[str]
|
|
1385
1414
|
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1386
1415
|
LoggingRole: NotRequired[str]
|
|
1387
1416
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1388
1417
|
SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
|
|
1389
1418
|
SecurityPolicyName: NotRequired[str]
|
|
1419
|
+
EgressConfig: NotRequired[ConnectorEgressConfigTypeDef]
|
|
1390
1420
|
|
|
1391
1421
|
class UpdateConnectorRequestTypeDef(TypedDict):
|
|
1392
1422
|
ConnectorId: str
|
|
@@ -1396,6 +1426,7 @@ class UpdateConnectorRequestTypeDef(TypedDict):
|
|
|
1396
1426
|
LoggingRole: NotRequired[str]
|
|
1397
1427
|
SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
|
|
1398
1428
|
SecurityPolicyName: NotRequired[str]
|
|
1429
|
+
EgressConfig: NotRequired[UpdateConnectorEgressConfigTypeDef]
|
|
1399
1430
|
|
|
1400
1431
|
class UpdateWebAppRequestTypeDef(TypedDict):
|
|
1401
1432
|
WebAppId: str
|
|
@@ -1430,6 +1461,10 @@ class DescribedServerTypeDef(TypedDict):
|
|
|
1430
1461
|
|
|
1431
1462
|
WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
|
|
1432
1463
|
|
|
1464
|
+
class DescribeConnectorResponseTypeDef(TypedDict):
|
|
1465
|
+
Connector: DescribedConnectorTypeDef
|
|
1466
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1467
|
+
|
|
1433
1468
|
class DescribeWebAppResponseTypeDef(TypedDict):
|
|
1434
1469
|
WebApp: DescribedWebAppTypeDef
|
|
1435
1470
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1514,6 +1549,7 @@ class UpdateServerRequestTypeDef(TypedDict):
|
|
|
1514
1549
|
StructuredLogDestinations: NotRequired[Sequence[str]]
|
|
1515
1550
|
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1516
1551
|
IpAddressType: NotRequired[IpAddressTypeType]
|
|
1552
|
+
IdentityProviderType: NotRequired[IdentityProviderTypeType]
|
|
1517
1553
|
|
|
1518
1554
|
class DescribeExecutionResponseTypeDef(TypedDict):
|
|
1519
1555
|
WorkflowId: str
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.40.
|
|
3
|
+
Version: 1.40.52
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.40.52 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 Transfer 1.40.
|
|
59
|
+
Type annotations for [boto3 Transfer 1.40.52](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.52' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `Transfer` service.
|
|
125
125
|
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=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,,
|
|
@@ -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=WqmtgiY1JeTyiidlWbJQZKZhtNNR1ss9vWHb-NlJbYk,985
|
|
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=aiLmhMC24g3YUG235TwJ4ruvqrnbj74dAtco6xyak6U,14887
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=IuHS4uy5S6WFJgVVVmO_gawW4kW9pAC1CrNq3gfh_Yk,14885
|
|
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=0RupX2aDEeWTK5iX8V6w8jH6Su4tJo7CbpNodAvgYZY,50131
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=wvuiNMMMYGbKMjU0mZtsKLFFtsHYcwTwuOJAsj0sGrE,49909
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,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.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_transfer-1.40.0.dist-info/METADATA,sha256=XiXqvsWndXG82haMzLLOkd9DUD7avHsmDTGf1odInVc,17171
|
|
18
|
-
mypy_boto3_transfer-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_transfer-1.40.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.40.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.40.0.dist-info → mypy_boto3_transfer-1.40.52.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_transfer-1.40.0.dist-info → mypy_boto3_transfer-1.40.52.dist-info}/top_level.txt
RENAMED
|
File without changes
|