mypy-boto3-batch 1.26.34__py3-none-any.whl → 1.26.98__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 +3 -3
- mypy_boto3_batch/literals.py +8 -0
- mypy_boto3_batch/literals.pyi +8 -0
- mypy_boto3_batch/type_defs.py +21 -0
- mypy_boto3_batch/type_defs.pyi +21 -0
- mypy_boto3_batch/version.py +1 -1
- {mypy_boto3_batch-1.26.34.dist-info → mypy_boto3_batch-1.26.98.dist-info}/LICENSE +1 -1
- {mypy_boto3_batch-1.26.34.dist-info → mypy_boto3_batch-1.26.98.dist-info}/METADATA +13 -11
- mypy_boto3_batch-1.26.98.dist-info/RECORD +18 -0
- {mypy_boto3_batch-1.26.34.dist-info → mypy_boto3_batch-1.26.98.dist-info}/WHEEL +1 -1
- mypy_boto3_batch-1.26.34.dist-info/RECORD +0 -18
- {mypy_boto3_batch-1.26.34.dist-info → mypy_boto3_batch-1.26.98.dist-info}/top_level.txt +0 -0
mypy_boto3_batch/__main__.py
CHANGED
|
@@ -9,8 +9,8 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.Batch 1.26.
|
|
13
|
-
" 7.
|
|
12
|
+
"Type annotations for boto3.Batch 1.26.98\nVersion: 1.26.98\nBuilder version:"
|
|
13
|
+
" 7.14.2\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch\nOther"
|
|
16
16
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.26.
|
|
25
|
+
print("1.26.98")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
mypy_boto3_batch/literals.py
CHANGED
|
@@ -124,6 +124,7 @@ ServiceName = Literal[
|
|
|
124
124
|
"chime-sdk-meetings",
|
|
125
125
|
"chime-sdk-messaging",
|
|
126
126
|
"chime-sdk-voice",
|
|
127
|
+
"cleanrooms",
|
|
127
128
|
"cloud9",
|
|
128
129
|
"cloudcontrol",
|
|
129
130
|
"clouddirectory",
|
|
@@ -134,6 +135,7 @@ ServiceName = Literal[
|
|
|
134
135
|
"cloudsearch",
|
|
135
136
|
"cloudsearchdomain",
|
|
136
137
|
"cloudtrail",
|
|
138
|
+
"cloudtrail-data",
|
|
137
139
|
"cloudwatch",
|
|
138
140
|
"codeartifact",
|
|
139
141
|
"codebuild",
|
|
@@ -227,6 +229,7 @@ ServiceName = Literal[
|
|
|
227
229
|
"importexport",
|
|
228
230
|
"inspector",
|
|
229
231
|
"inspector2",
|
|
232
|
+
"internetmonitor",
|
|
230
233
|
"iot",
|
|
231
234
|
"iot-data",
|
|
232
235
|
"iot-jobs-data",
|
|
@@ -245,10 +248,12 @@ ServiceName = Literal[
|
|
|
245
248
|
"iottwinmaker",
|
|
246
249
|
"iotwireless",
|
|
247
250
|
"ivs",
|
|
251
|
+
"ivs-realtime",
|
|
248
252
|
"ivschat",
|
|
249
253
|
"kafka",
|
|
250
254
|
"kafkaconnect",
|
|
251
255
|
"kendra",
|
|
256
|
+
"kendra-ranking",
|
|
252
257
|
"keyspaces",
|
|
253
258
|
"kinesis",
|
|
254
259
|
"kinesis-video-archived-media",
|
|
@@ -266,6 +271,7 @@ ServiceName = Literal[
|
|
|
266
271
|
"lexv2-models",
|
|
267
272
|
"lexv2-runtime",
|
|
268
273
|
"license-manager",
|
|
274
|
+
"license-manager-linux-subscriptions",
|
|
269
275
|
"license-manager-user-subscriptions",
|
|
270
276
|
"lightsail",
|
|
271
277
|
"location",
|
|
@@ -401,6 +407,7 @@ ServiceName = Literal[
|
|
|
401
407
|
"textract",
|
|
402
408
|
"timestream-query",
|
|
403
409
|
"timestream-write",
|
|
410
|
+
"tnb",
|
|
404
411
|
"transcribe",
|
|
405
412
|
"transfer",
|
|
406
413
|
"translate",
|
|
@@ -454,6 +461,7 @@ RegionName = Literal[
|
|
|
454
461
|
"eu-west-1",
|
|
455
462
|
"eu-west-2",
|
|
456
463
|
"eu-west-3",
|
|
464
|
+
"me-central-1",
|
|
457
465
|
"me-south-1",
|
|
458
466
|
"sa-east-1",
|
|
459
467
|
"us-east-1",
|
mypy_boto3_batch/literals.pyi
CHANGED
|
@@ -122,6 +122,7 @@ ServiceName = Literal[
|
|
|
122
122
|
"chime-sdk-meetings",
|
|
123
123
|
"chime-sdk-messaging",
|
|
124
124
|
"chime-sdk-voice",
|
|
125
|
+
"cleanrooms",
|
|
125
126
|
"cloud9",
|
|
126
127
|
"cloudcontrol",
|
|
127
128
|
"clouddirectory",
|
|
@@ -132,6 +133,7 @@ ServiceName = Literal[
|
|
|
132
133
|
"cloudsearch",
|
|
133
134
|
"cloudsearchdomain",
|
|
134
135
|
"cloudtrail",
|
|
136
|
+
"cloudtrail-data",
|
|
135
137
|
"cloudwatch",
|
|
136
138
|
"codeartifact",
|
|
137
139
|
"codebuild",
|
|
@@ -225,6 +227,7 @@ ServiceName = Literal[
|
|
|
225
227
|
"importexport",
|
|
226
228
|
"inspector",
|
|
227
229
|
"inspector2",
|
|
230
|
+
"internetmonitor",
|
|
228
231
|
"iot",
|
|
229
232
|
"iot-data",
|
|
230
233
|
"iot-jobs-data",
|
|
@@ -243,10 +246,12 @@ ServiceName = Literal[
|
|
|
243
246
|
"iottwinmaker",
|
|
244
247
|
"iotwireless",
|
|
245
248
|
"ivs",
|
|
249
|
+
"ivs-realtime",
|
|
246
250
|
"ivschat",
|
|
247
251
|
"kafka",
|
|
248
252
|
"kafkaconnect",
|
|
249
253
|
"kendra",
|
|
254
|
+
"kendra-ranking",
|
|
250
255
|
"keyspaces",
|
|
251
256
|
"kinesis",
|
|
252
257
|
"kinesis-video-archived-media",
|
|
@@ -264,6 +269,7 @@ ServiceName = Literal[
|
|
|
264
269
|
"lexv2-models",
|
|
265
270
|
"lexv2-runtime",
|
|
266
271
|
"license-manager",
|
|
272
|
+
"license-manager-linux-subscriptions",
|
|
267
273
|
"license-manager-user-subscriptions",
|
|
268
274
|
"lightsail",
|
|
269
275
|
"location",
|
|
@@ -399,6 +405,7 @@ ServiceName = Literal[
|
|
|
399
405
|
"textract",
|
|
400
406
|
"timestream-query",
|
|
401
407
|
"timestream-write",
|
|
408
|
+
"tnb",
|
|
402
409
|
"transcribe",
|
|
403
410
|
"transfer",
|
|
404
411
|
"translate",
|
|
@@ -452,6 +459,7 @@ RegionName = Literal[
|
|
|
452
459
|
"eu-west-1",
|
|
453
460
|
"eu-west-2",
|
|
454
461
|
"eu-west-3",
|
|
462
|
+
"me-central-1",
|
|
455
463
|
"me-south-1",
|
|
456
464
|
"sa-east-1",
|
|
457
465
|
"us-east-1",
|
mypy_boto3_batch/type_defs.py
CHANGED
|
@@ -54,6 +54,7 @@ __all__ = (
|
|
|
54
54
|
"ComputeEnvironmentOrderTypeDef",
|
|
55
55
|
"Ec2ConfigurationTypeDef",
|
|
56
56
|
"LaunchTemplateSpecificationTypeDef",
|
|
57
|
+
"EphemeralStorageTypeDef",
|
|
57
58
|
"FargatePlatformConfigurationTypeDef",
|
|
58
59
|
"KeyValuePairTypeDef",
|
|
59
60
|
"MountPointTypeDef",
|
|
@@ -82,6 +83,7 @@ __all__ = (
|
|
|
82
83
|
"EksContainerVolumeMountTypeDef",
|
|
83
84
|
"EksEmptyDirTypeDef",
|
|
84
85
|
"EksHostPathTypeDef",
|
|
86
|
+
"EksMetadataTypeDef",
|
|
85
87
|
"EksSecretTypeDef",
|
|
86
88
|
"EvaluateOnExitTypeDef",
|
|
87
89
|
"ShareAttributesTypeDef",
|
|
@@ -263,6 +265,13 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
|
|
|
263
265
|
total=False,
|
|
264
266
|
)
|
|
265
267
|
|
|
268
|
+
EphemeralStorageTypeDef = TypedDict(
|
|
269
|
+
"EphemeralStorageTypeDef",
|
|
270
|
+
{
|
|
271
|
+
"sizeInGiB": int,
|
|
272
|
+
},
|
|
273
|
+
)
|
|
274
|
+
|
|
266
275
|
FargatePlatformConfigurationTypeDef = TypedDict(
|
|
267
276
|
"FargatePlatformConfigurationTypeDef",
|
|
268
277
|
{
|
|
@@ -534,6 +543,14 @@ EksHostPathTypeDef = TypedDict(
|
|
|
534
543
|
total=False,
|
|
535
544
|
)
|
|
536
545
|
|
|
546
|
+
EksMetadataTypeDef = TypedDict(
|
|
547
|
+
"EksMetadataTypeDef",
|
|
548
|
+
{
|
|
549
|
+
"labels": Dict[str, str],
|
|
550
|
+
},
|
|
551
|
+
total=False,
|
|
552
|
+
)
|
|
553
|
+
|
|
537
554
|
_RequiredEksSecretTypeDef = TypedDict(
|
|
538
555
|
"_RequiredEksSecretTypeDef",
|
|
539
556
|
{
|
|
@@ -1356,6 +1373,7 @@ EksPodPropertiesOverrideTypeDef = TypedDict(
|
|
|
1356
1373
|
"EksPodPropertiesOverrideTypeDef",
|
|
1357
1374
|
{
|
|
1358
1375
|
"containers": Sequence[EksContainerOverrideTypeDef],
|
|
1376
|
+
"metadata": EksMetadataTypeDef,
|
|
1359
1377
|
},
|
|
1360
1378
|
total=False,
|
|
1361
1379
|
)
|
|
@@ -1382,6 +1400,7 @@ EksPodPropertiesTypeDef = TypedDict(
|
|
|
1382
1400
|
"dnsPolicy": str,
|
|
1383
1401
|
"containers": List[EksContainerTypeDef],
|
|
1384
1402
|
"volumes": List[EksVolumeTypeDef],
|
|
1403
|
+
"metadata": EksMetadataTypeDef,
|
|
1385
1404
|
},
|
|
1386
1405
|
total=False,
|
|
1387
1406
|
)
|
|
@@ -1510,6 +1529,7 @@ ContainerDetailTypeDef = TypedDict(
|
|
|
1510
1529
|
"secrets": List[SecretTypeDef],
|
|
1511
1530
|
"networkConfiguration": NetworkConfigurationTypeDef,
|
|
1512
1531
|
"fargatePlatformConfiguration": FargatePlatformConfigurationTypeDef,
|
|
1532
|
+
"ephemeralStorage": EphemeralStorageTypeDef,
|
|
1513
1533
|
},
|
|
1514
1534
|
total=False,
|
|
1515
1535
|
)
|
|
@@ -1537,6 +1557,7 @@ ContainerPropertiesTypeDef = TypedDict(
|
|
|
1537
1557
|
"secrets": List[SecretTypeDef],
|
|
1538
1558
|
"networkConfiguration": NetworkConfigurationTypeDef,
|
|
1539
1559
|
"fargatePlatformConfiguration": FargatePlatformConfigurationTypeDef,
|
|
1560
|
+
"ephemeralStorage": EphemeralStorageTypeDef,
|
|
1540
1561
|
},
|
|
1541
1562
|
total=False,
|
|
1542
1563
|
)
|
mypy_boto3_batch/type_defs.pyi
CHANGED
|
@@ -53,6 +53,7 @@ __all__ = (
|
|
|
53
53
|
"ComputeEnvironmentOrderTypeDef",
|
|
54
54
|
"Ec2ConfigurationTypeDef",
|
|
55
55
|
"LaunchTemplateSpecificationTypeDef",
|
|
56
|
+
"EphemeralStorageTypeDef",
|
|
56
57
|
"FargatePlatformConfigurationTypeDef",
|
|
57
58
|
"KeyValuePairTypeDef",
|
|
58
59
|
"MountPointTypeDef",
|
|
@@ -81,6 +82,7 @@ __all__ = (
|
|
|
81
82
|
"EksContainerVolumeMountTypeDef",
|
|
82
83
|
"EksEmptyDirTypeDef",
|
|
83
84
|
"EksHostPathTypeDef",
|
|
85
|
+
"EksMetadataTypeDef",
|
|
84
86
|
"EksSecretTypeDef",
|
|
85
87
|
"EvaluateOnExitTypeDef",
|
|
86
88
|
"ShareAttributesTypeDef",
|
|
@@ -260,6 +262,13 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
|
|
|
260
262
|
total=False,
|
|
261
263
|
)
|
|
262
264
|
|
|
265
|
+
EphemeralStorageTypeDef = TypedDict(
|
|
266
|
+
"EphemeralStorageTypeDef",
|
|
267
|
+
{
|
|
268
|
+
"sizeInGiB": int,
|
|
269
|
+
},
|
|
270
|
+
)
|
|
271
|
+
|
|
263
272
|
FargatePlatformConfigurationTypeDef = TypedDict(
|
|
264
273
|
"FargatePlatformConfigurationTypeDef",
|
|
265
274
|
{
|
|
@@ -527,6 +536,14 @@ EksHostPathTypeDef = TypedDict(
|
|
|
527
536
|
total=False,
|
|
528
537
|
)
|
|
529
538
|
|
|
539
|
+
EksMetadataTypeDef = TypedDict(
|
|
540
|
+
"EksMetadataTypeDef",
|
|
541
|
+
{
|
|
542
|
+
"labels": Dict[str, str],
|
|
543
|
+
},
|
|
544
|
+
total=False,
|
|
545
|
+
)
|
|
546
|
+
|
|
530
547
|
_RequiredEksSecretTypeDef = TypedDict(
|
|
531
548
|
"_RequiredEksSecretTypeDef",
|
|
532
549
|
{
|
|
@@ -1315,6 +1332,7 @@ EksPodPropertiesOverrideTypeDef = TypedDict(
|
|
|
1315
1332
|
"EksPodPropertiesOverrideTypeDef",
|
|
1316
1333
|
{
|
|
1317
1334
|
"containers": Sequence[EksContainerOverrideTypeDef],
|
|
1335
|
+
"metadata": EksMetadataTypeDef,
|
|
1318
1336
|
},
|
|
1319
1337
|
total=False,
|
|
1320
1338
|
)
|
|
@@ -1341,6 +1359,7 @@ EksPodPropertiesTypeDef = TypedDict(
|
|
|
1341
1359
|
"dnsPolicy": str,
|
|
1342
1360
|
"containers": List[EksContainerTypeDef],
|
|
1343
1361
|
"volumes": List[EksVolumeTypeDef],
|
|
1362
|
+
"metadata": EksMetadataTypeDef,
|
|
1344
1363
|
},
|
|
1345
1364
|
total=False,
|
|
1346
1365
|
)
|
|
@@ -1463,6 +1482,7 @@ ContainerDetailTypeDef = TypedDict(
|
|
|
1463
1482
|
"secrets": List[SecretTypeDef],
|
|
1464
1483
|
"networkConfiguration": NetworkConfigurationTypeDef,
|
|
1465
1484
|
"fargatePlatformConfiguration": FargatePlatformConfigurationTypeDef,
|
|
1485
|
+
"ephemeralStorage": EphemeralStorageTypeDef,
|
|
1466
1486
|
},
|
|
1467
1487
|
total=False,
|
|
1468
1488
|
)
|
|
@@ -1490,6 +1510,7 @@ ContainerPropertiesTypeDef = TypedDict(
|
|
|
1490
1510
|
"secrets": List[SecretTypeDef],
|
|
1491
1511
|
"networkConfiguration": NetworkConfigurationTypeDef,
|
|
1492
1512
|
"fargatePlatformConfiguration": FargatePlatformConfigurationTypeDef,
|
|
1513
|
+
"ephemeralStorage": EphemeralStorageTypeDef,
|
|
1493
1514
|
},
|
|
1494
1515
|
total=False,
|
|
1495
1516
|
)
|
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.26.
|
|
4
|
-
Summary: Type annotations for boto3.Batch 1.26.
|
|
3
|
+
Version: 1.26.98
|
|
4
|
+
Summary: Type annotations for boto3.Batch 1.26.98 service generated with mypy-boto3-builder 7.14.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
|
|
@@ -29,7 +29,7 @@ Classifier: Typing :: Typed
|
|
|
29
29
|
Requires-Python: >=3.7
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
31
31
|
License-File: LICENSE
|
|
32
|
-
Requires-Dist: typing-extensions (>=4.1.0)
|
|
32
|
+
Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
|
|
33
33
|
|
|
34
34
|
<a id="mypy-boto3-batch"></a>
|
|
35
35
|
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions (>=4.1.0)
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.Batch 1.26.
|
|
46
|
+
[boto3.Batch 1.26.98](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.
|
|
55
|
+
[mypy-boto3-builder 7.14.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
|
|
@@ -375,6 +375,7 @@ from mypy_boto3_batch.type_defs import (
|
|
|
375
375
|
ComputeEnvironmentOrderTypeDef,
|
|
376
376
|
Ec2ConfigurationTypeDef,
|
|
377
377
|
LaunchTemplateSpecificationTypeDef,
|
|
378
|
+
EphemeralStorageTypeDef,
|
|
378
379
|
FargatePlatformConfigurationTypeDef,
|
|
379
380
|
KeyValuePairTypeDef,
|
|
380
381
|
MountPointTypeDef,
|
|
@@ -403,6 +404,7 @@ from mypy_boto3_batch.type_defs import (
|
|
|
403
404
|
EksContainerVolumeMountTypeDef,
|
|
404
405
|
EksEmptyDirTypeDef,
|
|
405
406
|
EksHostPathTypeDef,
|
|
407
|
+
EksMetadataTypeDef,
|
|
406
408
|
EksSecretTypeDef,
|
|
407
409
|
EvaluateOnExitTypeDef,
|
|
408
410
|
ShareAttributesTypeDef,
|
|
@@ -496,12 +498,11 @@ def get_structure() -> ArrayPropertiesDetailTypeDef:
|
|
|
496
498
|
Fully automated
|
|
497
499
|
[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully
|
|
498
500
|
generates type annotations for each service, patiently waiting for `boto3`
|
|
499
|
-
updates. It delivers
|
|
501
|
+
updates. It delivers drop-in type annotations for you and makes sure that:
|
|
500
502
|
|
|
501
503
|
- All available `boto3` services are covered.
|
|
502
504
|
- Each public class and method of every `boto3` service gets valid type
|
|
503
|
-
annotations extracted from
|
|
504
|
-
are incorrect).
|
|
505
|
+
annotations extracted from `botocore` schemas.
|
|
505
506
|
- Type annotations include up-to-date documentation.
|
|
506
507
|
- Link to documentation is provided for every method.
|
|
507
508
|
- Code is processed by [black](https://github.com/psf/black) and
|
|
@@ -515,15 +516,16 @@ updates. It delivers a drop-in type annotations for you and makes sure that:
|
|
|
515
516
|
|
|
516
517
|
### Implemented features
|
|
517
518
|
|
|
518
|
-
- Fully type annotated `boto3`, `botocore` and `
|
|
519
|
+
- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`
|
|
520
|
+
libraries
|
|
519
521
|
- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`
|
|
520
522
|
compatibility
|
|
521
523
|
- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type
|
|
522
524
|
annotations for each service
|
|
523
525
|
- Generated `TypeDefs` for each service
|
|
524
526
|
- Generated `Literals` for each service
|
|
525
|
-
- Auto discovery of types for `boto3.client` and `boto3.
|
|
526
|
-
- Auto discovery of types for `session.client` and `session.
|
|
527
|
+
- Auto discovery of types for `boto3.client` and `boto3.resource` calls
|
|
528
|
+
- Auto discovery of types for `session.client` and `session.resource` calls
|
|
527
529
|
- Auto discovery of types for `client.get_waiter` and `client.get_paginator`
|
|
528
530
|
calls
|
|
529
531
|
- Auto discovery of types for `ServiceResource` and `Resource` collections
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_batch/__init__.py,sha256=b9WbvR7s1Qvg1IZITLv90mQF0DyR27TTK6pxAcV5x8U,1510
|
|
2
|
+
mypy_boto3_batch/__init__.pyi,sha256=6aESXkOKOKL3CdL_lZRIL0ymvgprgymdAHV3RErJXEk,1509
|
|
3
|
+
mypy_boto3_batch/__main__.py,sha256=G8wQJa8dYr_VjyCgHAe8k8XOXlqh4CoC6Ou7HN_xcbA,899
|
|
4
|
+
mypy_boto3_batch/client.py,sha256=RaP6bTfr4xNX2fxA0K7nPXPvCQ_I4JrKEnRtIlVEXWY,20525
|
|
5
|
+
mypy_boto3_batch/client.pyi,sha256=5ktuEWFBcvNgty2hC5diG78vtXNzv4gRUJPqPtSFMdU,20489
|
|
6
|
+
mypy_boto3_batch/literals.py,sha256=hDJ2FLAv6xKZm9ocFyLp-1JnD09fsWRw1vmjLnj3djw,10383
|
|
7
|
+
mypy_boto3_batch/literals.pyi,sha256=Xpion5EbiVR1lSeUEPVHpdlBmTCrUcGkYKd_IDiZgWE,10381
|
|
8
|
+
mypy_boto3_batch/paginator.py,sha256=RzJfVIEDTQZYgC3C1j_47AjWARHCHxL4JdE6VaR05ms,6633
|
|
9
|
+
mypy_boto3_batch/paginator.pyi,sha256=Tvq7SSQ-LHnMdeuOk57EF6jK77B5_a7idrX8xhs-rdA,6626
|
|
10
|
+
mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_batch/type_defs.py,sha256=oMGOImOkHYvoIqUSzf5oPr4Whwlp_6i3RrChB1CVWcw,43981
|
|
12
|
+
mypy_boto3_batch/type_defs.pyi,sha256=c0KonREyFZL97_E46woHxpKCK7Mr00xInHva4NJpIeA,43924
|
|
13
|
+
mypy_boto3_batch/version.py,sha256=8XMre7KVOgwaPbjcmqh6Vxff7MMowvgHufltME_vf7Q,61
|
|
14
|
+
mypy_boto3_batch-1.26.98.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
15
|
+
mypy_boto3_batch-1.26.98.dist-info/METADATA,sha256=HeAmK_VeaJCNbmgyp1J4K60taW1XXOHAWSGNZphbQfY,17901
|
|
16
|
+
mypy_boto3_batch-1.26.98.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
17
|
+
mypy_boto3_batch-1.26.98.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
+
mypy_boto3_batch-1.26.98.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_batch/__init__.py,sha256=b9WbvR7s1Qvg1IZITLv90mQF0DyR27TTK6pxAcV5x8U,1510
|
|
2
|
-
mypy_boto3_batch/__init__.pyi,sha256=6aESXkOKOKL3CdL_lZRIL0ymvgprgymdAHV3RErJXEk,1509
|
|
3
|
-
mypy_boto3_batch/__main__.py,sha256=vy0hOvTekflzkPWurXo6asiZw4ZEsAmsb9MYW0uHoo0,899
|
|
4
|
-
mypy_boto3_batch/client.py,sha256=RaP6bTfr4xNX2fxA0K7nPXPvCQ_I4JrKEnRtIlVEXWY,20525
|
|
5
|
-
mypy_boto3_batch/client.pyi,sha256=5ktuEWFBcvNgty2hC5diG78vtXNzv4gRUJPqPtSFMdU,20489
|
|
6
|
-
mypy_boto3_batch/literals.py,sha256=gjdp2tuGxDjyXE5Micr7MIrT1qxeecVwovcTrH2ksU4,10203
|
|
7
|
-
mypy_boto3_batch/literals.pyi,sha256=GXwkMfMk7jK8rnxWUGYlxmDGHmb_E3gRID3-JGj0Jlc,10201
|
|
8
|
-
mypy_boto3_batch/paginator.py,sha256=RzJfVIEDTQZYgC3C1j_47AjWARHCHxL4JdE6VaR05ms,6633
|
|
9
|
-
mypy_boto3_batch/paginator.pyi,sha256=Tvq7SSQ-LHnMdeuOk57EF6jK77B5_a7idrX8xhs-rdA,6626
|
|
10
|
-
mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_batch/type_defs.py,sha256=0fUaCYTJcNQJUos2LSAeUfoIkDwCk5SxqSf0tykSqi4,43503
|
|
12
|
-
mypy_boto3_batch/type_defs.pyi,sha256=No-9AVQUXtbfXIM7WzjFN1UumqfwMhQVvUVvwFa9UAA,43446
|
|
13
|
-
mypy_boto3_batch/version.py,sha256=lduk-2aHxtTzBl0mUlbEtaPMhgUiTHVnRvjsgFygMco,61
|
|
14
|
-
mypy_boto3_batch-1.26.34.dist-info/LICENSE,sha256=3_r9GYGd8R5pnKmlnuTg6Z-JwMQsxc6qM2WUN2eCLrw,1070
|
|
15
|
-
mypy_boto3_batch-1.26.34.dist-info/METADATA,sha256=HeSk3Ey5V43PyeZK_JWKrO3hgy8kclXd8wavA2wlfEY,17857
|
|
16
|
-
mypy_boto3_batch-1.26.34.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
17
|
-
mypy_boto3_batch-1.26.34.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
-
mypy_boto3_batch-1.26.34.dist-info/RECORD,,
|
|
File without changes
|