mypy-boto3-batch 1.34.0__py3-none-any.whl → 1.34.52__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,7 +37,6 @@ from .paginator import (
37
37
 
38
38
  Client = BatchClient
39
39
 
40
-
41
40
  __all__ = (
42
41
  "BatchClient",
43
42
  "Client",
@@ -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.34.0\nVersion: 1.34.0\nBuilder version:"
14
- " 7.21.0\nDocs: "
15
- " https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch//\nBoto3 docs: "
16
- " https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch\nOther"
17
- " services: https://pypi.org/project/boto3-stubs/\nChangelog: "
18
- " https://github.com/youtype/mypy_boto3_builder/releases"
13
+ "Type annotations for boto3.Batch 1.34.52\n"
14
+ "Version: 1.34.52\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.34.0")
27
+ print("1.34.52")
27
28
 
28
29
 
29
30
  def main() -> None:
@@ -49,6 +49,8 @@ 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,
@@ -74,7 +76,6 @@ if sys.version_info >= (3, 12):
74
76
  else:
75
77
  from typing_extensions import Literal
76
78
 
77
-
78
79
  __all__ = ("BatchClient",)
79
80
 
80
81
 
@@ -143,7 +144,7 @@ class BatchClient(BaseClient):
143
144
  computeResources: ComputeResourceTypeDef = ...,
144
145
  serviceRole: str = ...,
145
146
  tags: Mapping[str, str] = ...,
146
- eksConfiguration: EksConfigurationTypeDef = ...
147
+ eksConfiguration: EksConfigurationTypeDef = ...,
147
148
  ) -> CreateComputeEnvironmentResponseTypeDef:
148
149
  """
149
150
  Creates an Batch compute environment.
@@ -160,7 +161,7 @@ class BatchClient(BaseClient):
160
161
  computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef],
161
162
  state: JQStateType = ...,
162
163
  schedulingPolicyArn: str = ...,
163
- tags: Mapping[str, str] = ...
164
+ tags: Mapping[str, str] = ...,
164
165
  ) -> CreateJobQueueResponseTypeDef:
165
166
  """
166
167
  Creates an Batch job queue.
@@ -174,7 +175,7 @@ class BatchClient(BaseClient):
174
175
  *,
175
176
  name: str,
176
177
  fairsharePolicy: FairsharePolicyTypeDef = ...,
177
- tags: Mapping[str, str] = ...
178
+ tags: Mapping[str, str] = ...,
178
179
  ) -> CreateSchedulingPolicyResponseTypeDef:
179
180
  """
180
181
  Creates an Batch scheduling policy.
@@ -220,7 +221,7 @@ class BatchClient(BaseClient):
220
221
  *,
221
222
  computeEnvironments: Sequence[str] = ...,
222
223
  maxResults: int = ...,
223
- nextToken: str = ...
224
+ nextToken: str = ...,
224
225
  ) -> DescribeComputeEnvironmentsResponseTypeDef:
225
226
  """
226
227
  Describes one or more of your compute environments.
@@ -236,7 +237,7 @@ class BatchClient(BaseClient):
236
237
  maxResults: int = ...,
237
238
  jobDefinitionName: str = ...,
238
239
  status: str = ...,
239
- nextToken: str = ...
240
+ nextToken: str = ...,
240
241
  ) -> DescribeJobDefinitionsResponseTypeDef:
241
242
  """
242
243
  Describes a list of job definitions.
@@ -296,7 +297,7 @@ class BatchClient(BaseClient):
296
297
  jobStatus: JobStatusType = ...,
297
298
  maxResults: int = ...,
298
299
  nextToken: str = ...,
299
- filters: Sequence[KeyValuesPairTypeDef] = ...
300
+ filters: Sequence[KeyValuesPairTypeDef] = ...,
300
301
  ) -> ListJobsResponseTypeDef:
301
302
  """
302
303
  Returns a list of Batch jobs.
@@ -337,7 +338,8 @@ class BatchClient(BaseClient):
337
338
  timeout: JobTimeoutTypeDef = ...,
338
339
  tags: Mapping[str, str] = ...,
339
340
  platformCapabilities: Sequence[PlatformCapabilityType] = ...,
340
- eksProperties: EksPropertiesTypeDef = ...
341
+ eksProperties: EksPropertiesTypeDef = ...,
342
+ ecsProperties: EcsPropertiesTypeDef = ...,
341
343
  ) -> RegisterJobDefinitionResponseTypeDef:
342
344
  """
343
345
  Registers an Batch job definition.
@@ -363,7 +365,8 @@ class BatchClient(BaseClient):
363
365
  propagateTags: bool = ...,
364
366
  timeout: JobTimeoutTypeDef = ...,
365
367
  tags: Mapping[str, str] = ...,
366
- eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...
368
+ eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
369
+ ecsPropertiesOverride: EcsPropertiesOverrideTypeDef = ...,
367
370
  ) -> SubmitJobResponseTypeDef:
368
371
  """
369
372
  Submits an Batch job from a job definition.
@@ -404,7 +407,7 @@ class BatchClient(BaseClient):
404
407
  unmanagedvCpus: int = ...,
405
408
  computeResources: ComputeResourceUpdateTypeDef = ...,
406
409
  serviceRole: str = ...,
407
- updatePolicy: UpdatePolicyTypeDef = ...
410
+ updatePolicy: UpdatePolicyTypeDef = ...,
408
411
  ) -> UpdateComputeEnvironmentResponseTypeDef:
409
412
  """
410
413
  Updates an Batch compute environment.
@@ -420,7 +423,7 @@ class BatchClient(BaseClient):
420
423
  state: JQStateType = ...,
421
424
  schedulingPolicyArn: str = ...,
422
425
  priority: int = ...,
423
- computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...
426
+ computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...,
424
427
  ) -> UpdateJobQueueResponseTypeDef:
425
428
  """
426
429
  Updates a job queue.
@@ -49,6 +49,8 @@ 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,
@@ -139,7 +141,7 @@ class BatchClient(BaseClient):
139
141
  computeResources: ComputeResourceTypeDef = ...,
140
142
  serviceRole: str = ...,
141
143
  tags: Mapping[str, str] = ...,
142
- eksConfiguration: EksConfigurationTypeDef = ...
144
+ eksConfiguration: EksConfigurationTypeDef = ...,
143
145
  ) -> CreateComputeEnvironmentResponseTypeDef:
144
146
  """
145
147
  Creates an Batch compute environment.
@@ -156,7 +158,7 @@ class BatchClient(BaseClient):
156
158
  computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef],
157
159
  state: JQStateType = ...,
158
160
  schedulingPolicyArn: str = ...,
159
- tags: Mapping[str, str] = ...
161
+ tags: Mapping[str, str] = ...,
160
162
  ) -> CreateJobQueueResponseTypeDef:
161
163
  """
162
164
  Creates an Batch job queue.
@@ -170,7 +172,7 @@ class BatchClient(BaseClient):
170
172
  *,
171
173
  name: str,
172
174
  fairsharePolicy: FairsharePolicyTypeDef = ...,
173
- tags: Mapping[str, str] = ...
175
+ tags: Mapping[str, str] = ...,
174
176
  ) -> CreateSchedulingPolicyResponseTypeDef:
175
177
  """
176
178
  Creates an Batch scheduling policy.
@@ -216,7 +218,7 @@ class BatchClient(BaseClient):
216
218
  *,
217
219
  computeEnvironments: Sequence[str] = ...,
218
220
  maxResults: int = ...,
219
- nextToken: str = ...
221
+ nextToken: str = ...,
220
222
  ) -> DescribeComputeEnvironmentsResponseTypeDef:
221
223
  """
222
224
  Describes one or more of your compute environments.
@@ -232,7 +234,7 @@ class BatchClient(BaseClient):
232
234
  maxResults: int = ...,
233
235
  jobDefinitionName: str = ...,
234
236
  status: str = ...,
235
- nextToken: str = ...
237
+ nextToken: str = ...,
236
238
  ) -> DescribeJobDefinitionsResponseTypeDef:
237
239
  """
238
240
  Describes a list of job definitions.
@@ -292,7 +294,7 @@ class BatchClient(BaseClient):
292
294
  jobStatus: JobStatusType = ...,
293
295
  maxResults: int = ...,
294
296
  nextToken: str = ...,
295
- filters: Sequence[KeyValuesPairTypeDef] = ...
297
+ filters: Sequence[KeyValuesPairTypeDef] = ...,
296
298
  ) -> ListJobsResponseTypeDef:
297
299
  """
298
300
  Returns a list of Batch jobs.
@@ -333,7 +335,8 @@ class BatchClient(BaseClient):
333
335
  timeout: JobTimeoutTypeDef = ...,
334
336
  tags: Mapping[str, str] = ...,
335
337
  platformCapabilities: Sequence[PlatformCapabilityType] = ...,
336
- eksProperties: EksPropertiesTypeDef = ...
338
+ eksProperties: EksPropertiesTypeDef = ...,
339
+ ecsProperties: EcsPropertiesTypeDef = ...,
337
340
  ) -> RegisterJobDefinitionResponseTypeDef:
338
341
  """
339
342
  Registers an Batch job definition.
@@ -359,7 +362,8 @@ class BatchClient(BaseClient):
359
362
  propagateTags: bool = ...,
360
363
  timeout: JobTimeoutTypeDef = ...,
361
364
  tags: Mapping[str, str] = ...,
362
- eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...
365
+ eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
366
+ ecsPropertiesOverride: EcsPropertiesOverrideTypeDef = ...,
363
367
  ) -> SubmitJobResponseTypeDef:
364
368
  """
365
369
  Submits an Batch job from a job definition.
@@ -400,7 +404,7 @@ class BatchClient(BaseClient):
400
404
  unmanagedvCpus: int = ...,
401
405
  computeResources: ComputeResourceUpdateTypeDef = ...,
402
406
  serviceRole: str = ...,
403
- updatePolicy: UpdatePolicyTypeDef = ...
407
+ updatePolicy: UpdatePolicyTypeDef = ...,
404
408
  ) -> UpdateComputeEnvironmentResponseTypeDef:
405
409
  """
406
410
  Updates an Batch compute environment.
@@ -416,7 +420,7 @@ class BatchClient(BaseClient):
416
420
  state: JQStateType = ...,
417
421
  schedulingPolicyArn: str = ...,
418
422
  priority: int = ...,
419
- computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...
423
+ computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...,
420
424
  ) -> UpdateJobQueueResponseTypeDef:
421
425
  """
422
426
  Updates a job queue.
@@ -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",
@@ -53,7 +52,6 @@ __all__ = (
53
52
  "RegionName",
54
53
  )
55
54
 
56
-
57
55
  ArrayJobDependencyType = Literal["N_TO_N", "SEQUENTIAL"]
58
56
  AssignPublicIpType = Literal["DISABLED", "ENABLED"]
59
57
  CEStateType = Literal["DISABLED", "ENABLED"]
@@ -112,6 +110,7 @@ ServiceName = Literal[
112
110
  "appstream",
113
111
  "appsync",
114
112
  "arc-zonal-shift",
113
+ "artifact",
115
114
  "athena",
116
115
  "auditmanager",
117
116
  "autoscaling",
@@ -130,6 +129,7 @@ ServiceName = Literal[
130
129
  "braket",
131
130
  "budgets",
132
131
  "ce",
132
+ "chatbot",
133
133
  "chime",
134
134
  "chime-sdk-identity",
135
135
  "chime-sdk-media-pipelines",
@@ -333,9 +333,11 @@ ServiceName = Literal[
333
333
  "mturk",
334
334
  "mwaa",
335
335
  "neptune",
336
+ "neptune-graph",
336
337
  "neptunedata",
337
338
  "network-firewall",
338
339
  "networkmanager",
340
+ "networkmonitor",
339
341
  "nimble",
340
342
  "oam",
341
343
  "omics",
@@ -433,6 +435,7 @@ ServiceName = Literal[
433
435
  "stepfunctions",
434
436
  "storagegateway",
435
437
  "sts",
438
+ "supplychain",
436
439
  "support",
437
440
  "support-app",
438
441
  "swf",
@@ -494,6 +497,7 @@ RegionName = Literal[
494
497
  "ap-southeast-3",
495
498
  "ap-southeast-4",
496
499
  "ca-central-1",
500
+ "ca-west-1",
497
501
  "eu-central-1",
498
502
  "eu-central-2",
499
503
  "eu-north-1",
@@ -110,6 +110,7 @@ ServiceName = Literal[
110
110
  "appstream",
111
111
  "appsync",
112
112
  "arc-zonal-shift",
113
+ "artifact",
113
114
  "athena",
114
115
  "auditmanager",
115
116
  "autoscaling",
@@ -128,6 +129,7 @@ ServiceName = Literal[
128
129
  "braket",
129
130
  "budgets",
130
131
  "ce",
132
+ "chatbot",
131
133
  "chime",
132
134
  "chime-sdk-identity",
133
135
  "chime-sdk-media-pipelines",
@@ -331,9 +333,11 @@ ServiceName = Literal[
331
333
  "mturk",
332
334
  "mwaa",
333
335
  "neptune",
336
+ "neptune-graph",
334
337
  "neptunedata",
335
338
  "network-firewall",
336
339
  "networkmanager",
340
+ "networkmonitor",
337
341
  "nimble",
338
342
  "oam",
339
343
  "omics",
@@ -431,6 +435,7 @@ ServiceName = Literal[
431
435
  "stepfunctions",
432
436
  "storagegateway",
433
437
  "sts",
438
+ "supplychain",
434
439
  "support",
435
440
  "support-app",
436
441
  "swf",
@@ -492,6 +497,7 @@ RegionName = Literal[
492
497
  "ap-southeast-3",
493
498
  "ap-southeast-4",
494
499
  "ca-central-1",
500
+ "ca-west-1",
495
501
  "eu-central-1",
496
502
  "eu-central-2",
497
503
  "eu-north-1",
@@ -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)
@@ -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)
@@ -47,7 +47,6 @@ if sys.version_info >= (3, 12):
47
47
  else:
48
48
  from typing_extensions import TypedDict
49
49
 
50
-
51
50
  __all__ = (
52
51
  "ArrayPropertiesDetailTypeDef",
53
52
  "ArrayPropertiesSummaryTypeDef",
@@ -64,6 +63,7 @@ __all__ = (
64
63
  "KeyValuePairTypeDef",
65
64
  "MountPointTypeDef",
66
65
  "NetworkConfigurationTypeDef",
66
+ "RepositoryCredentialsTypeDef",
67
67
  "ResourceRequirementTypeDef",
68
68
  "RuntimePlatformTypeDef",
69
69
  "SecretTypeDef",
@@ -104,6 +104,7 @@ __all__ = (
104
104
  "SchedulingPolicyListingDetailTypeDef",
105
105
  "ListTagsForResourceRequestRequestTypeDef",
106
106
  "TagResourceRequestRequestTypeDef",
107
+ "TaskContainerDependencyTypeDef",
107
108
  "TerminateJobRequestRequestTypeDef",
108
109
  "UntagResourceRequestRequestTypeDef",
109
110
  "AttemptContainerDetailTypeDef",
@@ -114,6 +115,7 @@ __all__ = (
114
115
  "ComputeResourceTypeDef",
115
116
  "ComputeResourceUpdateTypeDef",
116
117
  "ContainerOverridesTypeDef",
118
+ "TaskContainerOverridesTypeDef",
117
119
  "LogConfigurationTypeDef",
118
120
  "CreateComputeEnvironmentResponseTypeDef",
119
121
  "CreateJobQueueResponseTypeDef",
@@ -146,7 +148,7 @@ __all__ = (
146
148
  "ComputeEnvironmentDetailTypeDef",
147
149
  "CreateComputeEnvironmentRequestRequestTypeDef",
148
150
  "UpdateComputeEnvironmentRequestRequestTypeDef",
149
- "NodePropertyOverrideTypeDef",
151
+ "TaskPropertiesOverrideTypeDef",
150
152
  "VolumeTypeDef",
151
153
  "EksPodPropertiesOverrideTypeDef",
152
154
  "EksPodPropertiesDetailTypeDef",
@@ -155,15 +157,23 @@ __all__ = (
155
157
  "SchedulingPolicyDetailTypeDef",
156
158
  "UpdateSchedulingPolicyRequestRequestTypeDef",
157
159
  "ListJobsResponseTypeDef",
160
+ "TaskContainerDetailsTypeDef",
161
+ "TaskContainerPropertiesTypeDef",
158
162
  "DescribeComputeEnvironmentsResponsePaginatorTypeDef",
159
163
  "DescribeComputeEnvironmentsResponseTypeDef",
160
- "NodeOverridesTypeDef",
164
+ "EcsPropertiesOverrideTypeDef",
161
165
  "ContainerDetailTypeDef",
162
166
  "ContainerPropertiesTypeDef",
163
167
  "EksPropertiesOverrideTypeDef",
164
168
  "EksPropertiesDetailTypeDef",
165
169
  "EksPropertiesTypeDef",
166
170
  "DescribeSchedulingPoliciesResponseTypeDef",
171
+ "EcsTaskDetailsTypeDef",
172
+ "EcsTaskPropertiesTypeDef",
173
+ "NodePropertyOverrideTypeDef",
174
+ "EcsPropertiesDetailTypeDef",
175
+ "EcsPropertiesTypeDef",
176
+ "NodeOverridesTypeDef",
167
177
  "NodeRangePropertyTypeDef",
168
178
  "SubmitJobRequestRequestTypeDef",
169
179
  "NodePropertiesTypeDef",
@@ -280,6 +290,12 @@ NetworkConfigurationTypeDef = TypedDict(
280
290
  "assignPublicIp": NotRequired[AssignPublicIpType],
281
291
  },
282
292
  )
293
+ RepositoryCredentialsTypeDef = TypedDict(
294
+ "RepositoryCredentialsTypeDef",
295
+ {
296
+ "credentialsParameter": str,
297
+ },
298
+ )
283
299
  ResourceRequirementTypeDef = TypedDict(
284
300
  "ResourceRequirementTypeDef",
285
301
  {
@@ -320,10 +336,10 @@ ResponseMetadataTypeDef = TypedDict(
320
336
  "ResponseMetadataTypeDef",
321
337
  {
322
338
  "RequestId": str,
323
- "HostId": str,
324
339
  "HTTPStatusCode": int,
325
340
  "HTTPHeaders": Dict[str, str],
326
341
  "RetryAttempts": int,
342
+ "HostId": NotRequired[str],
327
343
  },
328
344
  )
329
345
  DeleteComputeEnvironmentRequestRequestTypeDef = TypedDict(
@@ -567,6 +583,13 @@ TagResourceRequestRequestTypeDef = TypedDict(
567
583
  "tags": Mapping[str, str],
568
584
  },
569
585
  )
586
+ TaskContainerDependencyTypeDef = TypedDict(
587
+ "TaskContainerDependencyTypeDef",
588
+ {
589
+ "containerName": NotRequired[str],
590
+ "condition": NotRequired[str],
591
+ },
592
+ )
570
593
  TerminateJobRequestRequestTypeDef = TypedDict(
571
594
  "TerminateJobRequestRequestTypeDef",
572
595
  {
@@ -704,6 +727,15 @@ ContainerOverridesTypeDef = TypedDict(
704
727
  "resourceRequirements": NotRequired[Sequence[ResourceRequirementTypeDef]],
705
728
  },
706
729
  )
730
+ TaskContainerOverridesTypeDef = TypedDict(
731
+ "TaskContainerOverridesTypeDef",
732
+ {
733
+ "command": NotRequired[Sequence[str]],
734
+ "environment": NotRequired[Sequence[KeyValuePairTypeDef]],
735
+ "name": NotRequired[str],
736
+ "resourceRequirements": NotRequired[Sequence[ResourceRequirementTypeDef]],
737
+ },
738
+ )
707
739
  LogConfigurationTypeDef = TypedDict(
708
740
  "LogConfigurationTypeDef",
709
741
  {
@@ -820,6 +852,7 @@ EksAttemptDetailTypeDef = TypedDict(
820
852
  "EksAttemptDetailTypeDef",
821
853
  {
822
854
  "containers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
855
+ "initContainers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
823
856
  "podName": NotRequired[str],
824
857
  "nodeName": NotRequired[str],
825
858
  "startedAt": NotRequired[int],
@@ -830,6 +863,7 @@ EksAttemptDetailTypeDef = TypedDict(
830
863
  EksContainerOverrideTypeDef = TypedDict(
831
864
  "EksContainerOverrideTypeDef",
832
865
  {
866
+ "name": NotRequired[str],
833
867
  "image": NotRequired[str],
834
868
  "command": NotRequired[Sequence[str]],
835
869
  "args": NotRequired[Sequence[str]],
@@ -1031,11 +1065,10 @@ UpdateComputeEnvironmentRequestRequestTypeDef = TypedDict(
1031
1065
  "updatePolicy": NotRequired[UpdatePolicyTypeDef],
1032
1066
  },
1033
1067
  )
1034
- NodePropertyOverrideTypeDef = TypedDict(
1035
- "NodePropertyOverrideTypeDef",
1068
+ TaskPropertiesOverrideTypeDef = TypedDict(
1069
+ "TaskPropertiesOverrideTypeDef",
1036
1070
  {
1037
- "targetNodes": str,
1038
- "containerOverrides": NotRequired[ContainerOverridesTypeDef],
1071
+ "containers": NotRequired[Sequence[TaskContainerOverridesTypeDef]],
1039
1072
  },
1040
1073
  )
1041
1074
  VolumeTypeDef = TypedDict(
@@ -1050,6 +1083,7 @@ EksPodPropertiesOverrideTypeDef = TypedDict(
1050
1083
  "EksPodPropertiesOverrideTypeDef",
1051
1084
  {
1052
1085
  "containers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
1086
+ "initContainers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
1053
1087
  "metadata": NotRequired[EksMetadataTypeDef],
1054
1088
  },
1055
1089
  )
@@ -1060,10 +1094,12 @@ EksPodPropertiesDetailTypeDef = TypedDict(
1060
1094
  "hostNetwork": NotRequired[bool],
1061
1095
  "dnsPolicy": NotRequired[str],
1062
1096
  "containers": NotRequired[List[EksContainerDetailTypeDef]],
1097
+ "initContainers": NotRequired[List[EksContainerDetailTypeDef]],
1063
1098
  "volumes": NotRequired[List[EksVolumeTypeDef]],
1064
1099
  "podName": NotRequired[str],
1065
1100
  "nodeName": NotRequired[str],
1066
1101
  "metadata": NotRequired[EksMetadataTypeDef],
1102
+ "shareProcessNamespace": NotRequired[bool],
1067
1103
  },
1068
1104
  )
1069
1105
  EksPodPropertiesTypeDef = TypedDict(
@@ -1073,8 +1109,10 @@ EksPodPropertiesTypeDef = TypedDict(
1073
1109
  "hostNetwork": NotRequired[bool],
1074
1110
  "dnsPolicy": NotRequired[str],
1075
1111
  "containers": NotRequired[List[EksContainerTypeDef]],
1112
+ "initContainers": NotRequired[List[EksContainerTypeDef]],
1076
1113
  "volumes": NotRequired[List[EksVolumeTypeDef]],
1077
1114
  "metadata": NotRequired[EksMetadataTypeDef],
1115
+ "shareProcessNamespace": NotRequired[bool],
1078
1116
  },
1079
1117
  )
1080
1118
  CreateSchedulingPolicyRequestRequestTypeDef = TypedDict(
@@ -1109,6 +1147,52 @@ ListJobsResponseTypeDef = TypedDict(
1109
1147
  "ResponseMetadata": ResponseMetadataTypeDef,
1110
1148
  },
1111
1149
  )
1150
+ TaskContainerDetailsTypeDef = TypedDict(
1151
+ "TaskContainerDetailsTypeDef",
1152
+ {
1153
+ "command": NotRequired[List[str]],
1154
+ "dependsOn": NotRequired[List[TaskContainerDependencyTypeDef]],
1155
+ "environment": NotRequired[List[KeyValuePairTypeDef]],
1156
+ "essential": NotRequired[bool],
1157
+ "image": NotRequired[str],
1158
+ "linuxParameters": NotRequired[LinuxParametersTypeDef],
1159
+ "logConfiguration": NotRequired[LogConfigurationTypeDef],
1160
+ "mountPoints": NotRequired[List[MountPointTypeDef]],
1161
+ "name": NotRequired[str],
1162
+ "privileged": NotRequired[bool],
1163
+ "readonlyRootFilesystem": NotRequired[bool],
1164
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1165
+ "resourceRequirements": NotRequired[List[ResourceRequirementTypeDef]],
1166
+ "secrets": NotRequired[List[SecretTypeDef]],
1167
+ "ulimits": NotRequired[List[UlimitTypeDef]],
1168
+ "user": NotRequired[str],
1169
+ "exitCode": NotRequired[int],
1170
+ "reason": NotRequired[str],
1171
+ "logStreamName": NotRequired[str],
1172
+ "networkInterfaces": NotRequired[List[NetworkInterfaceTypeDef]],
1173
+ },
1174
+ )
1175
+ TaskContainerPropertiesTypeDef = TypedDict(
1176
+ "TaskContainerPropertiesTypeDef",
1177
+ {
1178
+ "image": str,
1179
+ "command": NotRequired[List[str]],
1180
+ "dependsOn": NotRequired[List[TaskContainerDependencyTypeDef]],
1181
+ "environment": NotRequired[List[KeyValuePairTypeDef]],
1182
+ "essential": NotRequired[bool],
1183
+ "linuxParameters": NotRequired[LinuxParametersTypeDef],
1184
+ "logConfiguration": NotRequired[LogConfigurationTypeDef],
1185
+ "mountPoints": NotRequired[List[MountPointTypeDef]],
1186
+ "name": NotRequired[str],
1187
+ "privileged": NotRequired[bool],
1188
+ "readonlyRootFilesystem": NotRequired[bool],
1189
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1190
+ "resourceRequirements": NotRequired[List[ResourceRequirementTypeDef]],
1191
+ "secrets": NotRequired[List[SecretTypeDef]],
1192
+ "ulimits": NotRequired[List[UlimitTypeDef]],
1193
+ "user": NotRequired[str],
1194
+ },
1195
+ )
1112
1196
  DescribeComputeEnvironmentsResponsePaginatorTypeDef = TypedDict(
1113
1197
  "DescribeComputeEnvironmentsResponsePaginatorTypeDef",
1114
1198
  {
@@ -1125,11 +1209,10 @@ DescribeComputeEnvironmentsResponseTypeDef = TypedDict(
1125
1209
  "ResponseMetadata": ResponseMetadataTypeDef,
1126
1210
  },
1127
1211
  )
1128
- NodeOverridesTypeDef = TypedDict(
1129
- "NodeOverridesTypeDef",
1212
+ EcsPropertiesOverrideTypeDef = TypedDict(
1213
+ "EcsPropertiesOverrideTypeDef",
1130
1214
  {
1131
- "numNodes": NotRequired[int],
1132
- "nodePropertyOverrides": NotRequired[Sequence[NodePropertyOverrideTypeDef]],
1215
+ "taskProperties": NotRequired[Sequence[TaskPropertiesOverrideTypeDef]],
1133
1216
  },
1134
1217
  )
1135
1218
  ContainerDetailTypeDef = TypedDict(
@@ -1163,6 +1246,7 @@ ContainerDetailTypeDef = TypedDict(
1163
1246
  "fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
1164
1247
  "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1165
1248
  "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1249
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1166
1250
  },
1167
1251
  )
1168
1252
  ContainerPropertiesTypeDef = TypedDict(
@@ -1190,6 +1274,7 @@ ContainerPropertiesTypeDef = TypedDict(
1190
1274
  "fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
1191
1275
  "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1192
1276
  "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1277
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1193
1278
  },
1194
1279
  )
1195
1280
  EksPropertiesOverrideTypeDef = TypedDict(
@@ -1217,11 +1302,73 @@ DescribeSchedulingPoliciesResponseTypeDef = TypedDict(
1217
1302
  "ResponseMetadata": ResponseMetadataTypeDef,
1218
1303
  },
1219
1304
  )
1305
+ EcsTaskDetailsTypeDef = TypedDict(
1306
+ "EcsTaskDetailsTypeDef",
1307
+ {
1308
+ "containers": NotRequired[List[TaskContainerDetailsTypeDef]],
1309
+ "containerInstanceArn": NotRequired[str],
1310
+ "taskArn": NotRequired[str],
1311
+ "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1312
+ "executionRoleArn": NotRequired[str],
1313
+ "platformVersion": NotRequired[str],
1314
+ "ipcMode": NotRequired[str],
1315
+ "taskRoleArn": NotRequired[str],
1316
+ "pidMode": NotRequired[str],
1317
+ "networkConfiguration": NotRequired[NetworkConfigurationTypeDef],
1318
+ "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1319
+ "volumes": NotRequired[List[VolumeTypeDef]],
1320
+ },
1321
+ )
1322
+ EcsTaskPropertiesTypeDef = TypedDict(
1323
+ "EcsTaskPropertiesTypeDef",
1324
+ {
1325
+ "containers": List[TaskContainerPropertiesTypeDef],
1326
+ "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1327
+ "executionRoleArn": NotRequired[str],
1328
+ "platformVersion": NotRequired[str],
1329
+ "ipcMode": NotRequired[str],
1330
+ "taskRoleArn": NotRequired[str],
1331
+ "pidMode": NotRequired[str],
1332
+ "networkConfiguration": NotRequired[NetworkConfigurationTypeDef],
1333
+ "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1334
+ "volumes": NotRequired[List[VolumeTypeDef]],
1335
+ },
1336
+ )
1337
+ NodePropertyOverrideTypeDef = TypedDict(
1338
+ "NodePropertyOverrideTypeDef",
1339
+ {
1340
+ "targetNodes": str,
1341
+ "containerOverrides": NotRequired[ContainerOverridesTypeDef],
1342
+ "ecsPropertiesOverride": NotRequired[EcsPropertiesOverrideTypeDef],
1343
+ "instanceTypes": NotRequired[Sequence[str]],
1344
+ },
1345
+ )
1346
+ EcsPropertiesDetailTypeDef = TypedDict(
1347
+ "EcsPropertiesDetailTypeDef",
1348
+ {
1349
+ "taskProperties": NotRequired[List[EcsTaskDetailsTypeDef]],
1350
+ },
1351
+ )
1352
+ EcsPropertiesTypeDef = TypedDict(
1353
+ "EcsPropertiesTypeDef",
1354
+ {
1355
+ "taskProperties": List[EcsTaskPropertiesTypeDef],
1356
+ },
1357
+ )
1358
+ NodeOverridesTypeDef = TypedDict(
1359
+ "NodeOverridesTypeDef",
1360
+ {
1361
+ "numNodes": NotRequired[int],
1362
+ "nodePropertyOverrides": NotRequired[Sequence[NodePropertyOverrideTypeDef]],
1363
+ },
1364
+ )
1220
1365
  NodeRangePropertyTypeDef = TypedDict(
1221
1366
  "NodeRangePropertyTypeDef",
1222
1367
  {
1223
1368
  "targetNodes": str,
1224
1369
  "container": NotRequired[ContainerPropertiesTypeDef],
1370
+ "instanceTypes": NotRequired[List[str]],
1371
+ "ecsProperties": NotRequired[EcsPropertiesTypeDef],
1225
1372
  },
1226
1373
  )
1227
1374
  SubmitJobRequestRequestTypeDef = TypedDict(
@@ -1242,6 +1389,7 @@ SubmitJobRequestRequestTypeDef = TypedDict(
1242
1389
  "timeout": NotRequired[JobTimeoutTypeDef],
1243
1390
  "tags": NotRequired[Mapping[str, str]],
1244
1391
  "eksPropertiesOverride": NotRequired[EksPropertiesOverrideTypeDef],
1392
+ "ecsPropertiesOverride": NotRequired[EcsPropertiesOverrideTypeDef],
1245
1393
  },
1246
1394
  )
1247
1395
  NodePropertiesTypeDef = TypedDict(
@@ -1269,6 +1417,7 @@ JobDefinitionTypeDef = TypedDict(
1269
1417
  "tags": NotRequired[Dict[str, str]],
1270
1418
  "propagateTags": NotRequired[bool],
1271
1419
  "platformCapabilities": NotRequired[List[PlatformCapabilityType]],
1420
+ "ecsProperties": NotRequired[EcsPropertiesTypeDef],
1272
1421
  "eksProperties": NotRequired[EksPropertiesTypeDef],
1273
1422
  "containerOrchestrationType": NotRequired[OrchestrationTypeType],
1274
1423
  },
@@ -1302,6 +1451,7 @@ JobDetailTypeDef = TypedDict(
1302
1451
  "platformCapabilities": NotRequired[List[PlatformCapabilityType]],
1303
1452
  "eksProperties": NotRequired[EksPropertiesDetailTypeDef],
1304
1453
  "eksAttempts": NotRequired[List[EksAttemptDetailTypeDef]],
1454
+ "ecsProperties": NotRequired[EcsPropertiesDetailTypeDef],
1305
1455
  "isCancelled": NotRequired[bool],
1306
1456
  "isTerminated": NotRequired[bool],
1307
1457
  },
@@ -1321,6 +1471,7 @@ RegisterJobDefinitionRequestRequestTypeDef = TypedDict(
1321
1471
  "tags": NotRequired[Mapping[str, str]],
1322
1472
  "platformCapabilities": NotRequired[Sequence[PlatformCapabilityType]],
1323
1473
  "eksProperties": NotRequired[EksPropertiesTypeDef],
1474
+ "ecsProperties": NotRequired[EcsPropertiesTypeDef],
1324
1475
  },
1325
1476
  )
1326
1477
  DescribeJobDefinitionsResponseTypeDef = TypedDict(
@@ -63,6 +63,7 @@ __all__ = (
63
63
  "KeyValuePairTypeDef",
64
64
  "MountPointTypeDef",
65
65
  "NetworkConfigurationTypeDef",
66
+ "RepositoryCredentialsTypeDef",
66
67
  "ResourceRequirementTypeDef",
67
68
  "RuntimePlatformTypeDef",
68
69
  "SecretTypeDef",
@@ -103,6 +104,7 @@ __all__ = (
103
104
  "SchedulingPolicyListingDetailTypeDef",
104
105
  "ListTagsForResourceRequestRequestTypeDef",
105
106
  "TagResourceRequestRequestTypeDef",
107
+ "TaskContainerDependencyTypeDef",
106
108
  "TerminateJobRequestRequestTypeDef",
107
109
  "UntagResourceRequestRequestTypeDef",
108
110
  "AttemptContainerDetailTypeDef",
@@ -113,6 +115,7 @@ __all__ = (
113
115
  "ComputeResourceTypeDef",
114
116
  "ComputeResourceUpdateTypeDef",
115
117
  "ContainerOverridesTypeDef",
118
+ "TaskContainerOverridesTypeDef",
116
119
  "LogConfigurationTypeDef",
117
120
  "CreateComputeEnvironmentResponseTypeDef",
118
121
  "CreateJobQueueResponseTypeDef",
@@ -145,7 +148,7 @@ __all__ = (
145
148
  "ComputeEnvironmentDetailTypeDef",
146
149
  "CreateComputeEnvironmentRequestRequestTypeDef",
147
150
  "UpdateComputeEnvironmentRequestRequestTypeDef",
148
- "NodePropertyOverrideTypeDef",
151
+ "TaskPropertiesOverrideTypeDef",
149
152
  "VolumeTypeDef",
150
153
  "EksPodPropertiesOverrideTypeDef",
151
154
  "EksPodPropertiesDetailTypeDef",
@@ -154,15 +157,23 @@ __all__ = (
154
157
  "SchedulingPolicyDetailTypeDef",
155
158
  "UpdateSchedulingPolicyRequestRequestTypeDef",
156
159
  "ListJobsResponseTypeDef",
160
+ "TaskContainerDetailsTypeDef",
161
+ "TaskContainerPropertiesTypeDef",
157
162
  "DescribeComputeEnvironmentsResponsePaginatorTypeDef",
158
163
  "DescribeComputeEnvironmentsResponseTypeDef",
159
- "NodeOverridesTypeDef",
164
+ "EcsPropertiesOverrideTypeDef",
160
165
  "ContainerDetailTypeDef",
161
166
  "ContainerPropertiesTypeDef",
162
167
  "EksPropertiesOverrideTypeDef",
163
168
  "EksPropertiesDetailTypeDef",
164
169
  "EksPropertiesTypeDef",
165
170
  "DescribeSchedulingPoliciesResponseTypeDef",
171
+ "EcsTaskDetailsTypeDef",
172
+ "EcsTaskPropertiesTypeDef",
173
+ "NodePropertyOverrideTypeDef",
174
+ "EcsPropertiesDetailTypeDef",
175
+ "EcsPropertiesTypeDef",
176
+ "NodeOverridesTypeDef",
166
177
  "NodeRangePropertyTypeDef",
167
178
  "SubmitJobRequestRequestTypeDef",
168
179
  "NodePropertiesTypeDef",
@@ -279,6 +290,12 @@ NetworkConfigurationTypeDef = TypedDict(
279
290
  "assignPublicIp": NotRequired[AssignPublicIpType],
280
291
  },
281
292
  )
293
+ RepositoryCredentialsTypeDef = TypedDict(
294
+ "RepositoryCredentialsTypeDef",
295
+ {
296
+ "credentialsParameter": str,
297
+ },
298
+ )
282
299
  ResourceRequirementTypeDef = TypedDict(
283
300
  "ResourceRequirementTypeDef",
284
301
  {
@@ -319,10 +336,10 @@ ResponseMetadataTypeDef = TypedDict(
319
336
  "ResponseMetadataTypeDef",
320
337
  {
321
338
  "RequestId": str,
322
- "HostId": str,
323
339
  "HTTPStatusCode": int,
324
340
  "HTTPHeaders": Dict[str, str],
325
341
  "RetryAttempts": int,
342
+ "HostId": NotRequired[str],
326
343
  },
327
344
  )
328
345
  DeleteComputeEnvironmentRequestRequestTypeDef = TypedDict(
@@ -566,6 +583,13 @@ TagResourceRequestRequestTypeDef = TypedDict(
566
583
  "tags": Mapping[str, str],
567
584
  },
568
585
  )
586
+ TaskContainerDependencyTypeDef = TypedDict(
587
+ "TaskContainerDependencyTypeDef",
588
+ {
589
+ "containerName": NotRequired[str],
590
+ "condition": NotRequired[str],
591
+ },
592
+ )
569
593
  TerminateJobRequestRequestTypeDef = TypedDict(
570
594
  "TerminateJobRequestRequestTypeDef",
571
595
  {
@@ -703,6 +727,15 @@ ContainerOverridesTypeDef = TypedDict(
703
727
  "resourceRequirements": NotRequired[Sequence[ResourceRequirementTypeDef]],
704
728
  },
705
729
  )
730
+ TaskContainerOverridesTypeDef = TypedDict(
731
+ "TaskContainerOverridesTypeDef",
732
+ {
733
+ "command": NotRequired[Sequence[str]],
734
+ "environment": NotRequired[Sequence[KeyValuePairTypeDef]],
735
+ "name": NotRequired[str],
736
+ "resourceRequirements": NotRequired[Sequence[ResourceRequirementTypeDef]],
737
+ },
738
+ )
706
739
  LogConfigurationTypeDef = TypedDict(
707
740
  "LogConfigurationTypeDef",
708
741
  {
@@ -819,6 +852,7 @@ EksAttemptDetailTypeDef = TypedDict(
819
852
  "EksAttemptDetailTypeDef",
820
853
  {
821
854
  "containers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
855
+ "initContainers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
822
856
  "podName": NotRequired[str],
823
857
  "nodeName": NotRequired[str],
824
858
  "startedAt": NotRequired[int],
@@ -829,6 +863,7 @@ EksAttemptDetailTypeDef = TypedDict(
829
863
  EksContainerOverrideTypeDef = TypedDict(
830
864
  "EksContainerOverrideTypeDef",
831
865
  {
866
+ "name": NotRequired[str],
832
867
  "image": NotRequired[str],
833
868
  "command": NotRequired[Sequence[str]],
834
869
  "args": NotRequired[Sequence[str]],
@@ -1030,11 +1065,10 @@ UpdateComputeEnvironmentRequestRequestTypeDef = TypedDict(
1030
1065
  "updatePolicy": NotRequired[UpdatePolicyTypeDef],
1031
1066
  },
1032
1067
  )
1033
- NodePropertyOverrideTypeDef = TypedDict(
1034
- "NodePropertyOverrideTypeDef",
1068
+ TaskPropertiesOverrideTypeDef = TypedDict(
1069
+ "TaskPropertiesOverrideTypeDef",
1035
1070
  {
1036
- "targetNodes": str,
1037
- "containerOverrides": NotRequired[ContainerOverridesTypeDef],
1071
+ "containers": NotRequired[Sequence[TaskContainerOverridesTypeDef]],
1038
1072
  },
1039
1073
  )
1040
1074
  VolumeTypeDef = TypedDict(
@@ -1049,6 +1083,7 @@ EksPodPropertiesOverrideTypeDef = TypedDict(
1049
1083
  "EksPodPropertiesOverrideTypeDef",
1050
1084
  {
1051
1085
  "containers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
1086
+ "initContainers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
1052
1087
  "metadata": NotRequired[EksMetadataTypeDef],
1053
1088
  },
1054
1089
  )
@@ -1059,10 +1094,12 @@ EksPodPropertiesDetailTypeDef = TypedDict(
1059
1094
  "hostNetwork": NotRequired[bool],
1060
1095
  "dnsPolicy": NotRequired[str],
1061
1096
  "containers": NotRequired[List[EksContainerDetailTypeDef]],
1097
+ "initContainers": NotRequired[List[EksContainerDetailTypeDef]],
1062
1098
  "volumes": NotRequired[List[EksVolumeTypeDef]],
1063
1099
  "podName": NotRequired[str],
1064
1100
  "nodeName": NotRequired[str],
1065
1101
  "metadata": NotRequired[EksMetadataTypeDef],
1102
+ "shareProcessNamespace": NotRequired[bool],
1066
1103
  },
1067
1104
  )
1068
1105
  EksPodPropertiesTypeDef = TypedDict(
@@ -1072,8 +1109,10 @@ EksPodPropertiesTypeDef = TypedDict(
1072
1109
  "hostNetwork": NotRequired[bool],
1073
1110
  "dnsPolicy": NotRequired[str],
1074
1111
  "containers": NotRequired[List[EksContainerTypeDef]],
1112
+ "initContainers": NotRequired[List[EksContainerTypeDef]],
1075
1113
  "volumes": NotRequired[List[EksVolumeTypeDef]],
1076
1114
  "metadata": NotRequired[EksMetadataTypeDef],
1115
+ "shareProcessNamespace": NotRequired[bool],
1077
1116
  },
1078
1117
  )
1079
1118
  CreateSchedulingPolicyRequestRequestTypeDef = TypedDict(
@@ -1108,6 +1147,52 @@ ListJobsResponseTypeDef = TypedDict(
1108
1147
  "ResponseMetadata": ResponseMetadataTypeDef,
1109
1148
  },
1110
1149
  )
1150
+ TaskContainerDetailsTypeDef = TypedDict(
1151
+ "TaskContainerDetailsTypeDef",
1152
+ {
1153
+ "command": NotRequired[List[str]],
1154
+ "dependsOn": NotRequired[List[TaskContainerDependencyTypeDef]],
1155
+ "environment": NotRequired[List[KeyValuePairTypeDef]],
1156
+ "essential": NotRequired[bool],
1157
+ "image": NotRequired[str],
1158
+ "linuxParameters": NotRequired[LinuxParametersTypeDef],
1159
+ "logConfiguration": NotRequired[LogConfigurationTypeDef],
1160
+ "mountPoints": NotRequired[List[MountPointTypeDef]],
1161
+ "name": NotRequired[str],
1162
+ "privileged": NotRequired[bool],
1163
+ "readonlyRootFilesystem": NotRequired[bool],
1164
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1165
+ "resourceRequirements": NotRequired[List[ResourceRequirementTypeDef]],
1166
+ "secrets": NotRequired[List[SecretTypeDef]],
1167
+ "ulimits": NotRequired[List[UlimitTypeDef]],
1168
+ "user": NotRequired[str],
1169
+ "exitCode": NotRequired[int],
1170
+ "reason": NotRequired[str],
1171
+ "logStreamName": NotRequired[str],
1172
+ "networkInterfaces": NotRequired[List[NetworkInterfaceTypeDef]],
1173
+ },
1174
+ )
1175
+ TaskContainerPropertiesTypeDef = TypedDict(
1176
+ "TaskContainerPropertiesTypeDef",
1177
+ {
1178
+ "image": str,
1179
+ "command": NotRequired[List[str]],
1180
+ "dependsOn": NotRequired[List[TaskContainerDependencyTypeDef]],
1181
+ "environment": NotRequired[List[KeyValuePairTypeDef]],
1182
+ "essential": NotRequired[bool],
1183
+ "linuxParameters": NotRequired[LinuxParametersTypeDef],
1184
+ "logConfiguration": NotRequired[LogConfigurationTypeDef],
1185
+ "mountPoints": NotRequired[List[MountPointTypeDef]],
1186
+ "name": NotRequired[str],
1187
+ "privileged": NotRequired[bool],
1188
+ "readonlyRootFilesystem": NotRequired[bool],
1189
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1190
+ "resourceRequirements": NotRequired[List[ResourceRequirementTypeDef]],
1191
+ "secrets": NotRequired[List[SecretTypeDef]],
1192
+ "ulimits": NotRequired[List[UlimitTypeDef]],
1193
+ "user": NotRequired[str],
1194
+ },
1195
+ )
1111
1196
  DescribeComputeEnvironmentsResponsePaginatorTypeDef = TypedDict(
1112
1197
  "DescribeComputeEnvironmentsResponsePaginatorTypeDef",
1113
1198
  {
@@ -1124,11 +1209,10 @@ DescribeComputeEnvironmentsResponseTypeDef = TypedDict(
1124
1209
  "ResponseMetadata": ResponseMetadataTypeDef,
1125
1210
  },
1126
1211
  )
1127
- NodeOverridesTypeDef = TypedDict(
1128
- "NodeOverridesTypeDef",
1212
+ EcsPropertiesOverrideTypeDef = TypedDict(
1213
+ "EcsPropertiesOverrideTypeDef",
1129
1214
  {
1130
- "numNodes": NotRequired[int],
1131
- "nodePropertyOverrides": NotRequired[Sequence[NodePropertyOverrideTypeDef]],
1215
+ "taskProperties": NotRequired[Sequence[TaskPropertiesOverrideTypeDef]],
1132
1216
  },
1133
1217
  )
1134
1218
  ContainerDetailTypeDef = TypedDict(
@@ -1162,6 +1246,7 @@ ContainerDetailTypeDef = TypedDict(
1162
1246
  "fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
1163
1247
  "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1164
1248
  "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1249
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1165
1250
  },
1166
1251
  )
1167
1252
  ContainerPropertiesTypeDef = TypedDict(
@@ -1189,6 +1274,7 @@ ContainerPropertiesTypeDef = TypedDict(
1189
1274
  "fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
1190
1275
  "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1191
1276
  "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1277
+ "repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
1192
1278
  },
1193
1279
  )
1194
1280
  EksPropertiesOverrideTypeDef = TypedDict(
@@ -1216,11 +1302,73 @@ DescribeSchedulingPoliciesResponseTypeDef = TypedDict(
1216
1302
  "ResponseMetadata": ResponseMetadataTypeDef,
1217
1303
  },
1218
1304
  )
1305
+ EcsTaskDetailsTypeDef = TypedDict(
1306
+ "EcsTaskDetailsTypeDef",
1307
+ {
1308
+ "containers": NotRequired[List[TaskContainerDetailsTypeDef]],
1309
+ "containerInstanceArn": NotRequired[str],
1310
+ "taskArn": NotRequired[str],
1311
+ "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1312
+ "executionRoleArn": NotRequired[str],
1313
+ "platformVersion": NotRequired[str],
1314
+ "ipcMode": NotRequired[str],
1315
+ "taskRoleArn": NotRequired[str],
1316
+ "pidMode": NotRequired[str],
1317
+ "networkConfiguration": NotRequired[NetworkConfigurationTypeDef],
1318
+ "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1319
+ "volumes": NotRequired[List[VolumeTypeDef]],
1320
+ },
1321
+ )
1322
+ EcsTaskPropertiesTypeDef = TypedDict(
1323
+ "EcsTaskPropertiesTypeDef",
1324
+ {
1325
+ "containers": List[TaskContainerPropertiesTypeDef],
1326
+ "ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
1327
+ "executionRoleArn": NotRequired[str],
1328
+ "platformVersion": NotRequired[str],
1329
+ "ipcMode": NotRequired[str],
1330
+ "taskRoleArn": NotRequired[str],
1331
+ "pidMode": NotRequired[str],
1332
+ "networkConfiguration": NotRequired[NetworkConfigurationTypeDef],
1333
+ "runtimePlatform": NotRequired[RuntimePlatformTypeDef],
1334
+ "volumes": NotRequired[List[VolumeTypeDef]],
1335
+ },
1336
+ )
1337
+ NodePropertyOverrideTypeDef = TypedDict(
1338
+ "NodePropertyOverrideTypeDef",
1339
+ {
1340
+ "targetNodes": str,
1341
+ "containerOverrides": NotRequired[ContainerOverridesTypeDef],
1342
+ "ecsPropertiesOverride": NotRequired[EcsPropertiesOverrideTypeDef],
1343
+ "instanceTypes": NotRequired[Sequence[str]],
1344
+ },
1345
+ )
1346
+ EcsPropertiesDetailTypeDef = TypedDict(
1347
+ "EcsPropertiesDetailTypeDef",
1348
+ {
1349
+ "taskProperties": NotRequired[List[EcsTaskDetailsTypeDef]],
1350
+ },
1351
+ )
1352
+ EcsPropertiesTypeDef = TypedDict(
1353
+ "EcsPropertiesTypeDef",
1354
+ {
1355
+ "taskProperties": List[EcsTaskPropertiesTypeDef],
1356
+ },
1357
+ )
1358
+ NodeOverridesTypeDef = TypedDict(
1359
+ "NodeOverridesTypeDef",
1360
+ {
1361
+ "numNodes": NotRequired[int],
1362
+ "nodePropertyOverrides": NotRequired[Sequence[NodePropertyOverrideTypeDef]],
1363
+ },
1364
+ )
1219
1365
  NodeRangePropertyTypeDef = TypedDict(
1220
1366
  "NodeRangePropertyTypeDef",
1221
1367
  {
1222
1368
  "targetNodes": str,
1223
1369
  "container": NotRequired[ContainerPropertiesTypeDef],
1370
+ "instanceTypes": NotRequired[List[str]],
1371
+ "ecsProperties": NotRequired[EcsPropertiesTypeDef],
1224
1372
  },
1225
1373
  )
1226
1374
  SubmitJobRequestRequestTypeDef = TypedDict(
@@ -1241,6 +1389,7 @@ SubmitJobRequestRequestTypeDef = TypedDict(
1241
1389
  "timeout": NotRequired[JobTimeoutTypeDef],
1242
1390
  "tags": NotRequired[Mapping[str, str]],
1243
1391
  "eksPropertiesOverride": NotRequired[EksPropertiesOverrideTypeDef],
1392
+ "ecsPropertiesOverride": NotRequired[EcsPropertiesOverrideTypeDef],
1244
1393
  },
1245
1394
  )
1246
1395
  NodePropertiesTypeDef = TypedDict(
@@ -1268,6 +1417,7 @@ JobDefinitionTypeDef = TypedDict(
1268
1417
  "tags": NotRequired[Dict[str, str]],
1269
1418
  "propagateTags": NotRequired[bool],
1270
1419
  "platformCapabilities": NotRequired[List[PlatformCapabilityType]],
1420
+ "ecsProperties": NotRequired[EcsPropertiesTypeDef],
1271
1421
  "eksProperties": NotRequired[EksPropertiesTypeDef],
1272
1422
  "containerOrchestrationType": NotRequired[OrchestrationTypeType],
1273
1423
  },
@@ -1301,6 +1451,7 @@ JobDetailTypeDef = TypedDict(
1301
1451
  "platformCapabilities": NotRequired[List[PlatformCapabilityType]],
1302
1452
  "eksProperties": NotRequired[EksPropertiesDetailTypeDef],
1303
1453
  "eksAttempts": NotRequired[List[EksAttemptDetailTypeDef]],
1454
+ "ecsProperties": NotRequired[EcsPropertiesDetailTypeDef],
1304
1455
  "isCancelled": NotRequired[bool],
1305
1456
  "isTerminated": NotRequired[bool],
1306
1457
  },
@@ -1320,6 +1471,7 @@ RegisterJobDefinitionRequestRequestTypeDef = TypedDict(
1320
1471
  "tags": NotRequired[Mapping[str, str]],
1321
1472
  "platformCapabilities": NotRequired[Sequence[PlatformCapabilityType]],
1322
1473
  "eksProperties": NotRequired[EksPropertiesTypeDef],
1474
+ "ecsProperties": NotRequired[EcsPropertiesTypeDef],
1323
1475
  },
1324
1476
  )
1325
1477
  DescribeJobDefinitionsResponseTypeDef = TypedDict(
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.0"
5
+ __version__ = "1.34.52"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Vlad Emelianov
3
+ Copyright (c) 2024 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-batch
3
- Version: 1.34.0
4
- Summary: Type annotations for boto3.Batch 1.34.0 service generated with mypy-boto3-builder 7.21.0
3
+ Version: 1.34.52
4
+ Summary: Type annotations for boto3.Batch 1.34.52 service generated with mypy-boto3-builder 7.23.2
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
17
17
  Classifier: Natural Language :: English
18
18
  Classifier: Operating System :: OS Independent
19
19
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.7
21
20
  Classifier: Programming Language :: Python :: 3.8
22
21
  Classifier: Programming Language :: Python :: 3.9
23
22
  Classifier: Programming Language :: Python :: 3.10
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
26
25
  Classifier: Programming Language :: Python :: 3.13
27
26
  Classifier: Programming Language :: Python :: 3 :: Only
28
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
- Classifier: Typing :: Typed
30
- Requires-Python: >=3.7
28
+ Classifier: Typing :: Stubs Only
29
+ Requires-Python: >=3.8
31
30
  Description-Content-Type: text/markdown
32
31
  License-File: LICENSE
33
32
  Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
44
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
44
 
46
45
  Type annotations for
47
- [boto3.Batch 1.34.0](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch)
46
+ [boto3.Batch 1.34.52](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch)
48
47
  service compatible with [VSCode](https://code.visualstudio.com/),
49
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
53
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
53
 
55
54
  Generated by
56
- [mypy-boto3-builder 7.21.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
57
56
 
58
57
  More information can be found on
59
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -0,0 +1,18 @@
1
+ mypy_boto3_batch/__init__.py,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
2
+ mypy_boto3_batch/__init__.pyi,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
3
+ mypy_boto3_batch/__main__.py,sha256=QnUbvN3u1d-VIbfiLDjYUxvAEx5e5hKaRTKLEXFzSu0,911
4
+ mypy_boto3_batch/client.py,sha256=fqMRhlA1bpLahxMeUeAIIi41JN6qnJYQMXygQIbQoYY,20710
5
+ mypy_boto3_batch/client.pyi,sha256=w6aeHofL8VgjN0oFaJ1cokS5P8K0axQ5-zsklF43X9w,20707
6
+ mypy_boto3_batch/literals.py,sha256=WtmgmwcYaFL5gPEwJhC_MqUpcA5mfnC05uctOHeraks,11401
7
+ mypy_boto3_batch/literals.pyi,sha256=WtmgmwcYaFL5gPEwJhC_MqUpcA5mfnC05uctOHeraks,11401
8
+ mypy_boto3_batch/paginator.py,sha256=G4JEj_1BzubHSzCpgYrHFhfmaVwPUVgEpmDhH1DLt9o,6654
9
+ mypy_boto3_batch/paginator.pyi,sha256=0IUxpxdOszwdqfwpcDtL11KyLdRTPyTH4qada1l4-zc,6648
10
+ mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_batch/type_defs.py,sha256=KYuotN52G9uDpgkoyOxeepthqEn6doLxxiPPdutVMlY,49046
12
+ mypy_boto3_batch/type_defs.pyi,sha256=KYuotN52G9uDpgkoyOxeepthqEn6doLxxiPPdutVMlY,49046
13
+ mypy_boto3_batch/version.py,sha256=uOtNYicdR4OHc1m_i4zUx5QyFMtCjwORLYfbkORP9xQ,62
14
+ mypy_boto3_batch-1.34.52.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
15
+ mypy_boto3_batch-1.34.52.dist-info/METADATA,sha256=OigS7ELZQHRWmRigTvd6_Sc3b12PfvKEE7m1bpx417Y,13207
16
+ mypy_boto3_batch-1.34.52.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
+ mypy_boto3_batch-1.34.52.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
18
+ mypy_boto3_batch-1.34.52.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- mypy_boto3_batch/__init__.py,sha256=nE-a9kxdLhHtBmH0wmT6DuY1hS3rYaolwHyjqRESQk0,1511
2
- mypy_boto3_batch/__init__.pyi,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
3
- mypy_boto3_batch/__main__.py,sha256=5dYr_dX9pyT6L_jGNIKfpSLVKs0k6y-HYoaCVFDKST0,897
4
- mypy_boto3_batch/client.py,sha256=Z8yn_vMDcbuj4HvudDLGlnUGwmACkRE2lOUjuj1K5JQ,20523
5
- mypy_boto3_batch/client.pyi,sha256=Y9QTXPtUutQ6fFAvmBXe9uWzJUZtdDt19kodqYpGRqE,20519
6
- mypy_boto3_batch/literals.py,sha256=j6H914X2DclSmIYcdBYTLBvKoQGHA3XQGaPPm3mFIgM,11293
7
- mypy_boto3_batch/literals.pyi,sha256=UHlYXB-wMrp_V4ohiJGPrxHfHoJLYfWXVvs1rYB9pSQ,11291
8
- mypy_boto3_batch/paginator.py,sha256=2_ciWFfMVVRnEH-cMDtJeSkQ3y1D0K9QQYg0RS3Eb2c,6652
9
- mypy_boto3_batch/paginator.pyi,sha256=slnMm49y17XXBKyEMjyeWB5VUGB1bZYsJpGEv5KCB80,6645
10
- mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_batch/type_defs.py,sha256=ZhrwzjNYpZ_sFOaxzvbxzrko2zRHwkf-QHWkvAaufO0,42892
12
- mypy_boto3_batch/type_defs.pyi,sha256=XPGJVcomaU64iYReCFWLUzDTNzWbTQi1fvQMjpNDLLY,42891
13
- mypy_boto3_batch/version.py,sha256=8Qbu8HOCjrY6O2_gOYfRFBCem64Ka_MtjvbfMGE_iFg,61
14
- mypy_boto3_batch-1.34.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
- mypy_boto3_batch-1.34.0.dist-info/METADATA,sha256=YRwC2p6yatV1w6IVrLAZO5xaEsup2LO6ncVwMRheQYU,13249
16
- mypy_boto3_batch-1.34.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
- mypy_boto3_batch-1.34.0.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
18
- mypy_boto3_batch-1.34.0.dist-info/RECORD,,