types-boto3-batch 1.37.0__py3-none-any.whl → 1.37.2__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/__init__.py +8 -0
- types_boto3_batch/__init__.pyi +8 -0
- types_boto3_batch/__main__.py +3 -3
- types_boto3_batch/client.py +95 -0
- types_boto3_batch/client.pyi +95 -0
- types_boto3_batch/literals.py +6 -0
- types_boto3_batch/literals.pyi +6 -0
- types_boto3_batch/paginator.py +54 -0
- types_boto3_batch/paginator.pyi +48 -0
- types_boto3_batch/type_defs.py +149 -0
- types_boto3_batch/type_defs.pyi +130 -0
- types_boto3_batch/version.py +1 -1
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.2.dist-info}/METADATA +12 -4
- types_boto3_batch-1.37.2.dist-info/RECORD +18 -0
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.2.dist-info}/WHEEL +1 -1
- types_boto3_batch-1.37.0.dist-info/RECORD +0 -18
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.2.dist-info}/LICENSE +0 -0
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.2.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-batch
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 Batch 1.37.
|
|
3
|
+
Version: 1.37.2
|
|
4
|
+
Summary: Type annotations for boto3 Batch 1.37.2 service generated with mypy-boto3-builder 8.9.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
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 Batch 1.37.
|
|
58
|
+
Type annotations for [boto3 Batch 1.37.2](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -117,7 +117,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
117
117
|
isolation.
|
|
118
118
|
|
|
119
119
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.37.
|
|
120
|
+
`uvx --with 'boto3==1.37.2' mypy-boto3-builder`
|
|
121
121
|
2. Select `boto3` AWS SDK.
|
|
122
122
|
3. Add `Batch` service.
|
|
123
123
|
4. Use provided commands to install generated packages.
|
|
@@ -354,6 +354,8 @@ from types_boto3_batch.paginator import (
|
|
|
354
354
|
DescribeComputeEnvironmentsPaginator,
|
|
355
355
|
DescribeJobDefinitionsPaginator,
|
|
356
356
|
DescribeJobQueuesPaginator,
|
|
357
|
+
ListConsumableResourcesPaginator,
|
|
358
|
+
ListJobsByConsumableResourcePaginator,
|
|
357
359
|
ListJobsPaginator,
|
|
358
360
|
ListSchedulingPoliciesPaginator,
|
|
359
361
|
)
|
|
@@ -371,6 +373,12 @@ describe_job_definitions_paginator: DescribeJobDefinitionsPaginator = client.get
|
|
|
371
373
|
describe_job_queues_paginator: DescribeJobQueuesPaginator = client.get_paginator(
|
|
372
374
|
"describe_job_queues"
|
|
373
375
|
)
|
|
376
|
+
list_consumable_resources_paginator: ListConsumableResourcesPaginator = client.get_paginator(
|
|
377
|
+
"list_consumable_resources"
|
|
378
|
+
)
|
|
379
|
+
list_jobs_by_consumable_resource_paginator: ListJobsByConsumableResourcePaginator = (
|
|
380
|
+
client.get_paginator("list_jobs_by_consumable_resource")
|
|
381
|
+
)
|
|
374
382
|
list_jobs_paginator: ListJobsPaginator = client.get_paginator("list_jobs")
|
|
375
383
|
list_scheduling_policies_paginator: ListSchedulingPoliciesPaginator = client.get_paginator(
|
|
376
384
|
"list_scheduling_policies"
|
|
@@ -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=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,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_batch/__init__.py,sha256=6kSqLmD_FeMTNj4pMX58gfk7zAeP0sJpB-yr5B01y1k,1623
|
|
2
|
-
types_boto3_batch/__init__.pyi,sha256=qDwUwt_FyFXE1XIFiuQyCtv8RPLjycMnNPHtpe0dr2Q,1622
|
|
3
|
-
types_boto3_batch/__main__.py,sha256=oFm3Y7aS3tbsmhGagZkwgs7jc_5WxlsXYaU1IcIznY0,973
|
|
4
|
-
types_boto3_batch/client.py,sha256=BZcJqulLfilAX8Ap30H_a4QrSEQBHEnTc56LN70Di-8,19308
|
|
5
|
-
types_boto3_batch/client.pyi,sha256=mEvyTSVQJdfX4zM0PJ74W0NVyo62aEBJ71W_v9GpvDg,19305
|
|
6
|
-
types_boto3_batch/literals.py,sha256=q4UculLSgPe8zHBMhyxoNAjbMGFYxNCLUYVb5vFbeXg,12208
|
|
7
|
-
types_boto3_batch/literals.pyi,sha256=2Kejxvtu-vwSQxX11w5C_wN81kCMCIf4JgT0Iwr7vOw,12206
|
|
8
|
-
types_boto3_batch/paginator.py,sha256=5yR_CYfJe0AIOWuLXfq4DZHPsv3ylfyLsVc-iSFT_0c,7863
|
|
9
|
-
types_boto3_batch/paginator.pyi,sha256=BpY1xHeZPbo8-ZFWgot3XpgsHjZwwRPvwJ4lEuEHaLs,7847
|
|
10
|
-
types_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_batch/type_defs.py,sha256=1AzSrAA6NdPB0iFgBvC65vus1dYPOpl-Uxsqgms1IWs,49939
|
|
12
|
-
types_boto3_batch/type_defs.pyi,sha256=QUtgHI6INsud8dWVxGBdnuo15tU-f58UhD80vQwlkZQ,49769
|
|
13
|
-
types_boto3_batch/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
14
|
-
types_boto3_batch-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_batch-1.37.0.dist-info/METADATA,sha256=3WlaKhdFDaKm_uOdoC_xPD5aRDeDtcMhFtRTgjYA9CM,15426
|
|
16
|
-
types_boto3_batch-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
types_boto3_batch-1.37.0.dist-info/top_level.txt,sha256=Uom8UeK1nnEn9_7ktm0WqcI79MHSYcQA-TT0oD_e8mM,18
|
|
18
|
-
types_boto3_batch-1.37.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|