mypy-boto3-batch 1.34.39__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.
- mypy_boto3_batch/__main__.py +4 -4
- mypy_boto3_batch/client.py +4 -0
- mypy_boto3_batch/client.pyi +4 -0
- mypy_boto3_batch/literals.py +2 -0
- mypy_boto3_batch/literals.pyi +2 -0
- mypy_boto3_batch/type_defs.py +154 -11
- mypy_boto3_batch/type_defs.pyi +154 -11
- mypy_boto3_batch/version.py +1 -1
- {mypy_boto3_batch-1.34.39.dist-info → mypy_boto3_batch-1.34.52.dist-info}/METADATA +4 -4
- mypy_boto3_batch-1.34.52.dist-info/RECORD +18 -0
- mypy_boto3_batch-1.34.39.dist-info/RECORD +0 -18
- {mypy_boto3_batch-1.34.39.dist-info → mypy_boto3_batch-1.34.52.dist-info}/LICENSE +0 -0
- {mypy_boto3_batch-1.34.39.dist-info → mypy_boto3_batch-1.34.52.dist-info}/WHEEL +0 -0
- {mypy_boto3_batch-1.34.39.dist-info → mypy_boto3_batch-1.34.52.dist-info}/top_level.txt +0 -0
mypy_boto3_batch/__main__.py
CHANGED
|
@@ -10,9 +10,9 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.Batch 1.34.
|
|
14
|
-
"Version: 1.34.
|
|
15
|
-
"Builder version: 7.23.
|
|
13
|
+
"Type annotations for boto3.Batch 1.34.52\n"
|
|
14
|
+
"Version: 1.34.52\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch\n"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.34.
|
|
27
|
+
print("1.34.52")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_batch/client.py
CHANGED
|
@@ -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,
|
|
@@ -337,6 +339,7 @@ class BatchClient(BaseClient):
|
|
|
337
339
|
tags: Mapping[str, str] = ...,
|
|
338
340
|
platformCapabilities: Sequence[PlatformCapabilityType] = ...,
|
|
339
341
|
eksProperties: EksPropertiesTypeDef = ...,
|
|
342
|
+
ecsProperties: EcsPropertiesTypeDef = ...,
|
|
340
343
|
) -> RegisterJobDefinitionResponseTypeDef:
|
|
341
344
|
"""
|
|
342
345
|
Registers an Batch job definition.
|
|
@@ -363,6 +366,7 @@ class BatchClient(BaseClient):
|
|
|
363
366
|
timeout: JobTimeoutTypeDef = ...,
|
|
364
367
|
tags: Mapping[str, str] = ...,
|
|
365
368
|
eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
|
|
369
|
+
ecsPropertiesOverride: EcsPropertiesOverrideTypeDef = ...,
|
|
366
370
|
) -> SubmitJobResponseTypeDef:
|
|
367
371
|
"""
|
|
368
372
|
Submits an Batch job from a job definition.
|
mypy_boto3_batch/client.pyi
CHANGED
|
@@ -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,
|
|
@@ -334,6 +336,7 @@ class BatchClient(BaseClient):
|
|
|
334
336
|
tags: Mapping[str, str] = ...,
|
|
335
337
|
platformCapabilities: Sequence[PlatformCapabilityType] = ...,
|
|
336
338
|
eksProperties: EksPropertiesTypeDef = ...,
|
|
339
|
+
ecsProperties: EcsPropertiesTypeDef = ...,
|
|
337
340
|
) -> RegisterJobDefinitionResponseTypeDef:
|
|
338
341
|
"""
|
|
339
342
|
Registers an Batch job definition.
|
|
@@ -360,6 +363,7 @@ class BatchClient(BaseClient):
|
|
|
360
363
|
timeout: JobTimeoutTypeDef = ...,
|
|
361
364
|
tags: Mapping[str, str] = ...,
|
|
362
365
|
eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
|
|
366
|
+
ecsPropertiesOverride: EcsPropertiesOverrideTypeDef = ...,
|
|
363
367
|
) -> SubmitJobResponseTypeDef:
|
|
364
368
|
"""
|
|
365
369
|
Submits an Batch job from a job definition.
|
mypy_boto3_batch/literals.py
CHANGED
|
@@ -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",
|
mypy_boto3_batch/literals.pyi
CHANGED
|
@@ -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",
|
mypy_boto3_batch/type_defs.py
CHANGED
|
@@ -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
|
-
"
|
|
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
|
-
"
|
|
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",
|
|
@@ -326,10 +336,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
326
336
|
"ResponseMetadataTypeDef",
|
|
327
337
|
{
|
|
328
338
|
"RequestId": str,
|
|
329
|
-
"HostId": str,
|
|
330
339
|
"HTTPStatusCode": int,
|
|
331
340
|
"HTTPHeaders": Dict[str, str],
|
|
332
341
|
"RetryAttempts": int,
|
|
342
|
+
"HostId": NotRequired[str],
|
|
333
343
|
},
|
|
334
344
|
)
|
|
335
345
|
DeleteComputeEnvironmentRequestRequestTypeDef = TypedDict(
|
|
@@ -573,6 +583,13 @@ TagResourceRequestRequestTypeDef = TypedDict(
|
|
|
573
583
|
"tags": Mapping[str, str],
|
|
574
584
|
},
|
|
575
585
|
)
|
|
586
|
+
TaskContainerDependencyTypeDef = TypedDict(
|
|
587
|
+
"TaskContainerDependencyTypeDef",
|
|
588
|
+
{
|
|
589
|
+
"containerName": NotRequired[str],
|
|
590
|
+
"condition": NotRequired[str],
|
|
591
|
+
},
|
|
592
|
+
)
|
|
576
593
|
TerminateJobRequestRequestTypeDef = TypedDict(
|
|
577
594
|
"TerminateJobRequestRequestTypeDef",
|
|
578
595
|
{
|
|
@@ -710,6 +727,15 @@ ContainerOverridesTypeDef = TypedDict(
|
|
|
710
727
|
"resourceRequirements": NotRequired[Sequence[ResourceRequirementTypeDef]],
|
|
711
728
|
},
|
|
712
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
|
+
)
|
|
713
739
|
LogConfigurationTypeDef = TypedDict(
|
|
714
740
|
"LogConfigurationTypeDef",
|
|
715
741
|
{
|
|
@@ -826,6 +852,7 @@ EksAttemptDetailTypeDef = TypedDict(
|
|
|
826
852
|
"EksAttemptDetailTypeDef",
|
|
827
853
|
{
|
|
828
854
|
"containers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
|
|
855
|
+
"initContainers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
|
|
829
856
|
"podName": NotRequired[str],
|
|
830
857
|
"nodeName": NotRequired[str],
|
|
831
858
|
"startedAt": NotRequired[int],
|
|
@@ -836,6 +863,7 @@ EksAttemptDetailTypeDef = TypedDict(
|
|
|
836
863
|
EksContainerOverrideTypeDef = TypedDict(
|
|
837
864
|
"EksContainerOverrideTypeDef",
|
|
838
865
|
{
|
|
866
|
+
"name": NotRequired[str],
|
|
839
867
|
"image": NotRequired[str],
|
|
840
868
|
"command": NotRequired[Sequence[str]],
|
|
841
869
|
"args": NotRequired[Sequence[str]],
|
|
@@ -1037,11 +1065,10 @@ UpdateComputeEnvironmentRequestRequestTypeDef = TypedDict(
|
|
|
1037
1065
|
"updatePolicy": NotRequired[UpdatePolicyTypeDef],
|
|
1038
1066
|
},
|
|
1039
1067
|
)
|
|
1040
|
-
|
|
1041
|
-
"
|
|
1068
|
+
TaskPropertiesOverrideTypeDef = TypedDict(
|
|
1069
|
+
"TaskPropertiesOverrideTypeDef",
|
|
1042
1070
|
{
|
|
1043
|
-
"
|
|
1044
|
-
"containerOverrides": NotRequired[ContainerOverridesTypeDef],
|
|
1071
|
+
"containers": NotRequired[Sequence[TaskContainerOverridesTypeDef]],
|
|
1045
1072
|
},
|
|
1046
1073
|
)
|
|
1047
1074
|
VolumeTypeDef = TypedDict(
|
|
@@ -1056,6 +1083,7 @@ EksPodPropertiesOverrideTypeDef = TypedDict(
|
|
|
1056
1083
|
"EksPodPropertiesOverrideTypeDef",
|
|
1057
1084
|
{
|
|
1058
1085
|
"containers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
|
|
1086
|
+
"initContainers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
|
|
1059
1087
|
"metadata": NotRequired[EksMetadataTypeDef],
|
|
1060
1088
|
},
|
|
1061
1089
|
)
|
|
@@ -1066,10 +1094,12 @@ EksPodPropertiesDetailTypeDef = TypedDict(
|
|
|
1066
1094
|
"hostNetwork": NotRequired[bool],
|
|
1067
1095
|
"dnsPolicy": NotRequired[str],
|
|
1068
1096
|
"containers": NotRequired[List[EksContainerDetailTypeDef]],
|
|
1097
|
+
"initContainers": NotRequired[List[EksContainerDetailTypeDef]],
|
|
1069
1098
|
"volumes": NotRequired[List[EksVolumeTypeDef]],
|
|
1070
1099
|
"podName": NotRequired[str],
|
|
1071
1100
|
"nodeName": NotRequired[str],
|
|
1072
1101
|
"metadata": NotRequired[EksMetadataTypeDef],
|
|
1102
|
+
"shareProcessNamespace": NotRequired[bool],
|
|
1073
1103
|
},
|
|
1074
1104
|
)
|
|
1075
1105
|
EksPodPropertiesTypeDef = TypedDict(
|
|
@@ -1079,8 +1109,10 @@ EksPodPropertiesTypeDef = TypedDict(
|
|
|
1079
1109
|
"hostNetwork": NotRequired[bool],
|
|
1080
1110
|
"dnsPolicy": NotRequired[str],
|
|
1081
1111
|
"containers": NotRequired[List[EksContainerTypeDef]],
|
|
1112
|
+
"initContainers": NotRequired[List[EksContainerTypeDef]],
|
|
1082
1113
|
"volumes": NotRequired[List[EksVolumeTypeDef]],
|
|
1083
1114
|
"metadata": NotRequired[EksMetadataTypeDef],
|
|
1115
|
+
"shareProcessNamespace": NotRequired[bool],
|
|
1084
1116
|
},
|
|
1085
1117
|
)
|
|
1086
1118
|
CreateSchedulingPolicyRequestRequestTypeDef = TypedDict(
|
|
@@ -1115,6 +1147,52 @@ ListJobsResponseTypeDef = TypedDict(
|
|
|
1115
1147
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1116
1148
|
},
|
|
1117
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
|
+
)
|
|
1118
1196
|
DescribeComputeEnvironmentsResponsePaginatorTypeDef = TypedDict(
|
|
1119
1197
|
"DescribeComputeEnvironmentsResponsePaginatorTypeDef",
|
|
1120
1198
|
{
|
|
@@ -1131,11 +1209,10 @@ DescribeComputeEnvironmentsResponseTypeDef = TypedDict(
|
|
|
1131
1209
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1132
1210
|
},
|
|
1133
1211
|
)
|
|
1134
|
-
|
|
1135
|
-
"
|
|
1212
|
+
EcsPropertiesOverrideTypeDef = TypedDict(
|
|
1213
|
+
"EcsPropertiesOverrideTypeDef",
|
|
1136
1214
|
{
|
|
1137
|
-
"
|
|
1138
|
-
"nodePropertyOverrides": NotRequired[Sequence[NodePropertyOverrideTypeDef]],
|
|
1215
|
+
"taskProperties": NotRequired[Sequence[TaskPropertiesOverrideTypeDef]],
|
|
1139
1216
|
},
|
|
1140
1217
|
)
|
|
1141
1218
|
ContainerDetailTypeDef = TypedDict(
|
|
@@ -1225,11 +1302,73 @@ DescribeSchedulingPoliciesResponseTypeDef = TypedDict(
|
|
|
1225
1302
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1226
1303
|
},
|
|
1227
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
|
+
)
|
|
1228
1365
|
NodeRangePropertyTypeDef = TypedDict(
|
|
1229
1366
|
"NodeRangePropertyTypeDef",
|
|
1230
1367
|
{
|
|
1231
1368
|
"targetNodes": str,
|
|
1232
1369
|
"container": NotRequired[ContainerPropertiesTypeDef],
|
|
1370
|
+
"instanceTypes": NotRequired[List[str]],
|
|
1371
|
+
"ecsProperties": NotRequired[EcsPropertiesTypeDef],
|
|
1233
1372
|
},
|
|
1234
1373
|
)
|
|
1235
1374
|
SubmitJobRequestRequestTypeDef = TypedDict(
|
|
@@ -1250,6 +1389,7 @@ SubmitJobRequestRequestTypeDef = TypedDict(
|
|
|
1250
1389
|
"timeout": NotRequired[JobTimeoutTypeDef],
|
|
1251
1390
|
"tags": NotRequired[Mapping[str, str]],
|
|
1252
1391
|
"eksPropertiesOverride": NotRequired[EksPropertiesOverrideTypeDef],
|
|
1392
|
+
"ecsPropertiesOverride": NotRequired[EcsPropertiesOverrideTypeDef],
|
|
1253
1393
|
},
|
|
1254
1394
|
)
|
|
1255
1395
|
NodePropertiesTypeDef = TypedDict(
|
|
@@ -1277,6 +1417,7 @@ JobDefinitionTypeDef = TypedDict(
|
|
|
1277
1417
|
"tags": NotRequired[Dict[str, str]],
|
|
1278
1418
|
"propagateTags": NotRequired[bool],
|
|
1279
1419
|
"platformCapabilities": NotRequired[List[PlatformCapabilityType]],
|
|
1420
|
+
"ecsProperties": NotRequired[EcsPropertiesTypeDef],
|
|
1280
1421
|
"eksProperties": NotRequired[EksPropertiesTypeDef],
|
|
1281
1422
|
"containerOrchestrationType": NotRequired[OrchestrationTypeType],
|
|
1282
1423
|
},
|
|
@@ -1310,6 +1451,7 @@ JobDetailTypeDef = TypedDict(
|
|
|
1310
1451
|
"platformCapabilities": NotRequired[List[PlatformCapabilityType]],
|
|
1311
1452
|
"eksProperties": NotRequired[EksPropertiesDetailTypeDef],
|
|
1312
1453
|
"eksAttempts": NotRequired[List[EksAttemptDetailTypeDef]],
|
|
1454
|
+
"ecsProperties": NotRequired[EcsPropertiesDetailTypeDef],
|
|
1313
1455
|
"isCancelled": NotRequired[bool],
|
|
1314
1456
|
"isTerminated": NotRequired[bool],
|
|
1315
1457
|
},
|
|
@@ -1329,6 +1471,7 @@ RegisterJobDefinitionRequestRequestTypeDef = TypedDict(
|
|
|
1329
1471
|
"tags": NotRequired[Mapping[str, str]],
|
|
1330
1472
|
"platformCapabilities": NotRequired[Sequence[PlatformCapabilityType]],
|
|
1331
1473
|
"eksProperties": NotRequired[EksPropertiesTypeDef],
|
|
1474
|
+
"ecsProperties": NotRequired[EcsPropertiesTypeDef],
|
|
1332
1475
|
},
|
|
1333
1476
|
)
|
|
1334
1477
|
DescribeJobDefinitionsResponseTypeDef = TypedDict(
|
mypy_boto3_batch/type_defs.pyi
CHANGED
|
@@ -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
|
-
"
|
|
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
|
-
"
|
|
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",
|
|
@@ -326,10 +336,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
326
336
|
"ResponseMetadataTypeDef",
|
|
327
337
|
{
|
|
328
338
|
"RequestId": str,
|
|
329
|
-
"HostId": str,
|
|
330
339
|
"HTTPStatusCode": int,
|
|
331
340
|
"HTTPHeaders": Dict[str, str],
|
|
332
341
|
"RetryAttempts": int,
|
|
342
|
+
"HostId": NotRequired[str],
|
|
333
343
|
},
|
|
334
344
|
)
|
|
335
345
|
DeleteComputeEnvironmentRequestRequestTypeDef = TypedDict(
|
|
@@ -573,6 +583,13 @@ TagResourceRequestRequestTypeDef = TypedDict(
|
|
|
573
583
|
"tags": Mapping[str, str],
|
|
574
584
|
},
|
|
575
585
|
)
|
|
586
|
+
TaskContainerDependencyTypeDef = TypedDict(
|
|
587
|
+
"TaskContainerDependencyTypeDef",
|
|
588
|
+
{
|
|
589
|
+
"containerName": NotRequired[str],
|
|
590
|
+
"condition": NotRequired[str],
|
|
591
|
+
},
|
|
592
|
+
)
|
|
576
593
|
TerminateJobRequestRequestTypeDef = TypedDict(
|
|
577
594
|
"TerminateJobRequestRequestTypeDef",
|
|
578
595
|
{
|
|
@@ -710,6 +727,15 @@ ContainerOverridesTypeDef = TypedDict(
|
|
|
710
727
|
"resourceRequirements": NotRequired[Sequence[ResourceRequirementTypeDef]],
|
|
711
728
|
},
|
|
712
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
|
+
)
|
|
713
739
|
LogConfigurationTypeDef = TypedDict(
|
|
714
740
|
"LogConfigurationTypeDef",
|
|
715
741
|
{
|
|
@@ -826,6 +852,7 @@ EksAttemptDetailTypeDef = TypedDict(
|
|
|
826
852
|
"EksAttemptDetailTypeDef",
|
|
827
853
|
{
|
|
828
854
|
"containers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
|
|
855
|
+
"initContainers": NotRequired[List[EksAttemptContainerDetailTypeDef]],
|
|
829
856
|
"podName": NotRequired[str],
|
|
830
857
|
"nodeName": NotRequired[str],
|
|
831
858
|
"startedAt": NotRequired[int],
|
|
@@ -836,6 +863,7 @@ EksAttemptDetailTypeDef = TypedDict(
|
|
|
836
863
|
EksContainerOverrideTypeDef = TypedDict(
|
|
837
864
|
"EksContainerOverrideTypeDef",
|
|
838
865
|
{
|
|
866
|
+
"name": NotRequired[str],
|
|
839
867
|
"image": NotRequired[str],
|
|
840
868
|
"command": NotRequired[Sequence[str]],
|
|
841
869
|
"args": NotRequired[Sequence[str]],
|
|
@@ -1037,11 +1065,10 @@ UpdateComputeEnvironmentRequestRequestTypeDef = TypedDict(
|
|
|
1037
1065
|
"updatePolicy": NotRequired[UpdatePolicyTypeDef],
|
|
1038
1066
|
},
|
|
1039
1067
|
)
|
|
1040
|
-
|
|
1041
|
-
"
|
|
1068
|
+
TaskPropertiesOverrideTypeDef = TypedDict(
|
|
1069
|
+
"TaskPropertiesOverrideTypeDef",
|
|
1042
1070
|
{
|
|
1043
|
-
"
|
|
1044
|
-
"containerOverrides": NotRequired[ContainerOverridesTypeDef],
|
|
1071
|
+
"containers": NotRequired[Sequence[TaskContainerOverridesTypeDef]],
|
|
1045
1072
|
},
|
|
1046
1073
|
)
|
|
1047
1074
|
VolumeTypeDef = TypedDict(
|
|
@@ -1056,6 +1083,7 @@ EksPodPropertiesOverrideTypeDef = TypedDict(
|
|
|
1056
1083
|
"EksPodPropertiesOverrideTypeDef",
|
|
1057
1084
|
{
|
|
1058
1085
|
"containers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
|
|
1086
|
+
"initContainers": NotRequired[Sequence[EksContainerOverrideTypeDef]],
|
|
1059
1087
|
"metadata": NotRequired[EksMetadataTypeDef],
|
|
1060
1088
|
},
|
|
1061
1089
|
)
|
|
@@ -1066,10 +1094,12 @@ EksPodPropertiesDetailTypeDef = TypedDict(
|
|
|
1066
1094
|
"hostNetwork": NotRequired[bool],
|
|
1067
1095
|
"dnsPolicy": NotRequired[str],
|
|
1068
1096
|
"containers": NotRequired[List[EksContainerDetailTypeDef]],
|
|
1097
|
+
"initContainers": NotRequired[List[EksContainerDetailTypeDef]],
|
|
1069
1098
|
"volumes": NotRequired[List[EksVolumeTypeDef]],
|
|
1070
1099
|
"podName": NotRequired[str],
|
|
1071
1100
|
"nodeName": NotRequired[str],
|
|
1072
1101
|
"metadata": NotRequired[EksMetadataTypeDef],
|
|
1102
|
+
"shareProcessNamespace": NotRequired[bool],
|
|
1073
1103
|
},
|
|
1074
1104
|
)
|
|
1075
1105
|
EksPodPropertiesTypeDef = TypedDict(
|
|
@@ -1079,8 +1109,10 @@ EksPodPropertiesTypeDef = TypedDict(
|
|
|
1079
1109
|
"hostNetwork": NotRequired[bool],
|
|
1080
1110
|
"dnsPolicy": NotRequired[str],
|
|
1081
1111
|
"containers": NotRequired[List[EksContainerTypeDef]],
|
|
1112
|
+
"initContainers": NotRequired[List[EksContainerTypeDef]],
|
|
1082
1113
|
"volumes": NotRequired[List[EksVolumeTypeDef]],
|
|
1083
1114
|
"metadata": NotRequired[EksMetadataTypeDef],
|
|
1115
|
+
"shareProcessNamespace": NotRequired[bool],
|
|
1084
1116
|
},
|
|
1085
1117
|
)
|
|
1086
1118
|
CreateSchedulingPolicyRequestRequestTypeDef = TypedDict(
|
|
@@ -1115,6 +1147,52 @@ ListJobsResponseTypeDef = TypedDict(
|
|
|
1115
1147
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1116
1148
|
},
|
|
1117
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
|
+
)
|
|
1118
1196
|
DescribeComputeEnvironmentsResponsePaginatorTypeDef = TypedDict(
|
|
1119
1197
|
"DescribeComputeEnvironmentsResponsePaginatorTypeDef",
|
|
1120
1198
|
{
|
|
@@ -1131,11 +1209,10 @@ DescribeComputeEnvironmentsResponseTypeDef = TypedDict(
|
|
|
1131
1209
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1132
1210
|
},
|
|
1133
1211
|
)
|
|
1134
|
-
|
|
1135
|
-
"
|
|
1212
|
+
EcsPropertiesOverrideTypeDef = TypedDict(
|
|
1213
|
+
"EcsPropertiesOverrideTypeDef",
|
|
1136
1214
|
{
|
|
1137
|
-
"
|
|
1138
|
-
"nodePropertyOverrides": NotRequired[Sequence[NodePropertyOverrideTypeDef]],
|
|
1215
|
+
"taskProperties": NotRequired[Sequence[TaskPropertiesOverrideTypeDef]],
|
|
1139
1216
|
},
|
|
1140
1217
|
)
|
|
1141
1218
|
ContainerDetailTypeDef = TypedDict(
|
|
@@ -1225,11 +1302,73 @@ DescribeSchedulingPoliciesResponseTypeDef = TypedDict(
|
|
|
1225
1302
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1226
1303
|
},
|
|
1227
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
|
+
)
|
|
1228
1365
|
NodeRangePropertyTypeDef = TypedDict(
|
|
1229
1366
|
"NodeRangePropertyTypeDef",
|
|
1230
1367
|
{
|
|
1231
1368
|
"targetNodes": str,
|
|
1232
1369
|
"container": NotRequired[ContainerPropertiesTypeDef],
|
|
1370
|
+
"instanceTypes": NotRequired[List[str]],
|
|
1371
|
+
"ecsProperties": NotRequired[EcsPropertiesTypeDef],
|
|
1233
1372
|
},
|
|
1234
1373
|
)
|
|
1235
1374
|
SubmitJobRequestRequestTypeDef = TypedDict(
|
|
@@ -1250,6 +1389,7 @@ SubmitJobRequestRequestTypeDef = TypedDict(
|
|
|
1250
1389
|
"timeout": NotRequired[JobTimeoutTypeDef],
|
|
1251
1390
|
"tags": NotRequired[Mapping[str, str]],
|
|
1252
1391
|
"eksPropertiesOverride": NotRequired[EksPropertiesOverrideTypeDef],
|
|
1392
|
+
"ecsPropertiesOverride": NotRequired[EcsPropertiesOverrideTypeDef],
|
|
1253
1393
|
},
|
|
1254
1394
|
)
|
|
1255
1395
|
NodePropertiesTypeDef = TypedDict(
|
|
@@ -1277,6 +1417,7 @@ JobDefinitionTypeDef = TypedDict(
|
|
|
1277
1417
|
"tags": NotRequired[Dict[str, str]],
|
|
1278
1418
|
"propagateTags": NotRequired[bool],
|
|
1279
1419
|
"platformCapabilities": NotRequired[List[PlatformCapabilityType]],
|
|
1420
|
+
"ecsProperties": NotRequired[EcsPropertiesTypeDef],
|
|
1280
1421
|
"eksProperties": NotRequired[EksPropertiesTypeDef],
|
|
1281
1422
|
"containerOrchestrationType": NotRequired[OrchestrationTypeType],
|
|
1282
1423
|
},
|
|
@@ -1310,6 +1451,7 @@ JobDetailTypeDef = TypedDict(
|
|
|
1310
1451
|
"platformCapabilities": NotRequired[List[PlatformCapabilityType]],
|
|
1311
1452
|
"eksProperties": NotRequired[EksPropertiesDetailTypeDef],
|
|
1312
1453
|
"eksAttempts": NotRequired[List[EksAttemptDetailTypeDef]],
|
|
1454
|
+
"ecsProperties": NotRequired[EcsPropertiesDetailTypeDef],
|
|
1313
1455
|
"isCancelled": NotRequired[bool],
|
|
1314
1456
|
"isTerminated": NotRequired[bool],
|
|
1315
1457
|
},
|
|
@@ -1329,6 +1471,7 @@ RegisterJobDefinitionRequestRequestTypeDef = TypedDict(
|
|
|
1329
1471
|
"tags": NotRequired[Mapping[str, str]],
|
|
1330
1472
|
"platformCapabilities": NotRequired[Sequence[PlatformCapabilityType]],
|
|
1331
1473
|
"eksProperties": NotRequired[EksPropertiesTypeDef],
|
|
1474
|
+
"ecsProperties": NotRequired[EcsPropertiesTypeDef],
|
|
1332
1475
|
},
|
|
1333
1476
|
)
|
|
1334
1477
|
DescribeJobDefinitionsResponseTypeDef = TypedDict(
|
mypy_boto3_batch/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-batch
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.Batch 1.34.
|
|
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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.Batch 1.34.
|
|
46
|
+
[boto3.Batch 1.34.52](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.23.
|
|
55
|
+
[mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
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=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
|
|
2
|
-
mypy_boto3_batch/__init__.pyi,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
|
|
3
|
-
mypy_boto3_batch/__main__.py,sha256=uZg09izM-0Y1ZERCD6Ti1bPbCz8OnRfGmrh3vD9fq9Q,911
|
|
4
|
-
mypy_boto3_batch/client.py,sha256=RocU92N-HGXVxHFP3HbchMPXT48Jsji1S1uhKKGMbLo,20532
|
|
5
|
-
mypy_boto3_batch/client.pyi,sha256=ZVWm4r28tO87Uqwq-jDz8BO8aiWbrVq4zejZ4KXmaDI,20529
|
|
6
|
-
mypy_boto3_batch/literals.py,sha256=hN3MMQSBWXDYPFnp8jFiPmSwclMwVXv-WWoee48x5YU,11370
|
|
7
|
-
mypy_boto3_batch/literals.pyi,sha256=hN3MMQSBWXDYPFnp8jFiPmSwclMwVXv-WWoee48x5YU,11370
|
|
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=ubNVwAZbzYdn5pqE2iOmuz-DnbD46oZC2ZCVJe_Wf3k,43209
|
|
12
|
-
mypy_boto3_batch/type_defs.pyi,sha256=ubNVwAZbzYdn5pqE2iOmuz-DnbD46oZC2ZCVJe_Wf3k,43209
|
|
13
|
-
mypy_boto3_batch/version.py,sha256=hYa4wgupsUikB-MSssjgh_5NbHrQQRz2EFxdj6BiKrI,62
|
|
14
|
-
mypy_boto3_batch-1.34.39.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
-
mypy_boto3_batch-1.34.39.dist-info/METADATA,sha256=caBJ3_R6IeKbrBRrGWbwvxcVfwTiQoTvpVeOOy4Qv-E,13207
|
|
16
|
-
mypy_boto3_batch-1.34.39.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
17
|
-
mypy_boto3_batch-1.34.39.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
-
mypy_boto3_batch-1.34.39.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|