mypy-boto3-transfer 1.41.0__py3-none-any.whl → 1.41.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_transfer/__main__.py +3 -3
- mypy_boto3_transfer/literals.py +3 -0
- mypy_boto3_transfer/literals.pyi +3 -0
- mypy_boto3_transfer/type_defs.py +54 -14
- mypy_boto3_transfer/type_defs.pyi +46 -12
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.41.0.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/METADATA +4 -4
- {mypy_boto3_transfer-1.41.0.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/RECORD +11 -11
- {mypy_boto3_transfer-1.41.0.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.41.0.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.41.0.dist-info → mypy_boto3_transfer-1.41.2.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.41.
|
|
16
|
-
"Version: 1.41.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.41.2\n"
|
|
16
|
+
"Version: 1.41.2\n"
|
|
17
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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.41.
|
|
29
|
+
sys.stdout.write("1.41.2\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_transfer/literals.py
CHANGED
|
@@ -81,6 +81,7 @@ __all__ = (
|
|
|
81
81
|
"TransferTableStatusType",
|
|
82
82
|
"WaiterName",
|
|
83
83
|
"WebAppEndpointPolicyType",
|
|
84
|
+
"WebAppEndpointTypeType",
|
|
84
85
|
"WorkflowStepTypeType",
|
|
85
86
|
)
|
|
86
87
|
|
|
@@ -150,6 +151,7 @@ StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING",
|
|
|
150
151
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
151
152
|
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
152
153
|
WebAppEndpointPolicyType = Literal["FIPS", "STANDARD"]
|
|
154
|
+
WebAppEndpointTypeType = Literal["PUBLIC", "VPC"]
|
|
153
155
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
154
156
|
TransferServiceName = Literal["transfer"]
|
|
155
157
|
ServiceName = Literal[
|
|
@@ -247,6 +249,7 @@ ServiceName = Literal[
|
|
|
247
249
|
"comprehend",
|
|
248
250
|
"comprehendmedical",
|
|
249
251
|
"compute-optimizer",
|
|
252
|
+
"compute-optimizer-automation",
|
|
250
253
|
"config",
|
|
251
254
|
"connect",
|
|
252
255
|
"connect-contact-lens",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -80,6 +80,7 @@ __all__ = (
|
|
|
80
80
|
"TransferTableStatusType",
|
|
81
81
|
"WaiterName",
|
|
82
82
|
"WebAppEndpointPolicyType",
|
|
83
|
+
"WebAppEndpointTypeType",
|
|
83
84
|
"WorkflowStepTypeType",
|
|
84
85
|
)
|
|
85
86
|
|
|
@@ -148,6 +149,7 @@ StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING",
|
|
|
148
149
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
149
150
|
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
150
151
|
WebAppEndpointPolicyType = Literal["FIPS", "STANDARD"]
|
|
152
|
+
WebAppEndpointTypeType = Literal["PUBLIC", "VPC"]
|
|
151
153
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
152
154
|
TransferServiceName = Literal["transfer"]
|
|
153
155
|
ServiceName = Literal[
|
|
@@ -245,6 +247,7 @@ ServiceName = Literal[
|
|
|
245
247
|
"comprehend",
|
|
246
248
|
"comprehendmedical",
|
|
247
249
|
"compute-optimizer",
|
|
250
|
+
"compute-optimizer-automation",
|
|
248
251
|
"config",
|
|
249
252
|
"connect",
|
|
250
253
|
"connect-contact-lens",
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -59,6 +59,7 @@ from .literals import (
|
|
|
59
59
|
TlsSessionResumptionModeType,
|
|
60
60
|
TransferTableStatusType,
|
|
61
61
|
WebAppEndpointPolicyType,
|
|
62
|
+
WebAppEndpointTypeType,
|
|
62
63
|
WorkflowStepTypeType,
|
|
63
64
|
)
|
|
64
65
|
|
|
@@ -149,8 +150,10 @@ __all__ = (
|
|
|
149
150
|
"DescribedServerTypeDef",
|
|
150
151
|
"DescribedUserTypeDef",
|
|
151
152
|
"DescribedWebAppCustomizationTypeDef",
|
|
153
|
+
"DescribedWebAppEndpointDetailsTypeDef",
|
|
152
154
|
"DescribedWebAppIdentityProviderDetailsTypeDef",
|
|
153
155
|
"DescribedWebAppTypeDef",
|
|
156
|
+
"DescribedWebAppVpcConfigTypeDef",
|
|
154
157
|
"DescribedWorkflowTypeDef",
|
|
155
158
|
"EfsFileLocationTypeDef",
|
|
156
159
|
"EmptyResponseMetadataTypeDef",
|
|
@@ -284,14 +287,18 @@ __all__ = (
|
|
|
284
287
|
"UpdateUserResponseTypeDef",
|
|
285
288
|
"UpdateWebAppCustomizationRequestTypeDef",
|
|
286
289
|
"UpdateWebAppCustomizationResponseTypeDef",
|
|
290
|
+
"UpdateWebAppEndpointDetailsTypeDef",
|
|
287
291
|
"UpdateWebAppIdentityCenterConfigTypeDef",
|
|
288
292
|
"UpdateWebAppIdentityProviderDetailsTypeDef",
|
|
289
293
|
"UpdateWebAppRequestTypeDef",
|
|
290
294
|
"UpdateWebAppResponseTypeDef",
|
|
295
|
+
"UpdateWebAppVpcConfigTypeDef",
|
|
291
296
|
"UserDetailsTypeDef",
|
|
292
297
|
"WaiterConfigTypeDef",
|
|
298
|
+
"WebAppEndpointDetailsTypeDef",
|
|
293
299
|
"WebAppIdentityProviderDetailsTypeDef",
|
|
294
300
|
"WebAppUnitsTypeDef",
|
|
301
|
+
"WebAppVpcConfigTypeDef",
|
|
295
302
|
"WorkflowDetailTypeDef",
|
|
296
303
|
"WorkflowDetailsOutputTypeDef",
|
|
297
304
|
"WorkflowDetailsTypeDef",
|
|
@@ -578,6 +585,12 @@ class SshPublicKeyTypeDef(TypedDict):
|
|
|
578
585
|
SshPublicKeyId: str
|
|
579
586
|
|
|
580
587
|
|
|
588
|
+
class DescribedWebAppVpcConfigTypeDef(TypedDict):
|
|
589
|
+
SubnetIds: NotRequired[list[str]]
|
|
590
|
+
VpcId: NotRequired[str]
|
|
591
|
+
VpcEndpointId: NotRequired[str]
|
|
592
|
+
|
|
593
|
+
|
|
581
594
|
class EfsFileLocationTypeDef(TypedDict):
|
|
582
595
|
FileSystemId: NotRequired[str]
|
|
583
596
|
Path: NotRequired[str]
|
|
@@ -789,6 +802,7 @@ class ListedWebAppTypeDef(TypedDict):
|
|
|
789
802
|
WebAppId: str
|
|
790
803
|
AccessEndpoint: NotRequired[str]
|
|
791
804
|
WebAppEndpoint: NotRequired[str]
|
|
805
|
+
EndpointType: NotRequired[WebAppEndpointTypeType]
|
|
792
806
|
|
|
793
807
|
|
|
794
808
|
class ListWorkflowsRequestTypeDef(TypedDict):
|
|
@@ -910,10 +924,20 @@ class UpdateProfileRequestTypeDef(TypedDict):
|
|
|
910
924
|
CertificateIds: NotRequired[Sequence[str]]
|
|
911
925
|
|
|
912
926
|
|
|
927
|
+
class UpdateWebAppVpcConfigTypeDef(TypedDict):
|
|
928
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
929
|
+
|
|
930
|
+
|
|
913
931
|
class UpdateWebAppIdentityCenterConfigTypeDef(TypedDict):
|
|
914
932
|
Role: NotRequired[str]
|
|
915
933
|
|
|
916
934
|
|
|
935
|
+
class WebAppVpcConfigTypeDef(TypedDict):
|
|
936
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
937
|
+
VpcId: NotRequired[str]
|
|
938
|
+
SecurityGroupIds: NotRequired[Sequence[str]]
|
|
939
|
+
|
|
940
|
+
|
|
917
941
|
class WorkflowDetailTypeDef(TypedDict):
|
|
918
942
|
WorkflowId: str
|
|
919
943
|
ExecutionRole: str
|
|
@@ -1251,6 +1275,10 @@ class DescribedUserTypeDef(TypedDict):
|
|
|
1251
1275
|
UserName: NotRequired[str]
|
|
1252
1276
|
|
|
1253
1277
|
|
|
1278
|
+
class DescribedWebAppEndpointDetailsTypeDef(TypedDict):
|
|
1279
|
+
Vpc: NotRequired[DescribedWebAppVpcConfigTypeDef]
|
|
1280
|
+
|
|
1281
|
+
|
|
1254
1282
|
EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
|
|
1255
1283
|
|
|
1256
1284
|
|
|
@@ -1452,10 +1480,18 @@ class UpdateConnectorEgressConfigTypeDef(TypedDict):
|
|
|
1452
1480
|
VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
|
|
1453
1481
|
|
|
1454
1482
|
|
|
1483
|
+
class UpdateWebAppEndpointDetailsTypeDef(TypedDict):
|
|
1484
|
+
Vpc: NotRequired[UpdateWebAppVpcConfigTypeDef]
|
|
1485
|
+
|
|
1486
|
+
|
|
1455
1487
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1456
1488
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1457
1489
|
|
|
1458
1490
|
|
|
1491
|
+
class WebAppEndpointDetailsTypeDef(TypedDict):
|
|
1492
|
+
Vpc: NotRequired[WebAppVpcConfigTypeDef]
|
|
1493
|
+
|
|
1494
|
+
|
|
1459
1495
|
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1460
1496
|
OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1461
1497
|
OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
@@ -1509,6 +1545,12 @@ class DescribedConnectorTypeDef(TypedDict):
|
|
|
1509
1545
|
ErrorMessage: NotRequired[str]
|
|
1510
1546
|
|
|
1511
1547
|
|
|
1548
|
+
class DescribeUserResponseTypeDef(TypedDict):
|
|
1549
|
+
ServerId: str
|
|
1550
|
+
User: DescribedUserTypeDef
|
|
1551
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1552
|
+
|
|
1553
|
+
|
|
1512
1554
|
class DescribedWebAppTypeDef(TypedDict):
|
|
1513
1555
|
Arn: str
|
|
1514
1556
|
WebAppId: str
|
|
@@ -1518,12 +1560,8 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1518
1560
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1519
1561
|
Tags: NotRequired[list[TagTypeDef]]
|
|
1520
1562
|
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
class DescribeUserResponseTypeDef(TypedDict):
|
|
1524
|
-
ServerId: str
|
|
1525
|
-
User: DescribedUserTypeDef
|
|
1526
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1563
|
+
EndpointType: NotRequired[WebAppEndpointTypeType]
|
|
1564
|
+
DescribedEndpointDetails: NotRequired[DescribedWebAppEndpointDetailsTypeDef]
|
|
1527
1565
|
|
|
1528
1566
|
|
|
1529
1567
|
class ExecutionResultsTypeDef(TypedDict):
|
|
@@ -1531,14 +1569,6 @@ class ExecutionResultsTypeDef(TypedDict):
|
|
|
1531
1569
|
OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1532
1570
|
|
|
1533
1571
|
|
|
1534
|
-
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1535
|
-
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1536
|
-
AccessEndpoint: NotRequired[str]
|
|
1537
|
-
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1538
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1539
|
-
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
1572
|
class CopyStepDetailsTypeDef(TypedDict):
|
|
1543
1573
|
Name: NotRequired[str]
|
|
1544
1574
|
DestinationFileLocation: NotRequired[InputFileLocationTypeDef]
|
|
@@ -1641,6 +1671,16 @@ class UpdateWebAppRequestTypeDef(TypedDict):
|
|
|
1641
1671
|
IdentityProviderDetails: NotRequired[UpdateWebAppIdentityProviderDetailsTypeDef]
|
|
1642
1672
|
AccessEndpoint: NotRequired[str]
|
|
1643
1673
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1674
|
+
EndpointDetails: NotRequired[UpdateWebAppEndpointDetailsTypeDef]
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1678
|
+
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1679
|
+
AccessEndpoint: NotRequired[str]
|
|
1680
|
+
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1681
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1682
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1683
|
+
EndpointDetails: NotRequired[WebAppEndpointDetailsTypeDef]
|
|
1644
1684
|
|
|
1645
1685
|
|
|
1646
1686
|
class DescribedServerTypeDef(TypedDict):
|
|
@@ -59,6 +59,7 @@ from .literals import (
|
|
|
59
59
|
TlsSessionResumptionModeType,
|
|
60
60
|
TransferTableStatusType,
|
|
61
61
|
WebAppEndpointPolicyType,
|
|
62
|
+
WebAppEndpointTypeType,
|
|
62
63
|
WorkflowStepTypeType,
|
|
63
64
|
)
|
|
64
65
|
|
|
@@ -148,8 +149,10 @@ __all__ = (
|
|
|
148
149
|
"DescribedServerTypeDef",
|
|
149
150
|
"DescribedUserTypeDef",
|
|
150
151
|
"DescribedWebAppCustomizationTypeDef",
|
|
152
|
+
"DescribedWebAppEndpointDetailsTypeDef",
|
|
151
153
|
"DescribedWebAppIdentityProviderDetailsTypeDef",
|
|
152
154
|
"DescribedWebAppTypeDef",
|
|
155
|
+
"DescribedWebAppVpcConfigTypeDef",
|
|
153
156
|
"DescribedWorkflowTypeDef",
|
|
154
157
|
"EfsFileLocationTypeDef",
|
|
155
158
|
"EmptyResponseMetadataTypeDef",
|
|
@@ -283,14 +286,18 @@ __all__ = (
|
|
|
283
286
|
"UpdateUserResponseTypeDef",
|
|
284
287
|
"UpdateWebAppCustomizationRequestTypeDef",
|
|
285
288
|
"UpdateWebAppCustomizationResponseTypeDef",
|
|
289
|
+
"UpdateWebAppEndpointDetailsTypeDef",
|
|
286
290
|
"UpdateWebAppIdentityCenterConfigTypeDef",
|
|
287
291
|
"UpdateWebAppIdentityProviderDetailsTypeDef",
|
|
288
292
|
"UpdateWebAppRequestTypeDef",
|
|
289
293
|
"UpdateWebAppResponseTypeDef",
|
|
294
|
+
"UpdateWebAppVpcConfigTypeDef",
|
|
290
295
|
"UserDetailsTypeDef",
|
|
291
296
|
"WaiterConfigTypeDef",
|
|
297
|
+
"WebAppEndpointDetailsTypeDef",
|
|
292
298
|
"WebAppIdentityProviderDetailsTypeDef",
|
|
293
299
|
"WebAppUnitsTypeDef",
|
|
300
|
+
"WebAppVpcConfigTypeDef",
|
|
294
301
|
"WorkflowDetailTypeDef",
|
|
295
302
|
"WorkflowDetailsOutputTypeDef",
|
|
296
303
|
"WorkflowDetailsTypeDef",
|
|
@@ -527,6 +534,11 @@ class SshPublicKeyTypeDef(TypedDict):
|
|
|
527
534
|
SshPublicKeyBody: str
|
|
528
535
|
SshPublicKeyId: str
|
|
529
536
|
|
|
537
|
+
class DescribedWebAppVpcConfigTypeDef(TypedDict):
|
|
538
|
+
SubnetIds: NotRequired[list[str]]
|
|
539
|
+
VpcId: NotRequired[str]
|
|
540
|
+
VpcEndpointId: NotRequired[str]
|
|
541
|
+
|
|
530
542
|
class EfsFileLocationTypeDef(TypedDict):
|
|
531
543
|
FileSystemId: NotRequired[str]
|
|
532
544
|
Path: NotRequired[str]
|
|
@@ -708,6 +720,7 @@ class ListedWebAppTypeDef(TypedDict):
|
|
|
708
720
|
WebAppId: str
|
|
709
721
|
AccessEndpoint: NotRequired[str]
|
|
710
722
|
WebAppEndpoint: NotRequired[str]
|
|
723
|
+
EndpointType: NotRequired[WebAppEndpointTypeType]
|
|
711
724
|
|
|
712
725
|
class ListWorkflowsRequestTypeDef(TypedDict):
|
|
713
726
|
MaxResults: NotRequired[int]
|
|
@@ -807,9 +820,17 @@ class UpdateProfileRequestTypeDef(TypedDict):
|
|
|
807
820
|
ProfileId: str
|
|
808
821
|
CertificateIds: NotRequired[Sequence[str]]
|
|
809
822
|
|
|
823
|
+
class UpdateWebAppVpcConfigTypeDef(TypedDict):
|
|
824
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
825
|
+
|
|
810
826
|
class UpdateWebAppIdentityCenterConfigTypeDef(TypedDict):
|
|
811
827
|
Role: NotRequired[str]
|
|
812
828
|
|
|
829
|
+
class WebAppVpcConfigTypeDef(TypedDict):
|
|
830
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
831
|
+
VpcId: NotRequired[str]
|
|
832
|
+
SecurityGroupIds: NotRequired[Sequence[str]]
|
|
833
|
+
|
|
813
834
|
class WorkflowDetailTypeDef(TypedDict):
|
|
814
835
|
WorkflowId: str
|
|
815
836
|
ExecutionRole: str
|
|
@@ -1098,6 +1119,9 @@ class DescribedUserTypeDef(TypedDict):
|
|
|
1098
1119
|
Tags: NotRequired[list[TagTypeDef]]
|
|
1099
1120
|
UserName: NotRequired[str]
|
|
1100
1121
|
|
|
1122
|
+
class DescribedWebAppEndpointDetailsTypeDef(TypedDict):
|
|
1123
|
+
Vpc: NotRequired[DescribedWebAppVpcConfigTypeDef]
|
|
1124
|
+
|
|
1101
1125
|
EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
|
|
1102
1126
|
|
|
1103
1127
|
class ExecutionStepResultTypeDef(TypedDict):
|
|
@@ -1262,9 +1286,15 @@ class TestConnectionResponseTypeDef(TypedDict):
|
|
|
1262
1286
|
class UpdateConnectorEgressConfigTypeDef(TypedDict):
|
|
1263
1287
|
VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
|
|
1264
1288
|
|
|
1289
|
+
class UpdateWebAppEndpointDetailsTypeDef(TypedDict):
|
|
1290
|
+
Vpc: NotRequired[UpdateWebAppVpcConfigTypeDef]
|
|
1291
|
+
|
|
1265
1292
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1266
1293
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1267
1294
|
|
|
1295
|
+
class WebAppEndpointDetailsTypeDef(TypedDict):
|
|
1296
|
+
Vpc: NotRequired[WebAppVpcConfigTypeDef]
|
|
1297
|
+
|
|
1268
1298
|
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1269
1299
|
OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1270
1300
|
OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
@@ -1310,6 +1340,11 @@ class DescribedConnectorTypeDef(TypedDict):
|
|
|
1310
1340
|
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1311
1341
|
ErrorMessage: NotRequired[str]
|
|
1312
1342
|
|
|
1343
|
+
class DescribeUserResponseTypeDef(TypedDict):
|
|
1344
|
+
ServerId: str
|
|
1345
|
+
User: DescribedUserTypeDef
|
|
1346
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1347
|
+
|
|
1313
1348
|
class DescribedWebAppTypeDef(TypedDict):
|
|
1314
1349
|
Arn: str
|
|
1315
1350
|
WebAppId: str
|
|
@@ -1319,23 +1354,13 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1319
1354
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1320
1355
|
Tags: NotRequired[list[TagTypeDef]]
|
|
1321
1356
|
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
ServerId: str
|
|
1325
|
-
User: DescribedUserTypeDef
|
|
1326
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1357
|
+
EndpointType: NotRequired[WebAppEndpointTypeType]
|
|
1358
|
+
DescribedEndpointDetails: NotRequired[DescribedWebAppEndpointDetailsTypeDef]
|
|
1327
1359
|
|
|
1328
1360
|
class ExecutionResultsTypeDef(TypedDict):
|
|
1329
1361
|
Steps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1330
1362
|
OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1331
1363
|
|
|
1332
|
-
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1333
|
-
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1334
|
-
AccessEndpoint: NotRequired[str]
|
|
1335
|
-
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1336
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1337
|
-
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1338
|
-
|
|
1339
1364
|
class CopyStepDetailsTypeDef(TypedDict):
|
|
1340
1365
|
Name: NotRequired[str]
|
|
1341
1366
|
DestinationFileLocation: NotRequired[InputFileLocationTypeDef]
|
|
@@ -1428,6 +1453,15 @@ class UpdateWebAppRequestTypeDef(TypedDict):
|
|
|
1428
1453
|
IdentityProviderDetails: NotRequired[UpdateWebAppIdentityProviderDetailsTypeDef]
|
|
1429
1454
|
AccessEndpoint: NotRequired[str]
|
|
1430
1455
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1456
|
+
EndpointDetails: NotRequired[UpdateWebAppEndpointDetailsTypeDef]
|
|
1457
|
+
|
|
1458
|
+
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1459
|
+
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1460
|
+
AccessEndpoint: NotRequired[str]
|
|
1461
|
+
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1462
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1463
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1464
|
+
EndpointDetails: NotRequired[WebAppEndpointDetailsTypeDef]
|
|
1431
1465
|
|
|
1432
1466
|
class DescribedServerTypeDef(TypedDict):
|
|
1433
1467
|
Arn: 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.41.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.41.
|
|
3
|
+
Version: 1.41.2
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.41.2 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -42,7 +42,7 @@ Dynamic: license-file
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
-
Type annotations for [boto3 Transfer 1.41.
|
|
45
|
+
Type annotations for [boto3 Transfer 1.41.2](https://pypi.org/project/boto3/)
|
|
46
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
47
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
48
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
105
105
|
isolation.
|
|
106
106
|
|
|
107
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
108
|
-
`uvx --with 'boto3==1.41.
|
|
108
|
+
`uvx --with 'boto3==1.41.2' mypy-boto3-builder`
|
|
109
109
|
2. Select `boto3-stubs` AWS SDK.
|
|
110
110
|
3. Add `Transfer` service.
|
|
111
111
|
4. Use provided commands to install generated packages.
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
|
|
2
2
|
mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=Pi23jtKmc8g41x-akUWG1ABhGFo-XKS9buzyyyjiNFQ,985
|
|
4
4
|
mypy_boto3_transfer/client.py,sha256=wPNz8acxgqI7BJM12aBDyEKNl0aQPyfsS8OiZM7fWo8,53772
|
|
5
5
|
mypy_boto3_transfer/client.pyi,sha256=LWI2hmaZ_MLaOWdOIAFOe-JNv2v_Fo3ez8wJOeTwjYw,53769
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=
|
|
6
|
+
mypy_boto3_transfer/literals.py,sha256=gsTuv_FTwIPJx_95x2Csv0EQT7q4X3U4UxG1tQ7SSws,15150
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=jNkMmBcdf3JN2ciWjPF1NtdurnEkE2lrWuPqqL9ZRB4,15148
|
|
8
8
|
mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
|
|
9
9
|
mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
|
|
10
10
|
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=
|
|
11
|
+
mypy_boto3_transfer/type_defs.py,sha256=624OG65i_7EszBrBdunLeK1f7tPGus8BzyzhounIWwQ,52762
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=mCQQ9DnQCs0CEbssuVBOv1wgmlhimvGq1Izjp7Jj6lI,52528
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=aLKGJmxodYlE7i2btZqBdcB8RTTGw1f6JzSmoqyix3w,92
|
|
14
14
|
mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
|
|
15
15
|
mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
|
|
16
|
-
mypy_boto3_transfer-1.41.
|
|
17
|
-
mypy_boto3_transfer-1.41.
|
|
18
|
-
mypy_boto3_transfer-1.41.
|
|
19
|
-
mypy_boto3_transfer-1.41.
|
|
20
|
-
mypy_boto3_transfer-1.41.
|
|
16
|
+
mypy_boto3_transfer-1.41.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.41.2.dist-info/METADATA,sha256=NEO-bhJaq7q6MEhPQdFlD8fH5e6X4YUnemlZgU6VMz4,16840
|
|
18
|
+
mypy_boto3_transfer-1.41.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_transfer-1.41.2.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.41.2.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.41.0.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|