types-boto3-batch 1.37.2__py3-none-any.whl → 1.37.22__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.
- types_boto3_batch/__main__.py +4 -4
- types_boto3_batch/literals.py +7 -1
- types_boto3_batch/literals.pyi +7 -1
- types_boto3_batch/type_defs.py +28 -0
- types_boto3_batch/type_defs.pyi +27 -0
- types_boto3_batch/version.py +1 -1
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.37.22.dist-info}/METADATA +7 -6
- types_boto3_batch-1.37.22.dist-info/RECORD +18 -0
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.37.22.dist-info}/WHEEL +1 -1
- types_boto3_batch-1.37.2.dist-info/RECORD +0 -18
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.37.22.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.37.22.dist-info}/top_level.txt +0 -0
types_boto3_batch/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Batch 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Batch 1.37.22\n"
|
|
16
|
+
"Version: 1.37.22\n"
|
|
17
|
+
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_batch//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#batch\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.22\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_batch/literals.py
CHANGED
|
@@ -38,6 +38,7 @@ __all__ = (
|
|
|
38
38
|
"DeviceCgroupPermissionType",
|
|
39
39
|
"EFSAuthorizationConfigIAMType",
|
|
40
40
|
"EFSTransitEncryptionType",
|
|
41
|
+
"FirelensConfigurationTypeType",
|
|
41
42
|
"JQStateType",
|
|
42
43
|
"JQStatusType",
|
|
43
44
|
"JobDefinitionTypeType",
|
|
@@ -78,6 +79,7 @@ DescribeJobQueuesPaginatorName = Literal["describe_job_queues"]
|
|
|
78
79
|
DeviceCgroupPermissionType = Literal["MKNOD", "READ", "WRITE"]
|
|
79
80
|
EFSAuthorizationConfigIAMType = Literal["DISABLED", "ENABLED"]
|
|
80
81
|
EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
82
|
+
FirelensConfigurationTypeType = Literal["fluentbit", "fluentd"]
|
|
81
83
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
82
84
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
83
85
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
@@ -90,7 +92,9 @@ ListConsumableResourcesPaginatorName = Literal["list_consumable_resources"]
|
|
|
90
92
|
ListJobsByConsumableResourcePaginatorName = Literal["list_jobs_by_consumable_resource"]
|
|
91
93
|
ListJobsPaginatorName = Literal["list_jobs"]
|
|
92
94
|
ListSchedulingPoliciesPaginatorName = Literal["list_scheduling_policies"]
|
|
93
|
-
LogDriverType = Literal[
|
|
95
|
+
LogDriverType = Literal[
|
|
96
|
+
"awsfirelens", "awslogs", "fluentd", "gelf", "journald", "json-file", "splunk", "syslog"
|
|
97
|
+
]
|
|
94
98
|
OrchestrationTypeType = Literal["ECS", "EKS"]
|
|
95
99
|
PlatformCapabilityType = Literal["EC2", "FARGATE"]
|
|
96
100
|
ResourceTypeType = Literal["GPU", "MEMORY", "VCPU"]
|
|
@@ -252,6 +256,7 @@ ServiceName = Literal[
|
|
|
252
256
|
"freetier",
|
|
253
257
|
"fsx",
|
|
254
258
|
"gamelift",
|
|
259
|
+
"gameliftstreams",
|
|
255
260
|
"geo-maps",
|
|
256
261
|
"geo-places",
|
|
257
262
|
"geo-routes",
|
|
@@ -277,6 +282,7 @@ ServiceName = Literal[
|
|
|
277
282
|
"iot",
|
|
278
283
|
"iot-data",
|
|
279
284
|
"iot-jobs-data",
|
|
285
|
+
"iot-managed-integrations",
|
|
280
286
|
"iotanalytics",
|
|
281
287
|
"iotdeviceadvisor",
|
|
282
288
|
"iotevents",
|
types_boto3_batch/literals.pyi
CHANGED
|
@@ -37,6 +37,7 @@ __all__ = (
|
|
|
37
37
|
"DeviceCgroupPermissionType",
|
|
38
38
|
"EFSAuthorizationConfigIAMType",
|
|
39
39
|
"EFSTransitEncryptionType",
|
|
40
|
+
"FirelensConfigurationTypeType",
|
|
40
41
|
"JQStateType",
|
|
41
42
|
"JQStatusType",
|
|
42
43
|
"JobDefinitionTypeType",
|
|
@@ -76,6 +77,7 @@ DescribeJobQueuesPaginatorName = Literal["describe_job_queues"]
|
|
|
76
77
|
DeviceCgroupPermissionType = Literal["MKNOD", "READ", "WRITE"]
|
|
77
78
|
EFSAuthorizationConfigIAMType = Literal["DISABLED", "ENABLED"]
|
|
78
79
|
EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
80
|
+
FirelensConfigurationTypeType = Literal["fluentbit", "fluentd"]
|
|
79
81
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
80
82
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
81
83
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
@@ -88,7 +90,9 @@ ListConsumableResourcesPaginatorName = Literal["list_consumable_resources"]
|
|
|
88
90
|
ListJobsByConsumableResourcePaginatorName = Literal["list_jobs_by_consumable_resource"]
|
|
89
91
|
ListJobsPaginatorName = Literal["list_jobs"]
|
|
90
92
|
ListSchedulingPoliciesPaginatorName = Literal["list_scheduling_policies"]
|
|
91
|
-
LogDriverType = Literal[
|
|
93
|
+
LogDriverType = Literal[
|
|
94
|
+
"awsfirelens", "awslogs", "fluentd", "gelf", "journald", "json-file", "splunk", "syslog"
|
|
95
|
+
]
|
|
92
96
|
OrchestrationTypeType = Literal["ECS", "EKS"]
|
|
93
97
|
PlatformCapabilityType = Literal["EC2", "FARGATE"]
|
|
94
98
|
ResourceTypeType = Literal["GPU", "MEMORY", "VCPU"]
|
|
@@ -250,6 +254,7 @@ ServiceName = Literal[
|
|
|
250
254
|
"freetier",
|
|
251
255
|
"fsx",
|
|
252
256
|
"gamelift",
|
|
257
|
+
"gameliftstreams",
|
|
253
258
|
"geo-maps",
|
|
254
259
|
"geo-places",
|
|
255
260
|
"geo-routes",
|
|
@@ -275,6 +280,7 @@ ServiceName = Literal[
|
|
|
275
280
|
"iot",
|
|
276
281
|
"iot-data",
|
|
277
282
|
"iot-jobs-data",
|
|
283
|
+
"iot-managed-integrations",
|
|
278
284
|
"iotanalytics",
|
|
279
285
|
"iotdeviceadvisor",
|
|
280
286
|
"iotevents",
|
types_boto3_batch/type_defs.py
CHANGED
|
@@ -31,6 +31,7 @@ from .literals import (
|
|
|
31
31
|
DeviceCgroupPermissionType,
|
|
32
32
|
EFSAuthorizationConfigIAMType,
|
|
33
33
|
EFSTransitEncryptionType,
|
|
34
|
+
FirelensConfigurationTypeType,
|
|
34
35
|
JobDefinitionTypeType,
|
|
35
36
|
JobStatusType,
|
|
36
37
|
JQStateType,
|
|
@@ -157,6 +158,8 @@ __all__ = (
|
|
|
157
158
|
"FairsharePolicyTypeDef",
|
|
158
159
|
"FairsharePolicyUnionTypeDef",
|
|
159
160
|
"FargatePlatformConfigurationTypeDef",
|
|
161
|
+
"FirelensConfigurationOutputTypeDef",
|
|
162
|
+
"FirelensConfigurationTypeDef",
|
|
160
163
|
"FrontOfQueueDetailTypeDef",
|
|
161
164
|
"FrontOfQueueJobSummaryTypeDef",
|
|
162
165
|
"GetJobQueueSnapshotRequestTypeDef",
|
|
@@ -548,6 +551,22 @@ class ShareAttributesTypeDef(TypedDict):
|
|
|
548
551
|
weightFactor: NotRequired[float]
|
|
549
552
|
|
|
550
553
|
|
|
554
|
+
FirelensConfigurationOutputTypeDef = TypedDict(
|
|
555
|
+
"FirelensConfigurationOutputTypeDef",
|
|
556
|
+
{
|
|
557
|
+
"type": FirelensConfigurationTypeType,
|
|
558
|
+
"options": NotRequired[Dict[str, str]],
|
|
559
|
+
},
|
|
560
|
+
)
|
|
561
|
+
FirelensConfigurationTypeDef = TypedDict(
|
|
562
|
+
"FirelensConfigurationTypeDef",
|
|
563
|
+
{
|
|
564
|
+
"type": FirelensConfigurationTypeType,
|
|
565
|
+
"options": NotRequired[Mapping[str, str]],
|
|
566
|
+
},
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
|
|
551
570
|
class FrontOfQueueJobSummaryTypeDef(TypedDict):
|
|
552
571
|
jobArn: NotRequired[str]
|
|
553
572
|
earliestTimeAtPosition: NotRequired[int]
|
|
@@ -1185,6 +1204,7 @@ class TaskContainerDetailsTypeDef(TypedDict):
|
|
|
1185
1204
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1186
1205
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1187
1206
|
essential: NotRequired[bool]
|
|
1207
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1188
1208
|
image: NotRequired[str]
|
|
1189
1209
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1190
1210
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
@@ -1209,6 +1229,7 @@ class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1209
1229
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1210
1230
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1211
1231
|
essential: NotRequired[bool]
|
|
1232
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1212
1233
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1213
1234
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1214
1235
|
mountPoints: NotRequired[List[MountPointTypeDef]]
|
|
@@ -1228,6 +1249,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1228
1249
|
dependsOn: NotRequired[Sequence[TaskContainerDependencyTypeDef]]
|
|
1229
1250
|
environment: NotRequired[Sequence[KeyValuePairTypeDef]]
|
|
1230
1251
|
essential: NotRequired[bool]
|
|
1252
|
+
firelensConfiguration: NotRequired[FirelensConfigurationTypeDef]
|
|
1231
1253
|
linuxParameters: NotRequired[LinuxParametersTypeDef]
|
|
1232
1254
|
logConfiguration: NotRequired[LogConfigurationTypeDef]
|
|
1233
1255
|
mountPoints: NotRequired[Sequence[MountPointTypeDef]]
|
|
@@ -1289,6 +1311,7 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1289
1311
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1290
1312
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1291
1313
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1314
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1292
1315
|
|
|
1293
1316
|
|
|
1294
1317
|
class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
@@ -1312,6 +1335,7 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1312
1335
|
secrets: NotRequired[List[SecretTypeDef]]
|
|
1313
1336
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1314
1337
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1338
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1315
1339
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1316
1340
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1317
1341
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1338,6 +1362,7 @@ class ContainerPropertiesTypeDef(TypedDict):
|
|
|
1338
1362
|
secrets: NotRequired[Sequence[SecretTypeDef]]
|
|
1339
1363
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1340
1364
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1365
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1341
1366
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1342
1367
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1343
1368
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1438,6 +1463,7 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1438
1463
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1439
1464
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1440
1465
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1466
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1441
1467
|
|
|
1442
1468
|
|
|
1443
1469
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
@@ -1451,6 +1477,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1451
1477
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1452
1478
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1453
1479
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1480
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1454
1481
|
|
|
1455
1482
|
|
|
1456
1483
|
class EcsTaskPropertiesTypeDef(TypedDict):
|
|
@@ -1464,6 +1491,7 @@ class EcsTaskPropertiesTypeDef(TypedDict):
|
|
|
1464
1491
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1465
1492
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1466
1493
|
volumes: NotRequired[Sequence[VolumeTypeDef]]
|
|
1494
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1467
1495
|
|
|
1468
1496
|
|
|
1469
1497
|
ContainerPropertiesUnionTypeDef = Union[
|
types_boto3_batch/type_defs.pyi
CHANGED
|
@@ -31,6 +31,7 @@ from .literals import (
|
|
|
31
31
|
DeviceCgroupPermissionType,
|
|
32
32
|
EFSAuthorizationConfigIAMType,
|
|
33
33
|
EFSTransitEncryptionType,
|
|
34
|
+
FirelensConfigurationTypeType,
|
|
34
35
|
JobDefinitionTypeType,
|
|
35
36
|
JobStatusType,
|
|
36
37
|
JQStateType,
|
|
@@ -156,6 +157,8 @@ __all__ = (
|
|
|
156
157
|
"FairsharePolicyTypeDef",
|
|
157
158
|
"FairsharePolicyUnionTypeDef",
|
|
158
159
|
"FargatePlatformConfigurationTypeDef",
|
|
160
|
+
"FirelensConfigurationOutputTypeDef",
|
|
161
|
+
"FirelensConfigurationTypeDef",
|
|
159
162
|
"FrontOfQueueDetailTypeDef",
|
|
160
163
|
"FrontOfQueueJobSummaryTypeDef",
|
|
161
164
|
"GetJobQueueSnapshotRequestTypeDef",
|
|
@@ -491,6 +494,21 @@ class ShareAttributesTypeDef(TypedDict):
|
|
|
491
494
|
shareIdentifier: str
|
|
492
495
|
weightFactor: NotRequired[float]
|
|
493
496
|
|
|
497
|
+
FirelensConfigurationOutputTypeDef = TypedDict(
|
|
498
|
+
"FirelensConfigurationOutputTypeDef",
|
|
499
|
+
{
|
|
500
|
+
"type": FirelensConfigurationTypeType,
|
|
501
|
+
"options": NotRequired[Dict[str, str]],
|
|
502
|
+
},
|
|
503
|
+
)
|
|
504
|
+
FirelensConfigurationTypeDef = TypedDict(
|
|
505
|
+
"FirelensConfigurationTypeDef",
|
|
506
|
+
{
|
|
507
|
+
"type": FirelensConfigurationTypeType,
|
|
508
|
+
"options": NotRequired[Mapping[str, str]],
|
|
509
|
+
},
|
|
510
|
+
)
|
|
511
|
+
|
|
494
512
|
class FrontOfQueueJobSummaryTypeDef(TypedDict):
|
|
495
513
|
jobArn: NotRequired[str]
|
|
496
514
|
earliestTimeAtPosition: NotRequired[int]
|
|
@@ -1039,6 +1057,7 @@ class TaskContainerDetailsTypeDef(TypedDict):
|
|
|
1039
1057
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1040
1058
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1041
1059
|
essential: NotRequired[bool]
|
|
1060
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1042
1061
|
image: NotRequired[str]
|
|
1043
1062
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1044
1063
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
@@ -1062,6 +1081,7 @@ class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1062
1081
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1063
1082
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1064
1083
|
essential: NotRequired[bool]
|
|
1084
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1065
1085
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1066
1086
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1067
1087
|
mountPoints: NotRequired[List[MountPointTypeDef]]
|
|
@@ -1080,6 +1100,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1080
1100
|
dependsOn: NotRequired[Sequence[TaskContainerDependencyTypeDef]]
|
|
1081
1101
|
environment: NotRequired[Sequence[KeyValuePairTypeDef]]
|
|
1082
1102
|
essential: NotRequired[bool]
|
|
1103
|
+
firelensConfiguration: NotRequired[FirelensConfigurationTypeDef]
|
|
1083
1104
|
linuxParameters: NotRequired[LinuxParametersTypeDef]
|
|
1084
1105
|
logConfiguration: NotRequired[LogConfigurationTypeDef]
|
|
1085
1106
|
mountPoints: NotRequired[Sequence[MountPointTypeDef]]
|
|
@@ -1137,6 +1158,7 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1137
1158
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1138
1159
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1139
1160
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1161
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1140
1162
|
|
|
1141
1163
|
class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
1142
1164
|
image: NotRequired[str]
|
|
@@ -1159,6 +1181,7 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1159
1181
|
secrets: NotRequired[List[SecretTypeDef]]
|
|
1160
1182
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1161
1183
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1184
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1162
1185
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1163
1186
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1164
1187
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1184,6 +1207,7 @@ class ContainerPropertiesTypeDef(TypedDict):
|
|
|
1184
1207
|
secrets: NotRequired[Sequence[SecretTypeDef]]
|
|
1185
1208
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1186
1209
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1210
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1187
1211
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1188
1212
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1189
1213
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1275,6 +1299,7 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1275
1299
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1276
1300
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1277
1301
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1302
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1278
1303
|
|
|
1279
1304
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
1280
1305
|
containers: List[TaskContainerPropertiesOutputTypeDef]
|
|
@@ -1287,6 +1312,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1287
1312
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1288
1313
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1289
1314
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1315
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1290
1316
|
|
|
1291
1317
|
class EcsTaskPropertiesTypeDef(TypedDict):
|
|
1292
1318
|
containers: Sequence[TaskContainerPropertiesTypeDef]
|
|
@@ -1299,6 +1325,7 @@ class EcsTaskPropertiesTypeDef(TypedDict):
|
|
|
1299
1325
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1300
1326
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1301
1327
|
volumes: NotRequired[Sequence[VolumeTypeDef]]
|
|
1328
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1302
1329
|
|
|
1303
1330
|
ContainerPropertiesUnionTypeDef = Union[
|
|
1304
1331
|
ContainerPropertiesTypeDef, ContainerPropertiesOutputTypeDef
|
types_boto3_batch/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-batch
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 Batch 1.37.
|
|
3
|
+
Version: 1.37.22
|
|
4
|
+
Summary: Type annotations for boto3 Batch 1.37.22 service generated with mypy-boto3-builder 8.10.1
|
|
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
|
|
@@ -39,6 +39,7 @@ Dynamic: description-content-type
|
|
|
39
39
|
Dynamic: home-page
|
|
40
40
|
Dynamic: keywords
|
|
41
41
|
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
42
43
|
Dynamic: project-url
|
|
43
44
|
Dynamic: requires-dist
|
|
44
45
|
Dynamic: requires-python
|
|
@@ -55,7 +56,7 @@ Dynamic: summary
|
|
|
55
56
|
|
|
56
57
|

|
|
57
58
|
|
|
58
|
-
Type annotations for [boto3 Batch 1.37.
|
|
59
|
+
Type annotations for [boto3 Batch 1.37.22](https://pypi.org/project/boto3/)
|
|
59
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
66
|
|
|
66
67
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
68
69
|
|
|
69
70
|
More information can be found on
|
|
70
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -117,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
117
118
|
isolation.
|
|
118
119
|
|
|
119
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.37.
|
|
121
|
+
`uvx --with 'boto3==1.37.22' mypy-boto3-builder`
|
|
121
122
|
2. Select `boto3` AWS SDK.
|
|
122
123
|
3. Add `Batch` service.
|
|
123
124
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_batch/__init__.py,sha256=V1usbmyS1nz6t7ue9SbJGwk5cdynoF7iUD0TskTVNgE,2149
|
|
2
|
+
types_boto3_batch/__init__.pyi,sha256=ELkQgdaZTEMG3S2cEeehl5_0PJ-BmJglF9-BpChkncI,2148
|
|
3
|
+
types_boto3_batch/__main__.py,sha256=CpuT2llnBeeAByTi18-GYV2XmIq4Pt1mXaffQuoAuBs,977
|
|
4
|
+
types_boto3_batch/client.py,sha256=ohY-LP866qZhnN6tDoY4oCu_QUl9knp_9YZapsitQhQ,24184
|
|
5
|
+
types_boto3_batch/client.pyi,sha256=gjdOny-mnaBN4wCj8a79jyXKrolCT_Lffney5Y9SZME,24181
|
|
6
|
+
types_boto3_batch/literals.py,sha256=--Qex2BOlLCReHHIYZe1V-hbvvOhEvkQSgPwrlR9aKs,12715
|
|
7
|
+
types_boto3_batch/literals.pyi,sha256=LPxgF51lsJ8_cPTSniiGZungAhlSyJOoIrkVnD-1RNU,12713
|
|
8
|
+
types_boto3_batch/paginator.py,sha256=e8HQGLDo9URb4B2F--lQWzHK3vB9lSkCiWPGWcVuSZc,10983
|
|
9
|
+
types_boto3_batch/paginator.pyi,sha256=DjFMyTnbkbZnkPyGHilUKk13HDR52F1hyzAnBRspvng,10961
|
|
10
|
+
types_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_batch/type_defs.py,sha256=qRZqIrEVk3vQnRR-SORyikL3DFycp8sFfNokB8fzf88,56074
|
|
12
|
+
types_boto3_batch/type_defs.pyi,sha256=kNlIOvYBLmsjk77UVqltMyG8uLdQhWmkEKb3hJyAkV4,55884
|
|
13
|
+
types_boto3_batch/version.py,sha256=AMWnEEbhonEcJHxYoNnMUXiy0zMP6ODvvD1A8Plyfn8,93
|
|
14
|
+
types_boto3_batch-1.37.22.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_batch-1.37.22.dist-info/METADATA,sha256=QbENOfrvoODtF1MU0v-gGQQmdiD6206dSm2MKyMv568,15812
|
|
16
|
+
types_boto3_batch-1.37.22.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
17
|
+
types_boto3_batch-1.37.22.dist-info/top_level.txt,sha256=Uom8UeK1nnEn9_7ktm0WqcI79MHSYcQA-TT0oD_e8mM,18
|
|
18
|
+
types_boto3_batch-1.37.22.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_batch/__init__.py,sha256=V1usbmyS1nz6t7ue9SbJGwk5cdynoF7iUD0TskTVNgE,2149
|
|
2
|
-
types_boto3_batch/__init__.pyi,sha256=ELkQgdaZTEMG3S2cEeehl5_0PJ-BmJglF9-BpChkncI,2148
|
|
3
|
-
types_boto3_batch/__main__.py,sha256=0fOYx_lF5DNuoyotrrTZxp0OkKvCeU7B3Fap10B4wt0,973
|
|
4
|
-
types_boto3_batch/client.py,sha256=ohY-LP866qZhnN6tDoY4oCu_QUl9knp_9YZapsitQhQ,24184
|
|
5
|
-
types_boto3_batch/client.pyi,sha256=gjdOny-mnaBN4wCj8a79jyXKrolCT_Lffney5Y9SZME,24181
|
|
6
|
-
types_boto3_batch/literals.py,sha256=geKvh60aDQrj9mV6veq7MVb-VV5BbdOFs2sLN8knZwE,12538
|
|
7
|
-
types_boto3_batch/literals.pyi,sha256=Fno53iNSu9zNYYb8xtLpAQqpDtSuXoC-ak5CqmDu7Nc,12536
|
|
8
|
-
types_boto3_batch/paginator.py,sha256=e8HQGLDo9URb4B2F--lQWzHK3vB9lSkCiWPGWcVuSZc,10983
|
|
9
|
-
types_boto3_batch/paginator.pyi,sha256=DjFMyTnbkbZnkPyGHilUKk13HDR52F1hyzAnBRspvng,10961
|
|
10
|
-
types_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_batch/type_defs.py,sha256=ora2obaKNI6zkgc3VyIsmaqJCInPa_s4y9mn_Z65Lcs,55085
|
|
12
|
-
types_boto3_batch/type_defs.pyi,sha256=K-vVNBe7-w1eCfH7c-sa16-a3Pw0rDr7pnrYtzvr-NQ,54896
|
|
13
|
-
types_boto3_batch/version.py,sha256=RXH_0egUmMkopAJTMUwSLB79iHjXy5B_GcMAxoULgf0,92
|
|
14
|
-
types_boto3_batch-1.37.2.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_batch-1.37.2.dist-info/METADATA,sha256=WQN2QFebEna2N2dodLQuzszy2zECe3kJDbQUdP3mBtk,15784
|
|
16
|
-
types_boto3_batch-1.37.2.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
17
|
-
types_boto3_batch-1.37.2.dist-info/top_level.txt,sha256=Uom8UeK1nnEn9_7ktm0WqcI79MHSYcQA-TT0oD_e8mM,18
|
|
18
|
-
types_boto3_batch-1.37.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|