mypy-boto3-transfer 1.35.0__py3-none-any.whl → 1.35.72__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 +11 -0
- mypy_boto3_transfer/__init__.pyi +10 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +467 -402
- mypy_boto3_transfer/client.pyi +466 -402
- mypy_boto3_transfer/literals.py +35 -8
- mypy_boto3_transfer/literals.pyi +33 -8
- mypy_boto3_transfer/paginator.py +95 -36
- mypy_boto3_transfer/paginator.pyi +89 -47
- mypy_boto3_transfer/type_defs.py +1477 -1618
- mypy_boto3_transfer/type_defs.pyi +1269 -1621
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +20 -7
- mypy_boto3_transfer/waiter.pyi +19 -9
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/METADATA +68 -22
- mypy_boto3_transfer-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.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
|
|
@@ -19,6 +21,7 @@ if sys.version_info >= (3, 12):
|
|
|
19
21
|
else:
|
|
20
22
|
from typing_extensions import Literal
|
|
21
23
|
|
|
24
|
+
|
|
22
25
|
__all__ = (
|
|
23
26
|
"AgreementStatusTypeType",
|
|
24
27
|
"As2TransportType",
|
|
@@ -41,36 +44,40 @@ __all__ = (
|
|
|
41
44
|
"ListCertificatesPaginatorName",
|
|
42
45
|
"ListConnectorsPaginatorName",
|
|
43
46
|
"ListExecutionsPaginatorName",
|
|
47
|
+
"ListFileTransferResultsPaginatorName",
|
|
44
48
|
"ListProfilesPaginatorName",
|
|
45
49
|
"ListSecurityPoliciesPaginatorName",
|
|
46
50
|
"ListServersPaginatorName",
|
|
47
51
|
"ListTagsForResourcePaginatorName",
|
|
48
52
|
"ListUsersPaginatorName",
|
|
53
|
+
"ListWebAppsPaginatorName",
|
|
49
54
|
"ListWorkflowsPaginatorName",
|
|
50
55
|
"MapTypeType",
|
|
51
56
|
"MdnResponseType",
|
|
52
57
|
"MdnSigningAlgType",
|
|
53
58
|
"OverwriteExistingType",
|
|
59
|
+
"PaginatorName",
|
|
54
60
|
"ProfileTypeType",
|
|
55
61
|
"ProtocolType",
|
|
62
|
+
"RegionName",
|
|
63
|
+
"ResourceServiceName",
|
|
56
64
|
"SecurityPolicyProtocolType",
|
|
57
65
|
"SecurityPolicyResourceTypeType",
|
|
58
66
|
"ServerOfflineWaiterName",
|
|
59
67
|
"ServerOnlineWaiterName",
|
|
68
|
+
"ServiceName",
|
|
60
69
|
"SetStatOptionType",
|
|
61
70
|
"SftpAuthenticationMethodsType",
|
|
62
71
|
"SigningAlgType",
|
|
63
72
|
"StateType",
|
|
64
73
|
"TlsSessionResumptionModeType",
|
|
65
|
-
"WorkflowStepTypeType",
|
|
66
74
|
"TransferServiceName",
|
|
67
|
-
"
|
|
68
|
-
"ResourceServiceName",
|
|
69
|
-
"PaginatorName",
|
|
75
|
+
"TransferTableStatusType",
|
|
70
76
|
"WaiterName",
|
|
71
|
-
"
|
|
77
|
+
"WorkflowStepTypeType",
|
|
72
78
|
)
|
|
73
79
|
|
|
80
|
+
|
|
74
81
|
AgreementStatusTypeType = Literal["ACTIVE", "INACTIVE"]
|
|
75
82
|
As2TransportType = Literal["HTTP"]
|
|
76
83
|
CertificateStatusTypeType = Literal["ACTIVE", "INACTIVE", "PENDING_ROTATION"]
|
|
@@ -103,11 +110,13 @@ ListAgreementsPaginatorName = Literal["list_agreements"]
|
|
|
103
110
|
ListCertificatesPaginatorName = Literal["list_certificates"]
|
|
104
111
|
ListConnectorsPaginatorName = Literal["list_connectors"]
|
|
105
112
|
ListExecutionsPaginatorName = Literal["list_executions"]
|
|
113
|
+
ListFileTransferResultsPaginatorName = Literal["list_file_transfer_results"]
|
|
106
114
|
ListProfilesPaginatorName = Literal["list_profiles"]
|
|
107
115
|
ListSecurityPoliciesPaginatorName = Literal["list_security_policies"]
|
|
108
116
|
ListServersPaginatorName = Literal["list_servers"]
|
|
109
117
|
ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
|
|
110
118
|
ListUsersPaginatorName = Literal["list_users"]
|
|
119
|
+
ListWebAppsPaginatorName = Literal["list_web_apps"]
|
|
111
120
|
ListWorkflowsPaginatorName = Literal["list_workflows"]
|
|
112
121
|
MapTypeType = Literal["DIRECTORY", "FILE"]
|
|
113
122
|
MdnResponseType = Literal["NONE", "SYNC"]
|
|
@@ -126,6 +135,7 @@ SftpAuthenticationMethodsType = Literal[
|
|
|
126
135
|
SigningAlgType = Literal["NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
127
136
|
StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING", "STOP_FAILED"]
|
|
128
137
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
138
|
+
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
129
139
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
130
140
|
TransferServiceName = Literal["transfer"]
|
|
131
141
|
ServiceName = Literal[
|
|
@@ -165,10 +175,12 @@ ServiceName = Literal[
|
|
|
165
175
|
"backup-gateway",
|
|
166
176
|
"batch",
|
|
167
177
|
"bcm-data-exports",
|
|
178
|
+
"bcm-pricing-calculator",
|
|
168
179
|
"bedrock",
|
|
169
180
|
"bedrock-agent",
|
|
170
181
|
"bedrock-agent-runtime",
|
|
171
182
|
"bedrock-runtime",
|
|
183
|
+
"billing",
|
|
172
184
|
"billingconductor",
|
|
173
185
|
"braket",
|
|
174
186
|
"budgets",
|
|
@@ -205,7 +217,6 @@ ServiceName = Literal[
|
|
|
205
217
|
"codeguru-security",
|
|
206
218
|
"codeguruprofiler",
|
|
207
219
|
"codepipeline",
|
|
208
|
-
"codestar",
|
|
209
220
|
"codestar-connections",
|
|
210
221
|
"codestar-notifications",
|
|
211
222
|
"cognito-identity",
|
|
@@ -218,6 +229,7 @@ ServiceName = Literal[
|
|
|
218
229
|
"connect",
|
|
219
230
|
"connect-contact-lens",
|
|
220
231
|
"connectcampaigns",
|
|
232
|
+
"connectcampaignsv2",
|
|
221
233
|
"connectcases",
|
|
222
234
|
"connectparticipant",
|
|
223
235
|
"controlcatalog",
|
|
@@ -243,6 +255,7 @@ ServiceName = Literal[
|
|
|
243
255
|
"docdb-elastic",
|
|
244
256
|
"drs",
|
|
245
257
|
"ds",
|
|
258
|
+
"ds-data",
|
|
246
259
|
"dynamodb",
|
|
247
260
|
"dynamodbstreams",
|
|
248
261
|
"ebs",
|
|
@@ -278,6 +291,9 @@ ServiceName = Literal[
|
|
|
278
291
|
"freetier",
|
|
279
292
|
"fsx",
|
|
280
293
|
"gamelift",
|
|
294
|
+
"geo-maps",
|
|
295
|
+
"geo-places",
|
|
296
|
+
"geo-routes",
|
|
281
297
|
"glacier",
|
|
282
298
|
"globalaccelerator",
|
|
283
299
|
"glue",
|
|
@@ -296,6 +312,7 @@ ServiceName = Literal[
|
|
|
296
312
|
"inspector-scan",
|
|
297
313
|
"inspector2",
|
|
298
314
|
"internetmonitor",
|
|
315
|
+
"invoicing",
|
|
299
316
|
"iot",
|
|
300
317
|
"iot-data",
|
|
301
318
|
"iot-jobs-data",
|
|
@@ -355,6 +372,7 @@ ServiceName = Literal[
|
|
|
355
372
|
"marketplace-catalog",
|
|
356
373
|
"marketplace-deployment",
|
|
357
374
|
"marketplace-entitlement",
|
|
375
|
+
"marketplace-reporting",
|
|
358
376
|
"marketplacecommerceanalytics",
|
|
359
377
|
"mediaconnect",
|
|
360
378
|
"mediaconvert",
|
|
@@ -381,10 +399,13 @@ ServiceName = Literal[
|
|
|
381
399
|
"neptune-graph",
|
|
382
400
|
"neptunedata",
|
|
383
401
|
"network-firewall",
|
|
402
|
+
"networkflowmonitor",
|
|
384
403
|
"networkmanager",
|
|
385
404
|
"networkmonitor",
|
|
386
|
-
"
|
|
405
|
+
"notifications",
|
|
406
|
+
"notificationscontacts",
|
|
387
407
|
"oam",
|
|
408
|
+
"observabilityadmin",
|
|
388
409
|
"omics",
|
|
389
410
|
"opensearch",
|
|
390
411
|
"opensearchserverless",
|
|
@@ -394,10 +415,12 @@ ServiceName = Literal[
|
|
|
394
415
|
"osis",
|
|
395
416
|
"outposts",
|
|
396
417
|
"panorama",
|
|
418
|
+
"partnercentral-selling",
|
|
397
419
|
"payment-cryptography",
|
|
398
420
|
"payment-cryptography-data",
|
|
399
421
|
"pca-connector-ad",
|
|
400
422
|
"pca-connector-scep",
|
|
423
|
+
"pcs",
|
|
401
424
|
"personalize",
|
|
402
425
|
"personalize-events",
|
|
403
426
|
"personalize-runtime",
|
|
@@ -455,6 +478,7 @@ ServiceName = Literal[
|
|
|
455
478
|
"schemas",
|
|
456
479
|
"sdb",
|
|
457
480
|
"secretsmanager",
|
|
481
|
+
"security-ir",
|
|
458
482
|
"securityhub",
|
|
459
483
|
"securitylake",
|
|
460
484
|
"serverlessrepo",
|
|
@@ -472,6 +496,7 @@ ServiceName = Literal[
|
|
|
472
496
|
"snow-device-management",
|
|
473
497
|
"snowball",
|
|
474
498
|
"sns",
|
|
499
|
+
"socialmessaging",
|
|
475
500
|
"sqs",
|
|
476
501
|
"ssm",
|
|
477
502
|
"ssm-contacts",
|
|
@@ -508,7 +533,6 @@ ServiceName = Literal[
|
|
|
508
533
|
"wellarchitected",
|
|
509
534
|
"wisdom",
|
|
510
535
|
"workdocs",
|
|
511
|
-
"worklink",
|
|
512
536
|
"workmail",
|
|
513
537
|
"workmailmessageflow",
|
|
514
538
|
"workspaces",
|
|
@@ -534,11 +558,13 @@ PaginatorName = Literal[
|
|
|
534
558
|
"list_certificates",
|
|
535
559
|
"list_connectors",
|
|
536
560
|
"list_executions",
|
|
561
|
+
"list_file_transfer_results",
|
|
537
562
|
"list_profiles",
|
|
538
563
|
"list_security_policies",
|
|
539
564
|
"list_servers",
|
|
540
565
|
"list_tags_for_resource",
|
|
541
566
|
"list_users",
|
|
567
|
+
"list_web_apps",
|
|
542
568
|
"list_workflows",
|
|
543
569
|
]
|
|
544
570
|
WaiterName = Literal["server_offline", "server_online"]
|
|
@@ -554,6 +580,7 @@ RegionName = Literal[
|
|
|
554
580
|
"ap-southeast-2",
|
|
555
581
|
"ap-southeast-3",
|
|
556
582
|
"ap-southeast-4",
|
|
583
|
+
"ap-southeast-5",
|
|
557
584
|
"ca-central-1",
|
|
558
585
|
"ca-west-1",
|
|
559
586
|
"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
|
|
@@ -41,34 +43,37 @@ __all__ = (
|
|
|
41
43
|
"ListCertificatesPaginatorName",
|
|
42
44
|
"ListConnectorsPaginatorName",
|
|
43
45
|
"ListExecutionsPaginatorName",
|
|
46
|
+
"ListFileTransferResultsPaginatorName",
|
|
44
47
|
"ListProfilesPaginatorName",
|
|
45
48
|
"ListSecurityPoliciesPaginatorName",
|
|
46
49
|
"ListServersPaginatorName",
|
|
47
50
|
"ListTagsForResourcePaginatorName",
|
|
48
51
|
"ListUsersPaginatorName",
|
|
52
|
+
"ListWebAppsPaginatorName",
|
|
49
53
|
"ListWorkflowsPaginatorName",
|
|
50
54
|
"MapTypeType",
|
|
51
55
|
"MdnResponseType",
|
|
52
56
|
"MdnSigningAlgType",
|
|
53
57
|
"OverwriteExistingType",
|
|
58
|
+
"PaginatorName",
|
|
54
59
|
"ProfileTypeType",
|
|
55
60
|
"ProtocolType",
|
|
61
|
+
"RegionName",
|
|
62
|
+
"ResourceServiceName",
|
|
56
63
|
"SecurityPolicyProtocolType",
|
|
57
64
|
"SecurityPolicyResourceTypeType",
|
|
58
65
|
"ServerOfflineWaiterName",
|
|
59
66
|
"ServerOnlineWaiterName",
|
|
67
|
+
"ServiceName",
|
|
60
68
|
"SetStatOptionType",
|
|
61
69
|
"SftpAuthenticationMethodsType",
|
|
62
70
|
"SigningAlgType",
|
|
63
71
|
"StateType",
|
|
64
72
|
"TlsSessionResumptionModeType",
|
|
65
|
-
"WorkflowStepTypeType",
|
|
66
73
|
"TransferServiceName",
|
|
67
|
-
"
|
|
68
|
-
"ResourceServiceName",
|
|
69
|
-
"PaginatorName",
|
|
74
|
+
"TransferTableStatusType",
|
|
70
75
|
"WaiterName",
|
|
71
|
-
"
|
|
76
|
+
"WorkflowStepTypeType",
|
|
72
77
|
)
|
|
73
78
|
|
|
74
79
|
AgreementStatusTypeType = Literal["ACTIVE", "INACTIVE"]
|
|
@@ -103,11 +108,13 @@ ListAgreementsPaginatorName = Literal["list_agreements"]
|
|
|
103
108
|
ListCertificatesPaginatorName = Literal["list_certificates"]
|
|
104
109
|
ListConnectorsPaginatorName = Literal["list_connectors"]
|
|
105
110
|
ListExecutionsPaginatorName = Literal["list_executions"]
|
|
111
|
+
ListFileTransferResultsPaginatorName = Literal["list_file_transfer_results"]
|
|
106
112
|
ListProfilesPaginatorName = Literal["list_profiles"]
|
|
107
113
|
ListSecurityPoliciesPaginatorName = Literal["list_security_policies"]
|
|
108
114
|
ListServersPaginatorName = Literal["list_servers"]
|
|
109
115
|
ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
|
|
110
116
|
ListUsersPaginatorName = Literal["list_users"]
|
|
117
|
+
ListWebAppsPaginatorName = Literal["list_web_apps"]
|
|
111
118
|
ListWorkflowsPaginatorName = Literal["list_workflows"]
|
|
112
119
|
MapTypeType = Literal["DIRECTORY", "FILE"]
|
|
113
120
|
MdnResponseType = Literal["NONE", "SYNC"]
|
|
@@ -126,6 +133,7 @@ SftpAuthenticationMethodsType = Literal[
|
|
|
126
133
|
SigningAlgType = Literal["NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
127
134
|
StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING", "STOP_FAILED"]
|
|
128
135
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
136
|
+
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
129
137
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
130
138
|
TransferServiceName = Literal["transfer"]
|
|
131
139
|
ServiceName = Literal[
|
|
@@ -165,10 +173,12 @@ ServiceName = Literal[
|
|
|
165
173
|
"backup-gateway",
|
|
166
174
|
"batch",
|
|
167
175
|
"bcm-data-exports",
|
|
176
|
+
"bcm-pricing-calculator",
|
|
168
177
|
"bedrock",
|
|
169
178
|
"bedrock-agent",
|
|
170
179
|
"bedrock-agent-runtime",
|
|
171
180
|
"bedrock-runtime",
|
|
181
|
+
"billing",
|
|
172
182
|
"billingconductor",
|
|
173
183
|
"braket",
|
|
174
184
|
"budgets",
|
|
@@ -205,7 +215,6 @@ ServiceName = Literal[
|
|
|
205
215
|
"codeguru-security",
|
|
206
216
|
"codeguruprofiler",
|
|
207
217
|
"codepipeline",
|
|
208
|
-
"codestar",
|
|
209
218
|
"codestar-connections",
|
|
210
219
|
"codestar-notifications",
|
|
211
220
|
"cognito-identity",
|
|
@@ -218,6 +227,7 @@ ServiceName = Literal[
|
|
|
218
227
|
"connect",
|
|
219
228
|
"connect-contact-lens",
|
|
220
229
|
"connectcampaigns",
|
|
230
|
+
"connectcampaignsv2",
|
|
221
231
|
"connectcases",
|
|
222
232
|
"connectparticipant",
|
|
223
233
|
"controlcatalog",
|
|
@@ -243,6 +253,7 @@ ServiceName = Literal[
|
|
|
243
253
|
"docdb-elastic",
|
|
244
254
|
"drs",
|
|
245
255
|
"ds",
|
|
256
|
+
"ds-data",
|
|
246
257
|
"dynamodb",
|
|
247
258
|
"dynamodbstreams",
|
|
248
259
|
"ebs",
|
|
@@ -278,6 +289,9 @@ ServiceName = Literal[
|
|
|
278
289
|
"freetier",
|
|
279
290
|
"fsx",
|
|
280
291
|
"gamelift",
|
|
292
|
+
"geo-maps",
|
|
293
|
+
"geo-places",
|
|
294
|
+
"geo-routes",
|
|
281
295
|
"glacier",
|
|
282
296
|
"globalaccelerator",
|
|
283
297
|
"glue",
|
|
@@ -296,6 +310,7 @@ ServiceName = Literal[
|
|
|
296
310
|
"inspector-scan",
|
|
297
311
|
"inspector2",
|
|
298
312
|
"internetmonitor",
|
|
313
|
+
"invoicing",
|
|
299
314
|
"iot",
|
|
300
315
|
"iot-data",
|
|
301
316
|
"iot-jobs-data",
|
|
@@ -355,6 +370,7 @@ ServiceName = Literal[
|
|
|
355
370
|
"marketplace-catalog",
|
|
356
371
|
"marketplace-deployment",
|
|
357
372
|
"marketplace-entitlement",
|
|
373
|
+
"marketplace-reporting",
|
|
358
374
|
"marketplacecommerceanalytics",
|
|
359
375
|
"mediaconnect",
|
|
360
376
|
"mediaconvert",
|
|
@@ -381,10 +397,13 @@ ServiceName = Literal[
|
|
|
381
397
|
"neptune-graph",
|
|
382
398
|
"neptunedata",
|
|
383
399
|
"network-firewall",
|
|
400
|
+
"networkflowmonitor",
|
|
384
401
|
"networkmanager",
|
|
385
402
|
"networkmonitor",
|
|
386
|
-
"
|
|
403
|
+
"notifications",
|
|
404
|
+
"notificationscontacts",
|
|
387
405
|
"oam",
|
|
406
|
+
"observabilityadmin",
|
|
388
407
|
"omics",
|
|
389
408
|
"opensearch",
|
|
390
409
|
"opensearchserverless",
|
|
@@ -394,10 +413,12 @@ ServiceName = Literal[
|
|
|
394
413
|
"osis",
|
|
395
414
|
"outposts",
|
|
396
415
|
"panorama",
|
|
416
|
+
"partnercentral-selling",
|
|
397
417
|
"payment-cryptography",
|
|
398
418
|
"payment-cryptography-data",
|
|
399
419
|
"pca-connector-ad",
|
|
400
420
|
"pca-connector-scep",
|
|
421
|
+
"pcs",
|
|
401
422
|
"personalize",
|
|
402
423
|
"personalize-events",
|
|
403
424
|
"personalize-runtime",
|
|
@@ -455,6 +476,7 @@ ServiceName = Literal[
|
|
|
455
476
|
"schemas",
|
|
456
477
|
"sdb",
|
|
457
478
|
"secretsmanager",
|
|
479
|
+
"security-ir",
|
|
458
480
|
"securityhub",
|
|
459
481
|
"securitylake",
|
|
460
482
|
"serverlessrepo",
|
|
@@ -472,6 +494,7 @@ ServiceName = Literal[
|
|
|
472
494
|
"snow-device-management",
|
|
473
495
|
"snowball",
|
|
474
496
|
"sns",
|
|
497
|
+
"socialmessaging",
|
|
475
498
|
"sqs",
|
|
476
499
|
"ssm",
|
|
477
500
|
"ssm-contacts",
|
|
@@ -508,7 +531,6 @@ ServiceName = Literal[
|
|
|
508
531
|
"wellarchitected",
|
|
509
532
|
"wisdom",
|
|
510
533
|
"workdocs",
|
|
511
|
-
"worklink",
|
|
512
534
|
"workmail",
|
|
513
535
|
"workmailmessageflow",
|
|
514
536
|
"workspaces",
|
|
@@ -534,11 +556,13 @@ PaginatorName = Literal[
|
|
|
534
556
|
"list_certificates",
|
|
535
557
|
"list_connectors",
|
|
536
558
|
"list_executions",
|
|
559
|
+
"list_file_transfer_results",
|
|
537
560
|
"list_profiles",
|
|
538
561
|
"list_security_policies",
|
|
539
562
|
"list_servers",
|
|
540
563
|
"list_tags_for_resource",
|
|
541
564
|
"list_users",
|
|
565
|
+
"list_web_apps",
|
|
542
566
|
"list_workflows",
|
|
543
567
|
]
|
|
544
568
|
WaiterName = Literal["server_offline", "server_online"]
|
|
@@ -554,6 +578,7 @@ RegionName = Literal[
|
|
|
554
578
|
"ap-southeast-2",
|
|
555
579
|
"ap-southeast-3",
|
|
556
580
|
"ap-southeast-4",
|
|
581
|
+
"ap-southeast-5",
|
|
557
582
|
"ca-central-1",
|
|
558
583
|
"ca-west-1",
|
|
559
584
|
"eu-central-1",
|