mypy-boto3-batch 1.29.0__py3-none-any.whl → 1.34.59__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_batch/__init__.py +0 -1
- mypy_boto3_batch/__main__.py +8 -7
- mypy_boto3_batch/client.py +17 -11
- mypy_boto3_batch/client.pyi +17 -10
- mypy_boto3_batch/literals.py +27 -3
- mypy_boto3_batch/literals.pyi +27 -1
- mypy_boto3_batch/paginator.py +3 -4
- mypy_boto3_batch/paginator.pyi +3 -3
- mypy_boto3_batch/type_defs.py +227 -59
- mypy_boto3_batch/type_defs.pyi +227 -58
- mypy_boto3_batch/version.py +1 -1
- {mypy_boto3_batch-1.29.0.dist-info → mypy_boto3_batch-1.34.59.dist-info}/LICENSE +1 -1
- {mypy_boto3_batch-1.29.0.dist-info → mypy_boto3_batch-1.34.59.dist-info}/METADATA +6 -7
- mypy_boto3_batch-1.34.59.dist-info/RECORD +18 -0
- {mypy_boto3_batch-1.29.0.dist-info → mypy_boto3_batch-1.34.59.dist-info}/WHEEL +1 -1
- mypy_boto3_batch-1.29.0.dist-info/RECORD +0 -18
- {mypy_boto3_batch-1.29.0.dist-info → mypy_boto3_batch-1.34.59.dist-info}/top_level.txt +0 -0
mypy_boto3_batch/__init__.py
CHANGED
mypy_boto3_batch/__main__.py
CHANGED
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.Batch 1.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.Batch 1.34.59\n"
|
|
14
|
+
"Version: 1.34.59\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.
|
|
27
|
+
print("1.34.59")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
mypy_boto3_batch/client.py
CHANGED
|
@@ -49,11 +49,14 @@ from .type_defs import (
|
|
|
49
49
|
DescribeJobQueuesResponseTypeDef,
|
|
50
50
|
DescribeJobsResponseTypeDef,
|
|
51
51
|
DescribeSchedulingPoliciesResponseTypeDef,
|
|
52
|
+
EcsPropertiesOverrideTypeDef,
|
|
53
|
+
EcsPropertiesTypeDef,
|
|
52
54
|
EksConfigurationTypeDef,
|
|
53
55
|
EksPropertiesOverrideTypeDef,
|
|
54
56
|
EksPropertiesTypeDef,
|
|
55
57
|
FairsharePolicyTypeDef,
|
|
56
58
|
JobDependencyTypeDef,
|
|
59
|
+
JobStateTimeLimitActionTypeDef,
|
|
57
60
|
JobTimeoutTypeDef,
|
|
58
61
|
KeyValuesPairTypeDef,
|
|
59
62
|
ListJobsResponseTypeDef,
|
|
@@ -74,7 +77,6 @@ if sys.version_info >= (3, 12):
|
|
|
74
77
|
else:
|
|
75
78
|
from typing_extensions import Literal
|
|
76
79
|
|
|
77
|
-
|
|
78
80
|
__all__ = ("BatchClient",)
|
|
79
81
|
|
|
80
82
|
|
|
@@ -143,7 +145,7 @@ class BatchClient(BaseClient):
|
|
|
143
145
|
computeResources: ComputeResourceTypeDef = ...,
|
|
144
146
|
serviceRole: str = ...,
|
|
145
147
|
tags: Mapping[str, str] = ...,
|
|
146
|
-
eksConfiguration: EksConfigurationTypeDef =
|
|
148
|
+
eksConfiguration: EksConfigurationTypeDef = ...,
|
|
147
149
|
) -> CreateComputeEnvironmentResponseTypeDef:
|
|
148
150
|
"""
|
|
149
151
|
Creates an Batch compute environment.
|
|
@@ -160,7 +162,8 @@ class BatchClient(BaseClient):
|
|
|
160
162
|
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef],
|
|
161
163
|
state: JQStateType = ...,
|
|
162
164
|
schedulingPolicyArn: str = ...,
|
|
163
|
-
tags: Mapping[str, str] =
|
|
165
|
+
tags: Mapping[str, str] = ...,
|
|
166
|
+
jobStateTimeLimitActions: Sequence[JobStateTimeLimitActionTypeDef] = ...,
|
|
164
167
|
) -> CreateJobQueueResponseTypeDef:
|
|
165
168
|
"""
|
|
166
169
|
Creates an Batch job queue.
|
|
@@ -174,7 +177,7 @@ class BatchClient(BaseClient):
|
|
|
174
177
|
*,
|
|
175
178
|
name: str,
|
|
176
179
|
fairsharePolicy: FairsharePolicyTypeDef = ...,
|
|
177
|
-
tags: Mapping[str, str] =
|
|
180
|
+
tags: Mapping[str, str] = ...,
|
|
178
181
|
) -> CreateSchedulingPolicyResponseTypeDef:
|
|
179
182
|
"""
|
|
180
183
|
Creates an Batch scheduling policy.
|
|
@@ -220,7 +223,7 @@ class BatchClient(BaseClient):
|
|
|
220
223
|
*,
|
|
221
224
|
computeEnvironments: Sequence[str] = ...,
|
|
222
225
|
maxResults: int = ...,
|
|
223
|
-
nextToken: str =
|
|
226
|
+
nextToken: str = ...,
|
|
224
227
|
) -> DescribeComputeEnvironmentsResponseTypeDef:
|
|
225
228
|
"""
|
|
226
229
|
Describes one or more of your compute environments.
|
|
@@ -236,7 +239,7 @@ class BatchClient(BaseClient):
|
|
|
236
239
|
maxResults: int = ...,
|
|
237
240
|
jobDefinitionName: str = ...,
|
|
238
241
|
status: str = ...,
|
|
239
|
-
nextToken: str =
|
|
242
|
+
nextToken: str = ...,
|
|
240
243
|
) -> DescribeJobDefinitionsResponseTypeDef:
|
|
241
244
|
"""
|
|
242
245
|
Describes a list of job definitions.
|
|
@@ -296,7 +299,7 @@ class BatchClient(BaseClient):
|
|
|
296
299
|
jobStatus: JobStatusType = ...,
|
|
297
300
|
maxResults: int = ...,
|
|
298
301
|
nextToken: str = ...,
|
|
299
|
-
filters: Sequence[KeyValuesPairTypeDef] =
|
|
302
|
+
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
300
303
|
) -> ListJobsResponseTypeDef:
|
|
301
304
|
"""
|
|
302
305
|
Returns a list of Batch jobs.
|
|
@@ -337,7 +340,8 @@ class BatchClient(BaseClient):
|
|
|
337
340
|
timeout: JobTimeoutTypeDef = ...,
|
|
338
341
|
tags: Mapping[str, str] = ...,
|
|
339
342
|
platformCapabilities: Sequence[PlatformCapabilityType] = ...,
|
|
340
|
-
eksProperties: EksPropertiesTypeDef =
|
|
343
|
+
eksProperties: EksPropertiesTypeDef = ...,
|
|
344
|
+
ecsProperties: EcsPropertiesTypeDef = ...,
|
|
341
345
|
) -> RegisterJobDefinitionResponseTypeDef:
|
|
342
346
|
"""
|
|
343
347
|
Registers an Batch job definition.
|
|
@@ -363,7 +367,8 @@ class BatchClient(BaseClient):
|
|
|
363
367
|
propagateTags: bool = ...,
|
|
364
368
|
timeout: JobTimeoutTypeDef = ...,
|
|
365
369
|
tags: Mapping[str, str] = ...,
|
|
366
|
-
eksPropertiesOverride: EksPropertiesOverrideTypeDef =
|
|
370
|
+
eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
|
|
371
|
+
ecsPropertiesOverride: EcsPropertiesOverrideTypeDef = ...,
|
|
367
372
|
) -> SubmitJobResponseTypeDef:
|
|
368
373
|
"""
|
|
369
374
|
Submits an Batch job from a job definition.
|
|
@@ -404,7 +409,7 @@ class BatchClient(BaseClient):
|
|
|
404
409
|
unmanagedvCpus: int = ...,
|
|
405
410
|
computeResources: ComputeResourceUpdateTypeDef = ...,
|
|
406
411
|
serviceRole: str = ...,
|
|
407
|
-
updatePolicy: UpdatePolicyTypeDef =
|
|
412
|
+
updatePolicy: UpdatePolicyTypeDef = ...,
|
|
408
413
|
) -> UpdateComputeEnvironmentResponseTypeDef:
|
|
409
414
|
"""
|
|
410
415
|
Updates an Batch compute environment.
|
|
@@ -420,7 +425,8 @@ class BatchClient(BaseClient):
|
|
|
420
425
|
state: JQStateType = ...,
|
|
421
426
|
schedulingPolicyArn: str = ...,
|
|
422
427
|
priority: int = ...,
|
|
423
|
-
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] =
|
|
428
|
+
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...,
|
|
429
|
+
jobStateTimeLimitActions: Sequence[JobStateTimeLimitActionTypeDef] = ...,
|
|
424
430
|
) -> UpdateJobQueueResponseTypeDef:
|
|
425
431
|
"""
|
|
426
432
|
Updates a job queue.
|
mypy_boto3_batch/client.pyi
CHANGED
|
@@ -49,11 +49,14 @@ from .type_defs import (
|
|
|
49
49
|
DescribeJobQueuesResponseTypeDef,
|
|
50
50
|
DescribeJobsResponseTypeDef,
|
|
51
51
|
DescribeSchedulingPoliciesResponseTypeDef,
|
|
52
|
+
EcsPropertiesOverrideTypeDef,
|
|
53
|
+
EcsPropertiesTypeDef,
|
|
52
54
|
EksConfigurationTypeDef,
|
|
53
55
|
EksPropertiesOverrideTypeDef,
|
|
54
56
|
EksPropertiesTypeDef,
|
|
55
57
|
FairsharePolicyTypeDef,
|
|
56
58
|
JobDependencyTypeDef,
|
|
59
|
+
JobStateTimeLimitActionTypeDef,
|
|
57
60
|
JobTimeoutTypeDef,
|
|
58
61
|
KeyValuesPairTypeDef,
|
|
59
62
|
ListJobsResponseTypeDef,
|
|
@@ -139,7 +142,7 @@ class BatchClient(BaseClient):
|
|
|
139
142
|
computeResources: ComputeResourceTypeDef = ...,
|
|
140
143
|
serviceRole: str = ...,
|
|
141
144
|
tags: Mapping[str, str] = ...,
|
|
142
|
-
eksConfiguration: EksConfigurationTypeDef =
|
|
145
|
+
eksConfiguration: EksConfigurationTypeDef = ...,
|
|
143
146
|
) -> CreateComputeEnvironmentResponseTypeDef:
|
|
144
147
|
"""
|
|
145
148
|
Creates an Batch compute environment.
|
|
@@ -156,7 +159,8 @@ class BatchClient(BaseClient):
|
|
|
156
159
|
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef],
|
|
157
160
|
state: JQStateType = ...,
|
|
158
161
|
schedulingPolicyArn: str = ...,
|
|
159
|
-
tags: Mapping[str, str] =
|
|
162
|
+
tags: Mapping[str, str] = ...,
|
|
163
|
+
jobStateTimeLimitActions: Sequence[JobStateTimeLimitActionTypeDef] = ...,
|
|
160
164
|
) -> CreateJobQueueResponseTypeDef:
|
|
161
165
|
"""
|
|
162
166
|
Creates an Batch job queue.
|
|
@@ -170,7 +174,7 @@ class BatchClient(BaseClient):
|
|
|
170
174
|
*,
|
|
171
175
|
name: str,
|
|
172
176
|
fairsharePolicy: FairsharePolicyTypeDef = ...,
|
|
173
|
-
tags: Mapping[str, str] =
|
|
177
|
+
tags: Mapping[str, str] = ...,
|
|
174
178
|
) -> CreateSchedulingPolicyResponseTypeDef:
|
|
175
179
|
"""
|
|
176
180
|
Creates an Batch scheduling policy.
|
|
@@ -216,7 +220,7 @@ class BatchClient(BaseClient):
|
|
|
216
220
|
*,
|
|
217
221
|
computeEnvironments: Sequence[str] = ...,
|
|
218
222
|
maxResults: int = ...,
|
|
219
|
-
nextToken: str =
|
|
223
|
+
nextToken: str = ...,
|
|
220
224
|
) -> DescribeComputeEnvironmentsResponseTypeDef:
|
|
221
225
|
"""
|
|
222
226
|
Describes one or more of your compute environments.
|
|
@@ -232,7 +236,7 @@ class BatchClient(BaseClient):
|
|
|
232
236
|
maxResults: int = ...,
|
|
233
237
|
jobDefinitionName: str = ...,
|
|
234
238
|
status: str = ...,
|
|
235
|
-
nextToken: str =
|
|
239
|
+
nextToken: str = ...,
|
|
236
240
|
) -> DescribeJobDefinitionsResponseTypeDef:
|
|
237
241
|
"""
|
|
238
242
|
Describes a list of job definitions.
|
|
@@ -292,7 +296,7 @@ class BatchClient(BaseClient):
|
|
|
292
296
|
jobStatus: JobStatusType = ...,
|
|
293
297
|
maxResults: int = ...,
|
|
294
298
|
nextToken: str = ...,
|
|
295
|
-
filters: Sequence[KeyValuesPairTypeDef] =
|
|
299
|
+
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
296
300
|
) -> ListJobsResponseTypeDef:
|
|
297
301
|
"""
|
|
298
302
|
Returns a list of Batch jobs.
|
|
@@ -333,7 +337,8 @@ class BatchClient(BaseClient):
|
|
|
333
337
|
timeout: JobTimeoutTypeDef = ...,
|
|
334
338
|
tags: Mapping[str, str] = ...,
|
|
335
339
|
platformCapabilities: Sequence[PlatformCapabilityType] = ...,
|
|
336
|
-
eksProperties: EksPropertiesTypeDef =
|
|
340
|
+
eksProperties: EksPropertiesTypeDef = ...,
|
|
341
|
+
ecsProperties: EcsPropertiesTypeDef = ...,
|
|
337
342
|
) -> RegisterJobDefinitionResponseTypeDef:
|
|
338
343
|
"""
|
|
339
344
|
Registers an Batch job definition.
|
|
@@ -359,7 +364,8 @@ class BatchClient(BaseClient):
|
|
|
359
364
|
propagateTags: bool = ...,
|
|
360
365
|
timeout: JobTimeoutTypeDef = ...,
|
|
361
366
|
tags: Mapping[str, str] = ...,
|
|
362
|
-
eksPropertiesOverride: EksPropertiesOverrideTypeDef =
|
|
367
|
+
eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
|
|
368
|
+
ecsPropertiesOverride: EcsPropertiesOverrideTypeDef = ...,
|
|
363
369
|
) -> SubmitJobResponseTypeDef:
|
|
364
370
|
"""
|
|
365
371
|
Submits an Batch job from a job definition.
|
|
@@ -400,7 +406,7 @@ class BatchClient(BaseClient):
|
|
|
400
406
|
unmanagedvCpus: int = ...,
|
|
401
407
|
computeResources: ComputeResourceUpdateTypeDef = ...,
|
|
402
408
|
serviceRole: str = ...,
|
|
403
|
-
updatePolicy: UpdatePolicyTypeDef =
|
|
409
|
+
updatePolicy: UpdatePolicyTypeDef = ...,
|
|
404
410
|
) -> UpdateComputeEnvironmentResponseTypeDef:
|
|
405
411
|
"""
|
|
406
412
|
Updates an Batch compute environment.
|
|
@@ -416,7 +422,8 @@ class BatchClient(BaseClient):
|
|
|
416
422
|
state: JQStateType = ...,
|
|
417
423
|
schedulingPolicyArn: str = ...,
|
|
418
424
|
priority: int = ...,
|
|
419
|
-
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] =
|
|
425
|
+
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...,
|
|
426
|
+
jobStateTimeLimitActions: Sequence[JobStateTimeLimitActionTypeDef] = ...,
|
|
420
427
|
) -> UpdateJobQueueResponseTypeDef:
|
|
421
428
|
"""
|
|
422
429
|
Updates a job queue.
|
mypy_boto3_batch/literals.py
CHANGED
|
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"ArrayJobDependencyType",
|
|
25
24
|
"AssignPublicIpType",
|
|
@@ -38,6 +37,8 @@ __all__ = (
|
|
|
38
37
|
"JQStateType",
|
|
39
38
|
"JQStatusType",
|
|
40
39
|
"JobDefinitionTypeType",
|
|
40
|
+
"JobStateTimeLimitActionsActionType",
|
|
41
|
+
"JobStateTimeLimitActionsStateType",
|
|
41
42
|
"JobStatusType",
|
|
42
43
|
"ListJobsPaginatorName",
|
|
43
44
|
"ListSchedulingPoliciesPaginatorName",
|
|
@@ -53,7 +54,6 @@ __all__ = (
|
|
|
53
54
|
"RegionName",
|
|
54
55
|
)
|
|
55
56
|
|
|
56
|
-
|
|
57
57
|
ArrayJobDependencyType = Literal["N_TO_N", "SEQUENTIAL"]
|
|
58
58
|
AssignPublicIpType = Literal["DISABLED", "ENABLED"]
|
|
59
59
|
CEStateType = Literal["DISABLED", "ENABLED"]
|
|
@@ -75,6 +75,8 @@ EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
|
75
75
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
76
76
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
77
77
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
78
|
+
JobStateTimeLimitActionsActionType = Literal["CANCEL"]
|
|
79
|
+
JobStateTimeLimitActionsStateType = Literal["RUNNABLE"]
|
|
78
80
|
JobStatusType = Literal[
|
|
79
81
|
"FAILED", "PENDING", "RUNNABLE", "RUNNING", "STARTING", "SUBMITTED", "SUCCEEDED"
|
|
80
82
|
]
|
|
@@ -112,20 +114,26 @@ ServiceName = Literal[
|
|
|
112
114
|
"appstream",
|
|
113
115
|
"appsync",
|
|
114
116
|
"arc-zonal-shift",
|
|
117
|
+
"artifact",
|
|
115
118
|
"athena",
|
|
116
119
|
"auditmanager",
|
|
117
120
|
"autoscaling",
|
|
118
121
|
"autoscaling-plans",
|
|
122
|
+
"b2bi",
|
|
119
123
|
"backup",
|
|
120
124
|
"backup-gateway",
|
|
121
125
|
"backupstorage",
|
|
122
126
|
"batch",
|
|
127
|
+
"bcm-data-exports",
|
|
123
128
|
"bedrock",
|
|
129
|
+
"bedrock-agent",
|
|
130
|
+
"bedrock-agent-runtime",
|
|
124
131
|
"bedrock-runtime",
|
|
125
132
|
"billingconductor",
|
|
126
133
|
"braket",
|
|
127
134
|
"budgets",
|
|
128
135
|
"ce",
|
|
136
|
+
"chatbot",
|
|
129
137
|
"chime",
|
|
130
138
|
"chime-sdk-identity",
|
|
131
139
|
"chime-sdk-media-pipelines",
|
|
@@ -133,11 +141,13 @@ ServiceName = Literal[
|
|
|
133
141
|
"chime-sdk-messaging",
|
|
134
142
|
"chime-sdk-voice",
|
|
135
143
|
"cleanrooms",
|
|
144
|
+
"cleanroomsml",
|
|
136
145
|
"cloud9",
|
|
137
146
|
"cloudcontrol",
|
|
138
147
|
"clouddirectory",
|
|
139
148
|
"cloudformation",
|
|
140
149
|
"cloudfront",
|
|
150
|
+
"cloudfront-keyvaluestore",
|
|
141
151
|
"cloudhsm",
|
|
142
152
|
"cloudhsmv2",
|
|
143
153
|
"cloudsearch",
|
|
@@ -170,6 +180,7 @@ ServiceName = Literal[
|
|
|
170
180
|
"connectcases",
|
|
171
181
|
"connectparticipant",
|
|
172
182
|
"controltower",
|
|
183
|
+
"cost-optimization-hub",
|
|
173
184
|
"cur",
|
|
174
185
|
"customer-profiles",
|
|
175
186
|
"databrew",
|
|
@@ -199,6 +210,7 @@ ServiceName = Literal[
|
|
|
199
210
|
"ecs",
|
|
200
211
|
"efs",
|
|
201
212
|
"eks",
|
|
213
|
+
"eks-auth",
|
|
202
214
|
"elastic-inference",
|
|
203
215
|
"elasticache",
|
|
204
216
|
"elasticbeanstalk",
|
|
@@ -220,6 +232,7 @@ ServiceName = Literal[
|
|
|
220
232
|
"forecast",
|
|
221
233
|
"forecastquery",
|
|
222
234
|
"frauddetector",
|
|
235
|
+
"freetier",
|
|
223
236
|
"fsx",
|
|
224
237
|
"gamelift",
|
|
225
238
|
"glacier",
|
|
@@ -238,6 +251,7 @@ ServiceName = Literal[
|
|
|
238
251
|
"imagebuilder",
|
|
239
252
|
"importexport",
|
|
240
253
|
"inspector",
|
|
254
|
+
"inspector-scan",
|
|
241
255
|
"inspector2",
|
|
242
256
|
"internetmonitor",
|
|
243
257
|
"iot",
|
|
@@ -292,11 +306,12 @@ ServiceName = Literal[
|
|
|
292
306
|
"lookoutvision",
|
|
293
307
|
"m2",
|
|
294
308
|
"machinelearning",
|
|
295
|
-
"macie",
|
|
296
309
|
"macie2",
|
|
297
310
|
"managedblockchain",
|
|
298
311
|
"managedblockchain-query",
|
|
312
|
+
"marketplace-agreement",
|
|
299
313
|
"marketplace-catalog",
|
|
314
|
+
"marketplace-deployment",
|
|
300
315
|
"marketplace-entitlement",
|
|
301
316
|
"marketplacecommerceanalytics",
|
|
302
317
|
"mediaconnect",
|
|
@@ -322,9 +337,11 @@ ServiceName = Literal[
|
|
|
322
337
|
"mturk",
|
|
323
338
|
"mwaa",
|
|
324
339
|
"neptune",
|
|
340
|
+
"neptune-graph",
|
|
325
341
|
"neptunedata",
|
|
326
342
|
"network-firewall",
|
|
327
343
|
"networkmanager",
|
|
344
|
+
"networkmonitor",
|
|
328
345
|
"nimble",
|
|
329
346
|
"oam",
|
|
330
347
|
"omics",
|
|
@@ -352,6 +369,8 @@ ServiceName = Literal[
|
|
|
352
369
|
"pricing",
|
|
353
370
|
"privatenetworks",
|
|
354
371
|
"proton",
|
|
372
|
+
"qbusiness",
|
|
373
|
+
"qconnect",
|
|
355
374
|
"qldb",
|
|
356
375
|
"qldb-session",
|
|
357
376
|
"quicksight",
|
|
@@ -363,6 +382,7 @@ ServiceName = Literal[
|
|
|
363
382
|
"redshift-data",
|
|
364
383
|
"redshift-serverless",
|
|
365
384
|
"rekognition",
|
|
385
|
+
"repostspace",
|
|
366
386
|
"resiliencehub",
|
|
367
387
|
"resource-explorer-2",
|
|
368
388
|
"resource-groups",
|
|
@@ -419,6 +439,7 @@ ServiceName = Literal[
|
|
|
419
439
|
"stepfunctions",
|
|
420
440
|
"storagegateway",
|
|
421
441
|
"sts",
|
|
442
|
+
"supplychain",
|
|
422
443
|
"support",
|
|
423
444
|
"support-app",
|
|
424
445
|
"swf",
|
|
@@ -430,6 +451,7 @@ ServiceName = Literal[
|
|
|
430
451
|
"transcribe",
|
|
431
452
|
"transfer",
|
|
432
453
|
"translate",
|
|
454
|
+
"trustedadvisor",
|
|
433
455
|
"verifiedpermissions",
|
|
434
456
|
"voice-id",
|
|
435
457
|
"vpc-lattice",
|
|
@@ -443,6 +465,7 @@ ServiceName = Literal[
|
|
|
443
465
|
"workmail",
|
|
444
466
|
"workmailmessageflow",
|
|
445
467
|
"workspaces",
|
|
468
|
+
"workspaces-thin-client",
|
|
446
469
|
"workspaces-web",
|
|
447
470
|
"xray",
|
|
448
471
|
]
|
|
@@ -478,6 +501,7 @@ RegionName = Literal[
|
|
|
478
501
|
"ap-southeast-3",
|
|
479
502
|
"ap-southeast-4",
|
|
480
503
|
"ca-central-1",
|
|
504
|
+
"ca-west-1",
|
|
481
505
|
"eu-central-1",
|
|
482
506
|
"eu-central-2",
|
|
483
507
|
"eu-north-1",
|
mypy_boto3_batch/literals.pyi
CHANGED
|
@@ -37,6 +37,8 @@ __all__ = (
|
|
|
37
37
|
"JQStateType",
|
|
38
38
|
"JQStatusType",
|
|
39
39
|
"JobDefinitionTypeType",
|
|
40
|
+
"JobStateTimeLimitActionsActionType",
|
|
41
|
+
"JobStateTimeLimitActionsStateType",
|
|
40
42
|
"JobStatusType",
|
|
41
43
|
"ListJobsPaginatorName",
|
|
42
44
|
"ListSchedulingPoliciesPaginatorName",
|
|
@@ -73,6 +75,8 @@ EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
|
73
75
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
74
76
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
75
77
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
78
|
+
JobStateTimeLimitActionsActionType = Literal["CANCEL"]
|
|
79
|
+
JobStateTimeLimitActionsStateType = Literal["RUNNABLE"]
|
|
76
80
|
JobStatusType = Literal[
|
|
77
81
|
"FAILED", "PENDING", "RUNNABLE", "RUNNING", "STARTING", "SUBMITTED", "SUCCEEDED"
|
|
78
82
|
]
|
|
@@ -110,20 +114,26 @@ ServiceName = Literal[
|
|
|
110
114
|
"appstream",
|
|
111
115
|
"appsync",
|
|
112
116
|
"arc-zonal-shift",
|
|
117
|
+
"artifact",
|
|
113
118
|
"athena",
|
|
114
119
|
"auditmanager",
|
|
115
120
|
"autoscaling",
|
|
116
121
|
"autoscaling-plans",
|
|
122
|
+
"b2bi",
|
|
117
123
|
"backup",
|
|
118
124
|
"backup-gateway",
|
|
119
125
|
"backupstorage",
|
|
120
126
|
"batch",
|
|
127
|
+
"bcm-data-exports",
|
|
121
128
|
"bedrock",
|
|
129
|
+
"bedrock-agent",
|
|
130
|
+
"bedrock-agent-runtime",
|
|
122
131
|
"bedrock-runtime",
|
|
123
132
|
"billingconductor",
|
|
124
133
|
"braket",
|
|
125
134
|
"budgets",
|
|
126
135
|
"ce",
|
|
136
|
+
"chatbot",
|
|
127
137
|
"chime",
|
|
128
138
|
"chime-sdk-identity",
|
|
129
139
|
"chime-sdk-media-pipelines",
|
|
@@ -131,11 +141,13 @@ ServiceName = Literal[
|
|
|
131
141
|
"chime-sdk-messaging",
|
|
132
142
|
"chime-sdk-voice",
|
|
133
143
|
"cleanrooms",
|
|
144
|
+
"cleanroomsml",
|
|
134
145
|
"cloud9",
|
|
135
146
|
"cloudcontrol",
|
|
136
147
|
"clouddirectory",
|
|
137
148
|
"cloudformation",
|
|
138
149
|
"cloudfront",
|
|
150
|
+
"cloudfront-keyvaluestore",
|
|
139
151
|
"cloudhsm",
|
|
140
152
|
"cloudhsmv2",
|
|
141
153
|
"cloudsearch",
|
|
@@ -168,6 +180,7 @@ ServiceName = Literal[
|
|
|
168
180
|
"connectcases",
|
|
169
181
|
"connectparticipant",
|
|
170
182
|
"controltower",
|
|
183
|
+
"cost-optimization-hub",
|
|
171
184
|
"cur",
|
|
172
185
|
"customer-profiles",
|
|
173
186
|
"databrew",
|
|
@@ -197,6 +210,7 @@ ServiceName = Literal[
|
|
|
197
210
|
"ecs",
|
|
198
211
|
"efs",
|
|
199
212
|
"eks",
|
|
213
|
+
"eks-auth",
|
|
200
214
|
"elastic-inference",
|
|
201
215
|
"elasticache",
|
|
202
216
|
"elasticbeanstalk",
|
|
@@ -218,6 +232,7 @@ ServiceName = Literal[
|
|
|
218
232
|
"forecast",
|
|
219
233
|
"forecastquery",
|
|
220
234
|
"frauddetector",
|
|
235
|
+
"freetier",
|
|
221
236
|
"fsx",
|
|
222
237
|
"gamelift",
|
|
223
238
|
"glacier",
|
|
@@ -236,6 +251,7 @@ ServiceName = Literal[
|
|
|
236
251
|
"imagebuilder",
|
|
237
252
|
"importexport",
|
|
238
253
|
"inspector",
|
|
254
|
+
"inspector-scan",
|
|
239
255
|
"inspector2",
|
|
240
256
|
"internetmonitor",
|
|
241
257
|
"iot",
|
|
@@ -290,11 +306,12 @@ ServiceName = Literal[
|
|
|
290
306
|
"lookoutvision",
|
|
291
307
|
"m2",
|
|
292
308
|
"machinelearning",
|
|
293
|
-
"macie",
|
|
294
309
|
"macie2",
|
|
295
310
|
"managedblockchain",
|
|
296
311
|
"managedblockchain-query",
|
|
312
|
+
"marketplace-agreement",
|
|
297
313
|
"marketplace-catalog",
|
|
314
|
+
"marketplace-deployment",
|
|
298
315
|
"marketplace-entitlement",
|
|
299
316
|
"marketplacecommerceanalytics",
|
|
300
317
|
"mediaconnect",
|
|
@@ -320,9 +337,11 @@ ServiceName = Literal[
|
|
|
320
337
|
"mturk",
|
|
321
338
|
"mwaa",
|
|
322
339
|
"neptune",
|
|
340
|
+
"neptune-graph",
|
|
323
341
|
"neptunedata",
|
|
324
342
|
"network-firewall",
|
|
325
343
|
"networkmanager",
|
|
344
|
+
"networkmonitor",
|
|
326
345
|
"nimble",
|
|
327
346
|
"oam",
|
|
328
347
|
"omics",
|
|
@@ -350,6 +369,8 @@ ServiceName = Literal[
|
|
|
350
369
|
"pricing",
|
|
351
370
|
"privatenetworks",
|
|
352
371
|
"proton",
|
|
372
|
+
"qbusiness",
|
|
373
|
+
"qconnect",
|
|
353
374
|
"qldb",
|
|
354
375
|
"qldb-session",
|
|
355
376
|
"quicksight",
|
|
@@ -361,6 +382,7 @@ ServiceName = Literal[
|
|
|
361
382
|
"redshift-data",
|
|
362
383
|
"redshift-serverless",
|
|
363
384
|
"rekognition",
|
|
385
|
+
"repostspace",
|
|
364
386
|
"resiliencehub",
|
|
365
387
|
"resource-explorer-2",
|
|
366
388
|
"resource-groups",
|
|
@@ -417,6 +439,7 @@ ServiceName = Literal[
|
|
|
417
439
|
"stepfunctions",
|
|
418
440
|
"storagegateway",
|
|
419
441
|
"sts",
|
|
442
|
+
"supplychain",
|
|
420
443
|
"support",
|
|
421
444
|
"support-app",
|
|
422
445
|
"swf",
|
|
@@ -428,6 +451,7 @@ ServiceName = Literal[
|
|
|
428
451
|
"transcribe",
|
|
429
452
|
"transfer",
|
|
430
453
|
"translate",
|
|
454
|
+
"trustedadvisor",
|
|
431
455
|
"verifiedpermissions",
|
|
432
456
|
"voice-id",
|
|
433
457
|
"vpc-lattice",
|
|
@@ -441,6 +465,7 @@ ServiceName = Literal[
|
|
|
441
465
|
"workmail",
|
|
442
466
|
"workmailmessageflow",
|
|
443
467
|
"workspaces",
|
|
468
|
+
"workspaces-thin-client",
|
|
444
469
|
"workspaces-web",
|
|
445
470
|
"xray",
|
|
446
471
|
]
|
|
@@ -476,6 +501,7 @@ RegionName = Literal[
|
|
|
476
501
|
"ap-southeast-3",
|
|
477
502
|
"ap-southeast-4",
|
|
478
503
|
"ca-central-1",
|
|
504
|
+
"ca-west-1",
|
|
479
505
|
"eu-central-1",
|
|
480
506
|
"eu-central-2",
|
|
481
507
|
"eu-north-1",
|
mypy_boto3_batch/paginator.py
CHANGED
|
@@ -51,7 +51,6 @@ __all__ = (
|
|
|
51
51
|
"ListSchedulingPoliciesPaginator",
|
|
52
52
|
)
|
|
53
53
|
|
|
54
|
-
|
|
55
54
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
56
55
|
|
|
57
56
|
|
|
@@ -72,7 +71,7 @@ class DescribeComputeEnvironmentsPaginator(Paginator):
|
|
|
72
71
|
self,
|
|
73
72
|
*,
|
|
74
73
|
computeEnvironments: Sequence[str] = ...,
|
|
75
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
74
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
76
75
|
) -> _PageIterator[DescribeComputeEnvironmentsResponsePaginatorTypeDef]:
|
|
77
76
|
"""
|
|
78
77
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeComputeEnvironments.paginate)
|
|
@@ -92,7 +91,7 @@ class DescribeJobDefinitionsPaginator(Paginator):
|
|
|
92
91
|
jobDefinitions: Sequence[str] = ...,
|
|
93
92
|
jobDefinitionName: str = ...,
|
|
94
93
|
status: str = ...,
|
|
95
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
94
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
96
95
|
) -> _PageIterator[DescribeJobDefinitionsResponseTypeDef]:
|
|
97
96
|
"""
|
|
98
97
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeJobDefinitions.paginate)
|
|
@@ -129,7 +128,7 @@ class ListJobsPaginator(Paginator):
|
|
|
129
128
|
multiNodeJobId: str = ...,
|
|
130
129
|
jobStatus: JobStatusType = ...,
|
|
131
130
|
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
132
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
131
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
133
132
|
) -> _PageIterator[ListJobsResponseTypeDef]:
|
|
134
133
|
"""
|
|
135
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.ListJobs.paginate)
|
mypy_boto3_batch/paginator.pyi
CHANGED
|
@@ -69,7 +69,7 @@ class DescribeComputeEnvironmentsPaginator(Paginator):
|
|
|
69
69
|
self,
|
|
70
70
|
*,
|
|
71
71
|
computeEnvironments: Sequence[str] = ...,
|
|
72
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
72
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
73
73
|
) -> _PageIterator[DescribeComputeEnvironmentsResponsePaginatorTypeDef]:
|
|
74
74
|
"""
|
|
75
75
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeComputeEnvironments.paginate)
|
|
@@ -88,7 +88,7 @@ class DescribeJobDefinitionsPaginator(Paginator):
|
|
|
88
88
|
jobDefinitions: Sequence[str] = ...,
|
|
89
89
|
jobDefinitionName: str = ...,
|
|
90
90
|
status: str = ...,
|
|
91
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
91
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
92
92
|
) -> _PageIterator[DescribeJobDefinitionsResponseTypeDef]:
|
|
93
93
|
"""
|
|
94
94
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeJobDefinitions.paginate)
|
|
@@ -123,7 +123,7 @@ class ListJobsPaginator(Paginator):
|
|
|
123
123
|
multiNodeJobId: str = ...,
|
|
124
124
|
jobStatus: JobStatusType = ...,
|
|
125
125
|
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
126
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
126
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
127
127
|
) -> _PageIterator[ListJobsResponseTypeDef]:
|
|
128
128
|
"""
|
|
129
129
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.ListJobs.paginate)
|