mypy-boto3-transfer 1.35.40__py3-none-any.whl → 1.35.84__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/__init__.py +6 -0
- mypy_boto3_transfer/__init__.pyi +6 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +281 -170
- mypy_boto3_transfer/client.pyi +281 -170
- mypy_boto3_transfer/literals.py +36 -7
- mypy_boto3_transfer/literals.pyi +36 -7
- mypy_boto3_transfer/paginator.py +47 -25
- mypy_boto3_transfer/paginator.pyi +45 -25
- mypy_boto3_transfer/type_defs.py +1473 -1626
- mypy_boto3_transfer/type_defs.pyi +1277 -1640
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +6 -4
- mypy_boto3_transfer/waiter.pyi +6 -4
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/METADATA +78 -21
- mypy_boto3_transfer-1.35.84.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.40.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/literals.py
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: AgreementStatusTypeType = "ACTIVE"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -33,6 +35,7 @@ __all__ = (
|
|
|
33
35
|
"EncryptionAlgType",
|
|
34
36
|
"EncryptionTypeType",
|
|
35
37
|
"EndpointTypeType",
|
|
38
|
+
"EnforceMessageSigningTypeType",
|
|
36
39
|
"ExecutionErrorTypeType",
|
|
37
40
|
"ExecutionStatusType",
|
|
38
41
|
"HomeDirectoryTypeType",
|
|
@@ -48,30 +51,33 @@ __all__ = (
|
|
|
48
51
|
"ListServersPaginatorName",
|
|
49
52
|
"ListTagsForResourcePaginatorName",
|
|
50
53
|
"ListUsersPaginatorName",
|
|
54
|
+
"ListWebAppsPaginatorName",
|
|
51
55
|
"ListWorkflowsPaginatorName",
|
|
52
56
|
"MapTypeType",
|
|
53
57
|
"MdnResponseType",
|
|
54
58
|
"MdnSigningAlgType",
|
|
55
59
|
"OverwriteExistingType",
|
|
60
|
+
"PaginatorName",
|
|
61
|
+
"PreserveContentTypeType",
|
|
62
|
+
"PreserveFilenameTypeType",
|
|
56
63
|
"ProfileTypeType",
|
|
57
64
|
"ProtocolType",
|
|
65
|
+
"RegionName",
|
|
66
|
+
"ResourceServiceName",
|
|
58
67
|
"SecurityPolicyProtocolType",
|
|
59
68
|
"SecurityPolicyResourceTypeType",
|
|
60
69
|
"ServerOfflineWaiterName",
|
|
61
70
|
"ServerOnlineWaiterName",
|
|
71
|
+
"ServiceName",
|
|
62
72
|
"SetStatOptionType",
|
|
63
73
|
"SftpAuthenticationMethodsType",
|
|
64
74
|
"SigningAlgType",
|
|
65
75
|
"StateType",
|
|
66
76
|
"TlsSessionResumptionModeType",
|
|
67
|
-
"TransferTableStatusType",
|
|
68
|
-
"WorkflowStepTypeType",
|
|
69
77
|
"TransferServiceName",
|
|
70
|
-
"
|
|
71
|
-
"ResourceServiceName",
|
|
72
|
-
"PaginatorName",
|
|
78
|
+
"TransferTableStatusType",
|
|
73
79
|
"WaiterName",
|
|
74
|
-
"
|
|
80
|
+
"WorkflowStepTypeType",
|
|
75
81
|
)
|
|
76
82
|
|
|
77
83
|
|
|
@@ -87,6 +93,7 @@ DomainType = Literal["EFS", "S3"]
|
|
|
87
93
|
EncryptionAlgType = Literal["AES128_CBC", "AES192_CBC", "AES256_CBC", "DES_EDE3_CBC", "NONE"]
|
|
88
94
|
EncryptionTypeType = Literal["PGP"]
|
|
89
95
|
EndpointTypeType = Literal["PUBLIC", "VPC", "VPC_ENDPOINT"]
|
|
96
|
+
EnforceMessageSigningTypeType = Literal["DISABLED", "ENABLED"]
|
|
90
97
|
ExecutionErrorTypeType = Literal[
|
|
91
98
|
"ALREADY_EXISTS",
|
|
92
99
|
"BAD_REQUEST",
|
|
@@ -113,11 +120,14 @@ ListSecurityPoliciesPaginatorName = Literal["list_security_policies"]
|
|
|
113
120
|
ListServersPaginatorName = Literal["list_servers"]
|
|
114
121
|
ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
|
|
115
122
|
ListUsersPaginatorName = Literal["list_users"]
|
|
123
|
+
ListWebAppsPaginatorName = Literal["list_web_apps"]
|
|
116
124
|
ListWorkflowsPaginatorName = Literal["list_workflows"]
|
|
117
125
|
MapTypeType = Literal["DIRECTORY", "FILE"]
|
|
118
126
|
MdnResponseType = Literal["NONE", "SYNC"]
|
|
119
127
|
MdnSigningAlgType = Literal["DEFAULT", "NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
120
128
|
OverwriteExistingType = Literal["FALSE", "TRUE"]
|
|
129
|
+
PreserveContentTypeType = Literal["DISABLED", "ENABLED"]
|
|
130
|
+
PreserveFilenameTypeType = Literal["DISABLED", "ENABLED"]
|
|
121
131
|
ProfileTypeType = Literal["LOCAL", "PARTNER"]
|
|
122
132
|
ProtocolType = Literal["AS2", "FTP", "FTPS", "SFTP"]
|
|
123
133
|
SecurityPolicyProtocolType = Literal["FTPS", "SFTP"]
|
|
@@ -169,12 +179,17 @@ ServiceName = Literal[
|
|
|
169
179
|
"b2bi",
|
|
170
180
|
"backup",
|
|
171
181
|
"backup-gateway",
|
|
182
|
+
"backupsearch",
|
|
172
183
|
"batch",
|
|
173
184
|
"bcm-data-exports",
|
|
185
|
+
"bcm-pricing-calculator",
|
|
174
186
|
"bedrock",
|
|
175
187
|
"bedrock-agent",
|
|
176
188
|
"bedrock-agent-runtime",
|
|
189
|
+
"bedrock-data-automation",
|
|
190
|
+
"bedrock-data-automation-runtime",
|
|
177
191
|
"bedrock-runtime",
|
|
192
|
+
"billing",
|
|
178
193
|
"billingconductor",
|
|
179
194
|
"braket",
|
|
180
195
|
"budgets",
|
|
@@ -223,6 +238,7 @@ ServiceName = Literal[
|
|
|
223
238
|
"connect",
|
|
224
239
|
"connect-contact-lens",
|
|
225
240
|
"connectcampaigns",
|
|
241
|
+
"connectcampaignsv2",
|
|
226
242
|
"connectcases",
|
|
227
243
|
"connectparticipant",
|
|
228
244
|
"controlcatalog",
|
|
@@ -249,6 +265,7 @@ ServiceName = Literal[
|
|
|
249
265
|
"drs",
|
|
250
266
|
"ds",
|
|
251
267
|
"ds-data",
|
|
268
|
+
"dsql",
|
|
252
269
|
"dynamodb",
|
|
253
270
|
"dynamodbstreams",
|
|
254
271
|
"ebs",
|
|
@@ -284,6 +301,9 @@ ServiceName = Literal[
|
|
|
284
301
|
"freetier",
|
|
285
302
|
"fsx",
|
|
286
303
|
"gamelift",
|
|
304
|
+
"geo-maps",
|
|
305
|
+
"geo-places",
|
|
306
|
+
"geo-routes",
|
|
287
307
|
"glacier",
|
|
288
308
|
"globalaccelerator",
|
|
289
309
|
"glue",
|
|
@@ -302,6 +322,7 @@ ServiceName = Literal[
|
|
|
302
322
|
"inspector-scan",
|
|
303
323
|
"inspector2",
|
|
304
324
|
"internetmonitor",
|
|
325
|
+
"invoicing",
|
|
305
326
|
"iot",
|
|
306
327
|
"iot-data",
|
|
307
328
|
"iot-jobs-data",
|
|
@@ -388,10 +409,13 @@ ServiceName = Literal[
|
|
|
388
409
|
"neptune-graph",
|
|
389
410
|
"neptunedata",
|
|
390
411
|
"network-firewall",
|
|
412
|
+
"networkflowmonitor",
|
|
391
413
|
"networkmanager",
|
|
392
414
|
"networkmonitor",
|
|
393
|
-
"
|
|
415
|
+
"notifications",
|
|
416
|
+
"notificationscontacts",
|
|
394
417
|
"oam",
|
|
418
|
+
"observabilityadmin",
|
|
395
419
|
"omics",
|
|
396
420
|
"opensearch",
|
|
397
421
|
"opensearchserverless",
|
|
@@ -401,6 +425,7 @@ ServiceName = Literal[
|
|
|
401
425
|
"osis",
|
|
402
426
|
"outposts",
|
|
403
427
|
"panorama",
|
|
428
|
+
"partnercentral-selling",
|
|
404
429
|
"payment-cryptography",
|
|
405
430
|
"payment-cryptography-data",
|
|
406
431
|
"pca-connector-ad",
|
|
@@ -451,6 +476,7 @@ ServiceName = Literal[
|
|
|
451
476
|
"s3",
|
|
452
477
|
"s3control",
|
|
453
478
|
"s3outposts",
|
|
479
|
+
"s3tables",
|
|
454
480
|
"sagemaker",
|
|
455
481
|
"sagemaker-a2i-runtime",
|
|
456
482
|
"sagemaker-edge",
|
|
@@ -463,6 +489,7 @@ ServiceName = Literal[
|
|
|
463
489
|
"schemas",
|
|
464
490
|
"sdb",
|
|
465
491
|
"secretsmanager",
|
|
492
|
+
"security-ir",
|
|
466
493
|
"securityhub",
|
|
467
494
|
"securitylake",
|
|
468
495
|
"serverlessrepo",
|
|
@@ -548,6 +575,7 @@ PaginatorName = Literal[
|
|
|
548
575
|
"list_servers",
|
|
549
576
|
"list_tags_for_resource",
|
|
550
577
|
"list_users",
|
|
578
|
+
"list_web_apps",
|
|
551
579
|
"list_workflows",
|
|
552
580
|
]
|
|
553
581
|
WaiterName = Literal["server_offline", "server_online"]
|
|
@@ -563,6 +591,7 @@ RegionName = Literal[
|
|
|
563
591
|
"ap-southeast-2",
|
|
564
592
|
"ap-southeast-3",
|
|
565
593
|
"ap-southeast-4",
|
|
594
|
+
"ap-southeast-5",
|
|
566
595
|
"ca-central-1",
|
|
567
596
|
"ca-west-1",
|
|
568
597
|
"eu-central-1",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: AgreementStatusTypeType = "ACTIVE"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -32,6 +34,7 @@ __all__ = (
|
|
|
32
34
|
"EncryptionAlgType",
|
|
33
35
|
"EncryptionTypeType",
|
|
34
36
|
"EndpointTypeType",
|
|
37
|
+
"EnforceMessageSigningTypeType",
|
|
35
38
|
"ExecutionErrorTypeType",
|
|
36
39
|
"ExecutionStatusType",
|
|
37
40
|
"HomeDirectoryTypeType",
|
|
@@ -47,30 +50,33 @@ __all__ = (
|
|
|
47
50
|
"ListServersPaginatorName",
|
|
48
51
|
"ListTagsForResourcePaginatorName",
|
|
49
52
|
"ListUsersPaginatorName",
|
|
53
|
+
"ListWebAppsPaginatorName",
|
|
50
54
|
"ListWorkflowsPaginatorName",
|
|
51
55
|
"MapTypeType",
|
|
52
56
|
"MdnResponseType",
|
|
53
57
|
"MdnSigningAlgType",
|
|
54
58
|
"OverwriteExistingType",
|
|
59
|
+
"PaginatorName",
|
|
60
|
+
"PreserveContentTypeType",
|
|
61
|
+
"PreserveFilenameTypeType",
|
|
55
62
|
"ProfileTypeType",
|
|
56
63
|
"ProtocolType",
|
|
64
|
+
"RegionName",
|
|
65
|
+
"ResourceServiceName",
|
|
57
66
|
"SecurityPolicyProtocolType",
|
|
58
67
|
"SecurityPolicyResourceTypeType",
|
|
59
68
|
"ServerOfflineWaiterName",
|
|
60
69
|
"ServerOnlineWaiterName",
|
|
70
|
+
"ServiceName",
|
|
61
71
|
"SetStatOptionType",
|
|
62
72
|
"SftpAuthenticationMethodsType",
|
|
63
73
|
"SigningAlgType",
|
|
64
74
|
"StateType",
|
|
65
75
|
"TlsSessionResumptionModeType",
|
|
66
|
-
"TransferTableStatusType",
|
|
67
|
-
"WorkflowStepTypeType",
|
|
68
76
|
"TransferServiceName",
|
|
69
|
-
"
|
|
70
|
-
"ResourceServiceName",
|
|
71
|
-
"PaginatorName",
|
|
77
|
+
"TransferTableStatusType",
|
|
72
78
|
"WaiterName",
|
|
73
|
-
"
|
|
79
|
+
"WorkflowStepTypeType",
|
|
74
80
|
)
|
|
75
81
|
|
|
76
82
|
AgreementStatusTypeType = Literal["ACTIVE", "INACTIVE"]
|
|
@@ -85,6 +91,7 @@ DomainType = Literal["EFS", "S3"]
|
|
|
85
91
|
EncryptionAlgType = Literal["AES128_CBC", "AES192_CBC", "AES256_CBC", "DES_EDE3_CBC", "NONE"]
|
|
86
92
|
EncryptionTypeType = Literal["PGP"]
|
|
87
93
|
EndpointTypeType = Literal["PUBLIC", "VPC", "VPC_ENDPOINT"]
|
|
94
|
+
EnforceMessageSigningTypeType = Literal["DISABLED", "ENABLED"]
|
|
88
95
|
ExecutionErrorTypeType = Literal[
|
|
89
96
|
"ALREADY_EXISTS",
|
|
90
97
|
"BAD_REQUEST",
|
|
@@ -111,11 +118,14 @@ ListSecurityPoliciesPaginatorName = Literal["list_security_policies"]
|
|
|
111
118
|
ListServersPaginatorName = Literal["list_servers"]
|
|
112
119
|
ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
|
|
113
120
|
ListUsersPaginatorName = Literal["list_users"]
|
|
121
|
+
ListWebAppsPaginatorName = Literal["list_web_apps"]
|
|
114
122
|
ListWorkflowsPaginatorName = Literal["list_workflows"]
|
|
115
123
|
MapTypeType = Literal["DIRECTORY", "FILE"]
|
|
116
124
|
MdnResponseType = Literal["NONE", "SYNC"]
|
|
117
125
|
MdnSigningAlgType = Literal["DEFAULT", "NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
118
126
|
OverwriteExistingType = Literal["FALSE", "TRUE"]
|
|
127
|
+
PreserveContentTypeType = Literal["DISABLED", "ENABLED"]
|
|
128
|
+
PreserveFilenameTypeType = Literal["DISABLED", "ENABLED"]
|
|
119
129
|
ProfileTypeType = Literal["LOCAL", "PARTNER"]
|
|
120
130
|
ProtocolType = Literal["AS2", "FTP", "FTPS", "SFTP"]
|
|
121
131
|
SecurityPolicyProtocolType = Literal["FTPS", "SFTP"]
|
|
@@ -167,12 +177,17 @@ ServiceName = Literal[
|
|
|
167
177
|
"b2bi",
|
|
168
178
|
"backup",
|
|
169
179
|
"backup-gateway",
|
|
180
|
+
"backupsearch",
|
|
170
181
|
"batch",
|
|
171
182
|
"bcm-data-exports",
|
|
183
|
+
"bcm-pricing-calculator",
|
|
172
184
|
"bedrock",
|
|
173
185
|
"bedrock-agent",
|
|
174
186
|
"bedrock-agent-runtime",
|
|
187
|
+
"bedrock-data-automation",
|
|
188
|
+
"bedrock-data-automation-runtime",
|
|
175
189
|
"bedrock-runtime",
|
|
190
|
+
"billing",
|
|
176
191
|
"billingconductor",
|
|
177
192
|
"braket",
|
|
178
193
|
"budgets",
|
|
@@ -221,6 +236,7 @@ ServiceName = Literal[
|
|
|
221
236
|
"connect",
|
|
222
237
|
"connect-contact-lens",
|
|
223
238
|
"connectcampaigns",
|
|
239
|
+
"connectcampaignsv2",
|
|
224
240
|
"connectcases",
|
|
225
241
|
"connectparticipant",
|
|
226
242
|
"controlcatalog",
|
|
@@ -247,6 +263,7 @@ ServiceName = Literal[
|
|
|
247
263
|
"drs",
|
|
248
264
|
"ds",
|
|
249
265
|
"ds-data",
|
|
266
|
+
"dsql",
|
|
250
267
|
"dynamodb",
|
|
251
268
|
"dynamodbstreams",
|
|
252
269
|
"ebs",
|
|
@@ -282,6 +299,9 @@ ServiceName = Literal[
|
|
|
282
299
|
"freetier",
|
|
283
300
|
"fsx",
|
|
284
301
|
"gamelift",
|
|
302
|
+
"geo-maps",
|
|
303
|
+
"geo-places",
|
|
304
|
+
"geo-routes",
|
|
285
305
|
"glacier",
|
|
286
306
|
"globalaccelerator",
|
|
287
307
|
"glue",
|
|
@@ -300,6 +320,7 @@ ServiceName = Literal[
|
|
|
300
320
|
"inspector-scan",
|
|
301
321
|
"inspector2",
|
|
302
322
|
"internetmonitor",
|
|
323
|
+
"invoicing",
|
|
303
324
|
"iot",
|
|
304
325
|
"iot-data",
|
|
305
326
|
"iot-jobs-data",
|
|
@@ -386,10 +407,13 @@ ServiceName = Literal[
|
|
|
386
407
|
"neptune-graph",
|
|
387
408
|
"neptunedata",
|
|
388
409
|
"network-firewall",
|
|
410
|
+
"networkflowmonitor",
|
|
389
411
|
"networkmanager",
|
|
390
412
|
"networkmonitor",
|
|
391
|
-
"
|
|
413
|
+
"notifications",
|
|
414
|
+
"notificationscontacts",
|
|
392
415
|
"oam",
|
|
416
|
+
"observabilityadmin",
|
|
393
417
|
"omics",
|
|
394
418
|
"opensearch",
|
|
395
419
|
"opensearchserverless",
|
|
@@ -399,6 +423,7 @@ ServiceName = Literal[
|
|
|
399
423
|
"osis",
|
|
400
424
|
"outposts",
|
|
401
425
|
"panorama",
|
|
426
|
+
"partnercentral-selling",
|
|
402
427
|
"payment-cryptography",
|
|
403
428
|
"payment-cryptography-data",
|
|
404
429
|
"pca-connector-ad",
|
|
@@ -449,6 +474,7 @@ ServiceName = Literal[
|
|
|
449
474
|
"s3",
|
|
450
475
|
"s3control",
|
|
451
476
|
"s3outposts",
|
|
477
|
+
"s3tables",
|
|
452
478
|
"sagemaker",
|
|
453
479
|
"sagemaker-a2i-runtime",
|
|
454
480
|
"sagemaker-edge",
|
|
@@ -461,6 +487,7 @@ ServiceName = Literal[
|
|
|
461
487
|
"schemas",
|
|
462
488
|
"sdb",
|
|
463
489
|
"secretsmanager",
|
|
490
|
+
"security-ir",
|
|
464
491
|
"securityhub",
|
|
465
492
|
"securitylake",
|
|
466
493
|
"serverlessrepo",
|
|
@@ -546,6 +573,7 @@ PaginatorName = Literal[
|
|
|
546
573
|
"list_servers",
|
|
547
574
|
"list_tags_for_resource",
|
|
548
575
|
"list_users",
|
|
576
|
+
"list_web_apps",
|
|
549
577
|
"list_workflows",
|
|
550
578
|
]
|
|
551
579
|
WaiterName = Literal["server_offline", "server_online"]
|
|
@@ -561,6 +589,7 @@ RegionName = Literal[
|
|
|
561
589
|
"ap-southeast-2",
|
|
562
590
|
"ap-southeast-3",
|
|
563
591
|
"ap-southeast-4",
|
|
592
|
+
"ap-southeast-5",
|
|
564
593
|
"ca-central-1",
|
|
565
594
|
"ca-west-1",
|
|
566
595
|
"eu-central-1",
|
mypy_boto3_transfer/paginator.py
CHANGED
|
@@ -21,6 +21,7 @@ Usage::
|
|
|
21
21
|
ListServersPaginator,
|
|
22
22
|
ListTagsForResourcePaginator,
|
|
23
23
|
ListUsersPaginator,
|
|
24
|
+
ListWebAppsPaginator,
|
|
24
25
|
ListWorkflowsPaginator,
|
|
25
26
|
)
|
|
26
27
|
|
|
@@ -38,8 +39,11 @@ Usage::
|
|
|
38
39
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
39
40
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
40
41
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
42
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
41
43
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
42
44
|
```
|
|
45
|
+
|
|
46
|
+
Copyright 2024 Vlad Emelianov
|
|
43
47
|
"""
|
|
44
48
|
|
|
45
49
|
import sys
|
|
@@ -70,6 +74,8 @@ from .type_defs import (
|
|
|
70
74
|
ListTagsForResourceResponseTypeDef,
|
|
71
75
|
ListUsersRequestListUsersPaginateTypeDef,
|
|
72
76
|
ListUsersResponseTypeDef,
|
|
77
|
+
ListWebAppsRequestListWebAppsPaginateTypeDef,
|
|
78
|
+
ListWebAppsResponseTypeDef,
|
|
73
79
|
ListWorkflowsRequestListWorkflowsPaginateTypeDef,
|
|
74
80
|
ListWorkflowsResponseTypeDef,
|
|
75
81
|
)
|
|
@@ -92,6 +98,7 @@ __all__ = (
|
|
|
92
98
|
"ListServersPaginator",
|
|
93
99
|
"ListTagsForResourcePaginator",
|
|
94
100
|
"ListUsersPaginator",
|
|
101
|
+
"ListWebAppsPaginator",
|
|
95
102
|
"ListWorkflowsPaginator",
|
|
96
103
|
)
|
|
97
104
|
|
|
@@ -99,7 +106,7 @@ __all__ = (
|
|
|
99
106
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
100
107
|
|
|
101
108
|
|
|
102
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
109
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
103
110
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
104
111
|
"""
|
|
105
112
|
Proxy method to specify iterator item type.
|
|
@@ -108,7 +115,7 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
108
115
|
|
|
109
116
|
class ListAccessesPaginator(Paginator):
|
|
110
117
|
"""
|
|
111
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses)
|
|
118
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses)
|
|
112
119
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
113
120
|
"""
|
|
114
121
|
|
|
@@ -116,14 +123,14 @@ class ListAccessesPaginator(Paginator):
|
|
|
116
123
|
self, **kwargs: Unpack[ListAccessesRequestListAccessesPaginateTypeDef]
|
|
117
124
|
) -> _PageIterator[ListAccessesResponseTypeDef]:
|
|
118
125
|
"""
|
|
119
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses.paginate)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses.paginate)
|
|
120
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
121
128
|
"""
|
|
122
129
|
|
|
123
130
|
|
|
124
131
|
class ListAgreementsPaginator(Paginator):
|
|
125
132
|
"""
|
|
126
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements)
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements)
|
|
127
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
128
135
|
"""
|
|
129
136
|
|
|
@@ -131,14 +138,14 @@ class ListAgreementsPaginator(Paginator):
|
|
|
131
138
|
self, **kwargs: Unpack[ListAgreementsRequestListAgreementsPaginateTypeDef]
|
|
132
139
|
) -> _PageIterator[ListAgreementsResponseTypeDef]:
|
|
133
140
|
"""
|
|
134
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements.paginate)
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements.paginate)
|
|
135
142
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
136
143
|
"""
|
|
137
144
|
|
|
138
145
|
|
|
139
146
|
class ListCertificatesPaginator(Paginator):
|
|
140
147
|
"""
|
|
141
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates)
|
|
148
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates)
|
|
142
149
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
143
150
|
"""
|
|
144
151
|
|
|
@@ -146,14 +153,14 @@ class ListCertificatesPaginator(Paginator):
|
|
|
146
153
|
self, **kwargs: Unpack[ListCertificatesRequestListCertificatesPaginateTypeDef]
|
|
147
154
|
) -> _PageIterator[ListCertificatesResponseTypeDef]:
|
|
148
155
|
"""
|
|
149
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates.paginate)
|
|
156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates.paginate)
|
|
150
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
151
158
|
"""
|
|
152
159
|
|
|
153
160
|
|
|
154
161
|
class ListConnectorsPaginator(Paginator):
|
|
155
162
|
"""
|
|
156
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors)
|
|
163
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors)
|
|
157
164
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
158
165
|
"""
|
|
159
166
|
|
|
@@ -161,14 +168,14 @@ class ListConnectorsPaginator(Paginator):
|
|
|
161
168
|
self, **kwargs: Unpack[ListConnectorsRequestListConnectorsPaginateTypeDef]
|
|
162
169
|
) -> _PageIterator[ListConnectorsResponseTypeDef]:
|
|
163
170
|
"""
|
|
164
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors.paginate)
|
|
171
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors.paginate)
|
|
165
172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
166
173
|
"""
|
|
167
174
|
|
|
168
175
|
|
|
169
176
|
class ListExecutionsPaginator(Paginator):
|
|
170
177
|
"""
|
|
171
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions)
|
|
178
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions)
|
|
172
179
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
173
180
|
"""
|
|
174
181
|
|
|
@@ -176,14 +183,14 @@ class ListExecutionsPaginator(Paginator):
|
|
|
176
183
|
self, **kwargs: Unpack[ListExecutionsRequestListExecutionsPaginateTypeDef]
|
|
177
184
|
) -> _PageIterator[ListExecutionsResponseTypeDef]:
|
|
178
185
|
"""
|
|
179
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions.paginate)
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions.paginate)
|
|
180
187
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
181
188
|
"""
|
|
182
189
|
|
|
183
190
|
|
|
184
191
|
class ListFileTransferResultsPaginator(Paginator):
|
|
185
192
|
"""
|
|
186
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults)
|
|
193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults)
|
|
187
194
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
188
195
|
"""
|
|
189
196
|
|
|
@@ -191,14 +198,14 @@ class ListFileTransferResultsPaginator(Paginator):
|
|
|
191
198
|
self, **kwargs: Unpack[ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef]
|
|
192
199
|
) -> _PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
193
200
|
"""
|
|
194
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
201
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
195
202
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
196
203
|
"""
|
|
197
204
|
|
|
198
205
|
|
|
199
206
|
class ListProfilesPaginator(Paginator):
|
|
200
207
|
"""
|
|
201
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles)
|
|
208
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles)
|
|
202
209
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
203
210
|
"""
|
|
204
211
|
|
|
@@ -206,14 +213,14 @@ class ListProfilesPaginator(Paginator):
|
|
|
206
213
|
self, **kwargs: Unpack[ListProfilesRequestListProfilesPaginateTypeDef]
|
|
207
214
|
) -> _PageIterator[ListProfilesResponseTypeDef]:
|
|
208
215
|
"""
|
|
209
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles.paginate)
|
|
216
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles.paginate)
|
|
210
217
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
211
218
|
"""
|
|
212
219
|
|
|
213
220
|
|
|
214
221
|
class ListSecurityPoliciesPaginator(Paginator):
|
|
215
222
|
"""
|
|
216
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies)
|
|
223
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies)
|
|
217
224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
218
225
|
"""
|
|
219
226
|
|
|
@@ -221,14 +228,14 @@ class ListSecurityPoliciesPaginator(Paginator):
|
|
|
221
228
|
self, **kwargs: Unpack[ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef]
|
|
222
229
|
) -> _PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
223
230
|
"""
|
|
224
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
225
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
226
233
|
"""
|
|
227
234
|
|
|
228
235
|
|
|
229
236
|
class ListServersPaginator(Paginator):
|
|
230
237
|
"""
|
|
231
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers)
|
|
238
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers)
|
|
232
239
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
233
240
|
"""
|
|
234
241
|
|
|
@@ -236,14 +243,14 @@ class ListServersPaginator(Paginator):
|
|
|
236
243
|
self, **kwargs: Unpack[ListServersRequestListServersPaginateTypeDef]
|
|
237
244
|
) -> _PageIterator[ListServersResponseTypeDef]:
|
|
238
245
|
"""
|
|
239
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers.paginate)
|
|
246
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers.paginate)
|
|
240
247
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
241
248
|
"""
|
|
242
249
|
|
|
243
250
|
|
|
244
251
|
class ListTagsForResourcePaginator(Paginator):
|
|
245
252
|
"""
|
|
246
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource)
|
|
253
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource)
|
|
247
254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
248
255
|
"""
|
|
249
256
|
|
|
@@ -251,14 +258,14 @@ class ListTagsForResourcePaginator(Paginator):
|
|
|
251
258
|
self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
|
|
252
259
|
) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
253
260
|
"""
|
|
254
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
261
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
255
262
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
256
263
|
"""
|
|
257
264
|
|
|
258
265
|
|
|
259
266
|
class ListUsersPaginator(Paginator):
|
|
260
267
|
"""
|
|
261
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers)
|
|
268
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers)
|
|
262
269
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
263
270
|
"""
|
|
264
271
|
|
|
@@ -266,14 +273,29 @@ class ListUsersPaginator(Paginator):
|
|
|
266
273
|
self, **kwargs: Unpack[ListUsersRequestListUsersPaginateTypeDef]
|
|
267
274
|
) -> _PageIterator[ListUsersResponseTypeDef]:
|
|
268
275
|
"""
|
|
269
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers.paginate)
|
|
276
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers.paginate)
|
|
270
277
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
271
278
|
"""
|
|
272
279
|
|
|
273
280
|
|
|
281
|
+
class ListWebAppsPaginator(Paginator):
|
|
282
|
+
"""
|
|
283
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps)
|
|
284
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
285
|
+
"""
|
|
286
|
+
|
|
287
|
+
def paginate(
|
|
288
|
+
self, **kwargs: Unpack[ListWebAppsRequestListWebAppsPaginateTypeDef]
|
|
289
|
+
) -> _PageIterator[ListWebAppsResponseTypeDef]:
|
|
290
|
+
"""
|
|
291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps.paginate)
|
|
292
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
|
|
274
296
|
class ListWorkflowsPaginator(Paginator):
|
|
275
297
|
"""
|
|
276
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows)
|
|
298
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows)
|
|
277
299
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
278
300
|
"""
|
|
279
301
|
|
|
@@ -281,6 +303,6 @@ class ListWorkflowsPaginator(Paginator):
|
|
|
281
303
|
self, **kwargs: Unpack[ListWorkflowsRequestListWorkflowsPaginateTypeDef]
|
|
282
304
|
) -> _PageIterator[ListWorkflowsResponseTypeDef]:
|
|
283
305
|
"""
|
|
284
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
306
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
285
307
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
286
308
|
"""
|