types-boto3-batch 1.37.2__py3-none-any.whl → 1.39.0__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 +16 -3
- types_boto3_batch/literals.pyi +16 -3
- types_boto3_batch/type_defs.py +33 -0
- types_boto3_batch/type_defs.pyi +32 -0
- types_boto3_batch/version.py +1 -1
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.39.0.dist-info}/METADATA +7 -6
- types_boto3_batch-1.39.0.dist-info/RECORD +18 -0
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.39.0.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.39.0.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_batch-1.37.2.dist-info → types_boto3_batch-1.39.0.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.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Batch 1.39.0\n"
|
|
16
|
+
"Version: 1.39.0\n"
|
|
17
|
+
"Builder version: 8.11.0\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.
|
|
29
|
+
sys.stdout.write("1.39.0\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",
|
|
@@ -57,6 +58,7 @@ __all__ = (
|
|
|
57
58
|
"ResourceTypeType",
|
|
58
59
|
"RetryActionType",
|
|
59
60
|
"ServiceName",
|
|
61
|
+
"UserdataTypeType",
|
|
60
62
|
)
|
|
61
63
|
|
|
62
64
|
|
|
@@ -78,6 +80,7 @@ DescribeJobQueuesPaginatorName = Literal["describe_job_queues"]
|
|
|
78
80
|
DeviceCgroupPermissionType = Literal["MKNOD", "READ", "WRITE"]
|
|
79
81
|
EFSAuthorizationConfigIAMType = Literal["DISABLED", "ENABLED"]
|
|
80
82
|
EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
83
|
+
FirelensConfigurationTypeType = Literal["fluentbit", "fluentd"]
|
|
81
84
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
82
85
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
83
86
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
@@ -90,17 +93,21 @@ ListConsumableResourcesPaginatorName = Literal["list_consumable_resources"]
|
|
|
90
93
|
ListJobsByConsumableResourcePaginatorName = Literal["list_jobs_by_consumable_resource"]
|
|
91
94
|
ListJobsPaginatorName = Literal["list_jobs"]
|
|
92
95
|
ListSchedulingPoliciesPaginatorName = Literal["list_scheduling_policies"]
|
|
93
|
-
LogDriverType = Literal[
|
|
96
|
+
LogDriverType = Literal[
|
|
97
|
+
"awsfirelens", "awslogs", "fluentd", "gelf", "journald", "json-file", "splunk", "syslog"
|
|
98
|
+
]
|
|
94
99
|
OrchestrationTypeType = Literal["ECS", "EKS"]
|
|
95
100
|
PlatformCapabilityType = Literal["EC2", "FARGATE"]
|
|
96
101
|
ResourceTypeType = Literal["GPU", "MEMORY", "VCPU"]
|
|
97
102
|
RetryActionType = Literal["EXIT", "RETRY"]
|
|
103
|
+
UserdataTypeType = Literal["EKS_BOOTSTRAP_SH", "EKS_NODEADM"]
|
|
98
104
|
BatchServiceName = Literal["batch"]
|
|
99
105
|
ServiceName = Literal[
|
|
100
106
|
"accessanalyzer",
|
|
101
107
|
"account",
|
|
102
108
|
"acm",
|
|
103
109
|
"acm-pca",
|
|
110
|
+
"aiops",
|
|
104
111
|
"amp",
|
|
105
112
|
"amplify",
|
|
106
113
|
"amplifybackend",
|
|
@@ -241,6 +248,7 @@ ServiceName = Literal[
|
|
|
241
248
|
"es",
|
|
242
249
|
"events",
|
|
243
250
|
"evidently",
|
|
251
|
+
"evs",
|
|
244
252
|
"finspace",
|
|
245
253
|
"finspace-data",
|
|
246
254
|
"firehose",
|
|
@@ -252,6 +260,7 @@ ServiceName = Literal[
|
|
|
252
260
|
"freetier",
|
|
253
261
|
"fsx",
|
|
254
262
|
"gamelift",
|
|
263
|
+
"gameliftstreams",
|
|
255
264
|
"geo-maps",
|
|
256
265
|
"geo-places",
|
|
257
266
|
"geo-routes",
|
|
@@ -277,6 +286,7 @@ ServiceName = Literal[
|
|
|
277
286
|
"iot",
|
|
278
287
|
"iot-data",
|
|
279
288
|
"iot-jobs-data",
|
|
289
|
+
"iot-managed-integrations",
|
|
280
290
|
"iotanalytics",
|
|
281
291
|
"iotdeviceadvisor",
|
|
282
292
|
"iotevents",
|
|
@@ -296,6 +306,7 @@ ServiceName = Literal[
|
|
|
296
306
|
"kendra",
|
|
297
307
|
"kendra-ranking",
|
|
298
308
|
"keyspaces",
|
|
309
|
+
"keyspacesstreams",
|
|
299
310
|
"kinesis",
|
|
300
311
|
"kinesis-video-archived-media",
|
|
301
312
|
"kinesis-video-media",
|
|
@@ -351,6 +362,7 @@ ServiceName = Literal[
|
|
|
351
362
|
"migrationhub-config",
|
|
352
363
|
"migrationhuborchestrator",
|
|
353
364
|
"migrationhubstrategy",
|
|
365
|
+
"mpa",
|
|
354
366
|
"mq",
|
|
355
367
|
"mturk",
|
|
356
368
|
"mwaa",
|
|
@@ -391,7 +403,6 @@ ServiceName = Literal[
|
|
|
391
403
|
"pipes",
|
|
392
404
|
"polly",
|
|
393
405
|
"pricing",
|
|
394
|
-
"privatenetworks",
|
|
395
406
|
"proton",
|
|
396
407
|
"qapps",
|
|
397
408
|
"qbusiness",
|
|
@@ -452,7 +463,6 @@ ServiceName = Literal[
|
|
|
452
463
|
"signer",
|
|
453
464
|
"simspaceweaver",
|
|
454
465
|
"sms",
|
|
455
|
-
"sms-voice",
|
|
456
466
|
"snow-device-management",
|
|
457
467
|
"snowball",
|
|
458
468
|
"sns",
|
|
@@ -460,6 +470,7 @@ ServiceName = Literal[
|
|
|
460
470
|
"sqs",
|
|
461
471
|
"ssm",
|
|
462
472
|
"ssm-contacts",
|
|
473
|
+
"ssm-guiconnect",
|
|
463
474
|
"ssm-incidents",
|
|
464
475
|
"ssm-quicksetup",
|
|
465
476
|
"ssm-sap",
|
|
@@ -496,6 +507,7 @@ ServiceName = Literal[
|
|
|
496
507
|
"workmail",
|
|
497
508
|
"workmailmessageflow",
|
|
498
509
|
"workspaces",
|
|
510
|
+
"workspaces-instances",
|
|
499
511
|
"workspaces-thin-client",
|
|
500
512
|
"workspaces-web",
|
|
501
513
|
"xray",
|
|
@@ -524,6 +536,7 @@ PaginatorName = Literal[
|
|
|
524
536
|
RegionName = Literal[
|
|
525
537
|
"af-south-1",
|
|
526
538
|
"ap-east-1",
|
|
539
|
+
"ap-east-2",
|
|
527
540
|
"ap-northeast-1",
|
|
528
541
|
"ap-northeast-2",
|
|
529
542
|
"ap-northeast-3",
|
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",
|
|
@@ -56,6 +57,7 @@ __all__ = (
|
|
|
56
57
|
"ResourceTypeType",
|
|
57
58
|
"RetryActionType",
|
|
58
59
|
"ServiceName",
|
|
60
|
+
"UserdataTypeType",
|
|
59
61
|
)
|
|
60
62
|
|
|
61
63
|
ArrayJobDependencyType = Literal["N_TO_N", "SEQUENTIAL"]
|
|
@@ -76,6 +78,7 @@ DescribeJobQueuesPaginatorName = Literal["describe_job_queues"]
|
|
|
76
78
|
DeviceCgroupPermissionType = Literal["MKNOD", "READ", "WRITE"]
|
|
77
79
|
EFSAuthorizationConfigIAMType = Literal["DISABLED", "ENABLED"]
|
|
78
80
|
EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
81
|
+
FirelensConfigurationTypeType = Literal["fluentbit", "fluentd"]
|
|
79
82
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
80
83
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
81
84
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
@@ -88,17 +91,21 @@ ListConsumableResourcesPaginatorName = Literal["list_consumable_resources"]
|
|
|
88
91
|
ListJobsByConsumableResourcePaginatorName = Literal["list_jobs_by_consumable_resource"]
|
|
89
92
|
ListJobsPaginatorName = Literal["list_jobs"]
|
|
90
93
|
ListSchedulingPoliciesPaginatorName = Literal["list_scheduling_policies"]
|
|
91
|
-
LogDriverType = Literal[
|
|
94
|
+
LogDriverType = Literal[
|
|
95
|
+
"awsfirelens", "awslogs", "fluentd", "gelf", "journald", "json-file", "splunk", "syslog"
|
|
96
|
+
]
|
|
92
97
|
OrchestrationTypeType = Literal["ECS", "EKS"]
|
|
93
98
|
PlatformCapabilityType = Literal["EC2", "FARGATE"]
|
|
94
99
|
ResourceTypeType = Literal["GPU", "MEMORY", "VCPU"]
|
|
95
100
|
RetryActionType = Literal["EXIT", "RETRY"]
|
|
101
|
+
UserdataTypeType = Literal["EKS_BOOTSTRAP_SH", "EKS_NODEADM"]
|
|
96
102
|
BatchServiceName = Literal["batch"]
|
|
97
103
|
ServiceName = Literal[
|
|
98
104
|
"accessanalyzer",
|
|
99
105
|
"account",
|
|
100
106
|
"acm",
|
|
101
107
|
"acm-pca",
|
|
108
|
+
"aiops",
|
|
102
109
|
"amp",
|
|
103
110
|
"amplify",
|
|
104
111
|
"amplifybackend",
|
|
@@ -239,6 +246,7 @@ ServiceName = Literal[
|
|
|
239
246
|
"es",
|
|
240
247
|
"events",
|
|
241
248
|
"evidently",
|
|
249
|
+
"evs",
|
|
242
250
|
"finspace",
|
|
243
251
|
"finspace-data",
|
|
244
252
|
"firehose",
|
|
@@ -250,6 +258,7 @@ ServiceName = Literal[
|
|
|
250
258
|
"freetier",
|
|
251
259
|
"fsx",
|
|
252
260
|
"gamelift",
|
|
261
|
+
"gameliftstreams",
|
|
253
262
|
"geo-maps",
|
|
254
263
|
"geo-places",
|
|
255
264
|
"geo-routes",
|
|
@@ -275,6 +284,7 @@ ServiceName = Literal[
|
|
|
275
284
|
"iot",
|
|
276
285
|
"iot-data",
|
|
277
286
|
"iot-jobs-data",
|
|
287
|
+
"iot-managed-integrations",
|
|
278
288
|
"iotanalytics",
|
|
279
289
|
"iotdeviceadvisor",
|
|
280
290
|
"iotevents",
|
|
@@ -294,6 +304,7 @@ ServiceName = Literal[
|
|
|
294
304
|
"kendra",
|
|
295
305
|
"kendra-ranking",
|
|
296
306
|
"keyspaces",
|
|
307
|
+
"keyspacesstreams",
|
|
297
308
|
"kinesis",
|
|
298
309
|
"kinesis-video-archived-media",
|
|
299
310
|
"kinesis-video-media",
|
|
@@ -349,6 +360,7 @@ ServiceName = Literal[
|
|
|
349
360
|
"migrationhub-config",
|
|
350
361
|
"migrationhuborchestrator",
|
|
351
362
|
"migrationhubstrategy",
|
|
363
|
+
"mpa",
|
|
352
364
|
"mq",
|
|
353
365
|
"mturk",
|
|
354
366
|
"mwaa",
|
|
@@ -389,7 +401,6 @@ ServiceName = Literal[
|
|
|
389
401
|
"pipes",
|
|
390
402
|
"polly",
|
|
391
403
|
"pricing",
|
|
392
|
-
"privatenetworks",
|
|
393
404
|
"proton",
|
|
394
405
|
"qapps",
|
|
395
406
|
"qbusiness",
|
|
@@ -450,7 +461,6 @@ ServiceName = Literal[
|
|
|
450
461
|
"signer",
|
|
451
462
|
"simspaceweaver",
|
|
452
463
|
"sms",
|
|
453
|
-
"sms-voice",
|
|
454
464
|
"snow-device-management",
|
|
455
465
|
"snowball",
|
|
456
466
|
"sns",
|
|
@@ -458,6 +468,7 @@ ServiceName = Literal[
|
|
|
458
468
|
"sqs",
|
|
459
469
|
"ssm",
|
|
460
470
|
"ssm-contacts",
|
|
471
|
+
"ssm-guiconnect",
|
|
461
472
|
"ssm-incidents",
|
|
462
473
|
"ssm-quicksetup",
|
|
463
474
|
"ssm-sap",
|
|
@@ -494,6 +505,7 @@ ServiceName = Literal[
|
|
|
494
505
|
"workmail",
|
|
495
506
|
"workmailmessageflow",
|
|
496
507
|
"workspaces",
|
|
508
|
+
"workspaces-instances",
|
|
497
509
|
"workspaces-thin-client",
|
|
498
510
|
"workspaces-web",
|
|
499
511
|
"xray",
|
|
@@ -522,6 +534,7 @@ PaginatorName = Literal[
|
|
|
522
534
|
RegionName = Literal[
|
|
523
535
|
"af-south-1",
|
|
524
536
|
"ap-east-1",
|
|
537
|
+
"ap-east-2",
|
|
525
538
|
"ap-northeast-1",
|
|
526
539
|
"ap-northeast-2",
|
|
527
540
|
"ap-northeast-3",
|
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,
|
|
@@ -40,6 +41,7 @@ from .literals import (
|
|
|
40
41
|
PlatformCapabilityType,
|
|
41
42
|
ResourceTypeType,
|
|
42
43
|
RetryActionType,
|
|
44
|
+
UserdataTypeType,
|
|
43
45
|
)
|
|
44
46
|
|
|
45
47
|
if sys.version_info >= (3, 9):
|
|
@@ -157,6 +159,8 @@ __all__ = (
|
|
|
157
159
|
"FairsharePolicyTypeDef",
|
|
158
160
|
"FairsharePolicyUnionTypeDef",
|
|
159
161
|
"FargatePlatformConfigurationTypeDef",
|
|
162
|
+
"FirelensConfigurationOutputTypeDef",
|
|
163
|
+
"FirelensConfigurationTypeDef",
|
|
160
164
|
"FrontOfQueueDetailTypeDef",
|
|
161
165
|
"FrontOfQueueJobSummaryTypeDef",
|
|
162
166
|
"GetJobQueueSnapshotRequestTypeDef",
|
|
@@ -548,6 +552,22 @@ class ShareAttributesTypeDef(TypedDict):
|
|
|
548
552
|
weightFactor: NotRequired[float]
|
|
549
553
|
|
|
550
554
|
|
|
555
|
+
FirelensConfigurationOutputTypeDef = TypedDict(
|
|
556
|
+
"FirelensConfigurationOutputTypeDef",
|
|
557
|
+
{
|
|
558
|
+
"type": FirelensConfigurationTypeType,
|
|
559
|
+
"options": NotRequired[Dict[str, str]],
|
|
560
|
+
},
|
|
561
|
+
)
|
|
562
|
+
FirelensConfigurationTypeDef = TypedDict(
|
|
563
|
+
"FirelensConfigurationTypeDef",
|
|
564
|
+
{
|
|
565
|
+
"type": FirelensConfigurationTypeType,
|
|
566
|
+
"options": NotRequired[Mapping[str, str]],
|
|
567
|
+
},
|
|
568
|
+
)
|
|
569
|
+
|
|
570
|
+
|
|
551
571
|
class FrontOfQueueJobSummaryTypeDef(TypedDict):
|
|
552
572
|
jobArn: NotRequired[str]
|
|
553
573
|
earliestTimeAtPosition: NotRequired[int]
|
|
@@ -595,6 +615,7 @@ class LaunchTemplateSpecificationOverrideOutputTypeDef(TypedDict):
|
|
|
595
615
|
launchTemplateName: NotRequired[str]
|
|
596
616
|
version: NotRequired[str]
|
|
597
617
|
targetInstanceTypes: NotRequired[List[str]]
|
|
618
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
598
619
|
|
|
599
620
|
|
|
600
621
|
class LaunchTemplateSpecificationOverrideTypeDef(TypedDict):
|
|
@@ -602,6 +623,7 @@ class LaunchTemplateSpecificationOverrideTypeDef(TypedDict):
|
|
|
602
623
|
launchTemplateName: NotRequired[str]
|
|
603
624
|
version: NotRequired[str]
|
|
604
625
|
targetInstanceTypes: NotRequired[Sequence[str]]
|
|
626
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
605
627
|
|
|
606
628
|
|
|
607
629
|
class TmpfsOutputTypeDef(TypedDict):
|
|
@@ -1006,6 +1028,7 @@ class LaunchTemplateSpecificationOutputTypeDef(TypedDict):
|
|
|
1006
1028
|
launchTemplateName: NotRequired[str]
|
|
1007
1029
|
version: NotRequired[str]
|
|
1008
1030
|
overrides: NotRequired[List[LaunchTemplateSpecificationOverrideOutputTypeDef]]
|
|
1031
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
1009
1032
|
|
|
1010
1033
|
|
|
1011
1034
|
LaunchTemplateSpecificationOverrideUnionTypeDef = Union[
|
|
@@ -1178,6 +1201,7 @@ class LaunchTemplateSpecificationTypeDef(TypedDict):
|
|
|
1178
1201
|
launchTemplateName: NotRequired[str]
|
|
1179
1202
|
version: NotRequired[str]
|
|
1180
1203
|
overrides: NotRequired[Sequence[LaunchTemplateSpecificationOverrideUnionTypeDef]]
|
|
1204
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
1181
1205
|
|
|
1182
1206
|
|
|
1183
1207
|
class TaskContainerDetailsTypeDef(TypedDict):
|
|
@@ -1185,6 +1209,7 @@ class TaskContainerDetailsTypeDef(TypedDict):
|
|
|
1185
1209
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1186
1210
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1187
1211
|
essential: NotRequired[bool]
|
|
1212
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1188
1213
|
image: NotRequired[str]
|
|
1189
1214
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1190
1215
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
@@ -1209,6 +1234,7 @@ class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1209
1234
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1210
1235
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1211
1236
|
essential: NotRequired[bool]
|
|
1237
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1212
1238
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1213
1239
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1214
1240
|
mountPoints: NotRequired[List[MountPointTypeDef]]
|
|
@@ -1228,6 +1254,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1228
1254
|
dependsOn: NotRequired[Sequence[TaskContainerDependencyTypeDef]]
|
|
1229
1255
|
environment: NotRequired[Sequence[KeyValuePairTypeDef]]
|
|
1230
1256
|
essential: NotRequired[bool]
|
|
1257
|
+
firelensConfiguration: NotRequired[FirelensConfigurationTypeDef]
|
|
1231
1258
|
linuxParameters: NotRequired[LinuxParametersTypeDef]
|
|
1232
1259
|
logConfiguration: NotRequired[LogConfigurationTypeDef]
|
|
1233
1260
|
mountPoints: NotRequired[Sequence[MountPointTypeDef]]
|
|
@@ -1289,6 +1316,7 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1289
1316
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1290
1317
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1291
1318
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1319
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1292
1320
|
|
|
1293
1321
|
|
|
1294
1322
|
class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
@@ -1312,6 +1340,7 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1312
1340
|
secrets: NotRequired[List[SecretTypeDef]]
|
|
1313
1341
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1314
1342
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1343
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1315
1344
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1316
1345
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1317
1346
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1338,6 +1367,7 @@ class ContainerPropertiesTypeDef(TypedDict):
|
|
|
1338
1367
|
secrets: NotRequired[Sequence[SecretTypeDef]]
|
|
1339
1368
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1340
1369
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1370
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1341
1371
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1342
1372
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1343
1373
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1438,6 +1468,7 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1438
1468
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1439
1469
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1440
1470
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1471
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1441
1472
|
|
|
1442
1473
|
|
|
1443
1474
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
@@ -1451,6 +1482,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1451
1482
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1452
1483
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1453
1484
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1485
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1454
1486
|
|
|
1455
1487
|
|
|
1456
1488
|
class EcsTaskPropertiesTypeDef(TypedDict):
|
|
@@ -1464,6 +1496,7 @@ class EcsTaskPropertiesTypeDef(TypedDict):
|
|
|
1464
1496
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1465
1497
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1466
1498
|
volumes: NotRequired[Sequence[VolumeTypeDef]]
|
|
1499
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1467
1500
|
|
|
1468
1501
|
|
|
1469
1502
|
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,
|
|
@@ -40,6 +41,7 @@ from .literals import (
|
|
|
40
41
|
PlatformCapabilityType,
|
|
41
42
|
ResourceTypeType,
|
|
42
43
|
RetryActionType,
|
|
44
|
+
UserdataTypeType,
|
|
43
45
|
)
|
|
44
46
|
|
|
45
47
|
if sys.version_info >= (3, 9):
|
|
@@ -156,6 +158,8 @@ __all__ = (
|
|
|
156
158
|
"FairsharePolicyTypeDef",
|
|
157
159
|
"FairsharePolicyUnionTypeDef",
|
|
158
160
|
"FargatePlatformConfigurationTypeDef",
|
|
161
|
+
"FirelensConfigurationOutputTypeDef",
|
|
162
|
+
"FirelensConfigurationTypeDef",
|
|
159
163
|
"FrontOfQueueDetailTypeDef",
|
|
160
164
|
"FrontOfQueueJobSummaryTypeDef",
|
|
161
165
|
"GetJobQueueSnapshotRequestTypeDef",
|
|
@@ -491,6 +495,21 @@ class ShareAttributesTypeDef(TypedDict):
|
|
|
491
495
|
shareIdentifier: str
|
|
492
496
|
weightFactor: NotRequired[float]
|
|
493
497
|
|
|
498
|
+
FirelensConfigurationOutputTypeDef = TypedDict(
|
|
499
|
+
"FirelensConfigurationOutputTypeDef",
|
|
500
|
+
{
|
|
501
|
+
"type": FirelensConfigurationTypeType,
|
|
502
|
+
"options": NotRequired[Dict[str, str]],
|
|
503
|
+
},
|
|
504
|
+
)
|
|
505
|
+
FirelensConfigurationTypeDef = TypedDict(
|
|
506
|
+
"FirelensConfigurationTypeDef",
|
|
507
|
+
{
|
|
508
|
+
"type": FirelensConfigurationTypeType,
|
|
509
|
+
"options": NotRequired[Mapping[str, str]],
|
|
510
|
+
},
|
|
511
|
+
)
|
|
512
|
+
|
|
494
513
|
class FrontOfQueueJobSummaryTypeDef(TypedDict):
|
|
495
514
|
jobArn: NotRequired[str]
|
|
496
515
|
earliestTimeAtPosition: NotRequired[int]
|
|
@@ -530,12 +549,14 @@ class LaunchTemplateSpecificationOverrideOutputTypeDef(TypedDict):
|
|
|
530
549
|
launchTemplateName: NotRequired[str]
|
|
531
550
|
version: NotRequired[str]
|
|
532
551
|
targetInstanceTypes: NotRequired[List[str]]
|
|
552
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
533
553
|
|
|
534
554
|
class LaunchTemplateSpecificationOverrideTypeDef(TypedDict):
|
|
535
555
|
launchTemplateId: NotRequired[str]
|
|
536
556
|
launchTemplateName: NotRequired[str]
|
|
537
557
|
version: NotRequired[str]
|
|
538
558
|
targetInstanceTypes: NotRequired[Sequence[str]]
|
|
559
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
539
560
|
|
|
540
561
|
class TmpfsOutputTypeDef(TypedDict):
|
|
541
562
|
containerPath: str
|
|
@@ -882,6 +903,7 @@ class LaunchTemplateSpecificationOutputTypeDef(TypedDict):
|
|
|
882
903
|
launchTemplateName: NotRequired[str]
|
|
883
904
|
version: NotRequired[str]
|
|
884
905
|
overrides: NotRequired[List[LaunchTemplateSpecificationOverrideOutputTypeDef]]
|
|
906
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
885
907
|
|
|
886
908
|
LaunchTemplateSpecificationOverrideUnionTypeDef = Union[
|
|
887
909
|
LaunchTemplateSpecificationOverrideTypeDef, LaunchTemplateSpecificationOverrideOutputTypeDef
|
|
@@ -1033,12 +1055,14 @@ class LaunchTemplateSpecificationTypeDef(TypedDict):
|
|
|
1033
1055
|
launchTemplateName: NotRequired[str]
|
|
1034
1056
|
version: NotRequired[str]
|
|
1035
1057
|
overrides: NotRequired[Sequence[LaunchTemplateSpecificationOverrideUnionTypeDef]]
|
|
1058
|
+
userdataType: NotRequired[UserdataTypeType]
|
|
1036
1059
|
|
|
1037
1060
|
class TaskContainerDetailsTypeDef(TypedDict):
|
|
1038
1061
|
command: NotRequired[List[str]]
|
|
1039
1062
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1040
1063
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1041
1064
|
essential: NotRequired[bool]
|
|
1065
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1042
1066
|
image: NotRequired[str]
|
|
1043
1067
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1044
1068
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
@@ -1062,6 +1086,7 @@ class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1062
1086
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1063
1087
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1064
1088
|
essential: NotRequired[bool]
|
|
1089
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1065
1090
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1066
1091
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1067
1092
|
mountPoints: NotRequired[List[MountPointTypeDef]]
|
|
@@ -1080,6 +1105,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1080
1105
|
dependsOn: NotRequired[Sequence[TaskContainerDependencyTypeDef]]
|
|
1081
1106
|
environment: NotRequired[Sequence[KeyValuePairTypeDef]]
|
|
1082
1107
|
essential: NotRequired[bool]
|
|
1108
|
+
firelensConfiguration: NotRequired[FirelensConfigurationTypeDef]
|
|
1083
1109
|
linuxParameters: NotRequired[LinuxParametersTypeDef]
|
|
1084
1110
|
logConfiguration: NotRequired[LogConfigurationTypeDef]
|
|
1085
1111
|
mountPoints: NotRequired[Sequence[MountPointTypeDef]]
|
|
@@ -1137,6 +1163,7 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1137
1163
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1138
1164
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1139
1165
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1166
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1140
1167
|
|
|
1141
1168
|
class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
1142
1169
|
image: NotRequired[str]
|
|
@@ -1159,6 +1186,7 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1159
1186
|
secrets: NotRequired[List[SecretTypeDef]]
|
|
1160
1187
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1161
1188
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1189
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1162
1190
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1163
1191
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1164
1192
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1184,6 +1212,7 @@ class ContainerPropertiesTypeDef(TypedDict):
|
|
|
1184
1212
|
secrets: NotRequired[Sequence[SecretTypeDef]]
|
|
1185
1213
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1186
1214
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1215
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1187
1216
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1188
1217
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1189
1218
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1275,6 +1304,7 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1275
1304
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1276
1305
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1277
1306
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1307
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1278
1308
|
|
|
1279
1309
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
1280
1310
|
containers: List[TaskContainerPropertiesOutputTypeDef]
|
|
@@ -1287,6 +1317,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1287
1317
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1288
1318
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1289
1319
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1320
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1290
1321
|
|
|
1291
1322
|
class EcsTaskPropertiesTypeDef(TypedDict):
|
|
1292
1323
|
containers: Sequence[TaskContainerPropertiesTypeDef]
|
|
@@ -1299,6 +1330,7 @@ class EcsTaskPropertiesTypeDef(TypedDict):
|
|
|
1299
1330
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1300
1331
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1301
1332
|
volumes: NotRequired[Sequence[VolumeTypeDef]]
|
|
1333
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1302
1334
|
|
|
1303
1335
|
ContainerPropertiesUnionTypeDef = Union[
|
|
1304
1336
|
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.
|
|
4
|
-
Summary: Type annotations for boto3 Batch 1.
|
|
3
|
+
Version: 1.39.0
|
|
4
|
+
Summary: Type annotations for boto3 Batch 1.39.0 service generated with mypy-boto3-builder 8.11.0
|
|
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.
|
|
59
|
+
Type annotations for [boto3 Batch 1.39.0](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.11.0](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.
|
|
121
|
+
`uvx --with 'boto3==1.39.0' 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=9IUkxMuhwu2g1YSdI-M9DzYkx8YXFYVTR33q_99s8JU,974
|
|
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=8buf4wqU4DU75riwkz0TvqEnrKRD1rulIp_P_UpLXxc,12887
|
|
7
|
+
types_boto3_batch/literals.pyi,sha256=88-RkAO4CnB8SbMOADfdXIgXK2LPkLt0TCaUzp6xiXU,12885
|
|
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=OCq9rtwrVcVad6uSIrFNwHMZv7x1kTTb2JX4tXSiuE4,56288
|
|
12
|
+
types_boto3_batch/type_defs.pyi,sha256=2XtABs-4jZn7Czi_16MLpIbbYyv7QDYqQ91-Nxiwogo,56098
|
|
13
|
+
types_boto3_batch/version.py,sha256=2zoG4eEWPRyRE1KcrQlbWADhaM3qPJ9AE2mKAu218VA,92
|
|
14
|
+
types_boto3_batch-1.39.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_batch-1.39.0.dist-info/METADATA,sha256=_trHlEndECxw0aRKCsLbcccRlZxEEg9XKawbiI6qzmQ,15808
|
|
16
|
+
types_boto3_batch-1.39.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
types_boto3_batch-1.39.0.dist-info/top_level.txt,sha256=Uom8UeK1nnEn9_7ktm0WqcI79MHSYcQA-TT0oD_e8mM,18
|
|
18
|
+
types_boto3_batch-1.39.0.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
|