mypy-boto3-batch 1.36.23__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.
- mypy_boto3_batch/__init__.py +8 -0
- mypy_boto3_batch/__init__.pyi +8 -0
- mypy_boto3_batch/__main__.py +4 -4
- mypy_boto3_batch/client.py +95 -0
- mypy_boto3_batch/client.pyi +95 -0
- mypy_boto3_batch/literals.py +6 -1
- mypy_boto3_batch/literals.pyi +6 -1
- mypy_boto3_batch/paginator.py +54 -0
- mypy_boto3_batch/paginator.pyi +48 -0
- mypy_boto3_batch/type_defs.py +149 -0
- mypy_boto3_batch/type_defs.pyi +130 -0
- mypy_boto3_batch/version.py +1 -1
- {mypy_boto3_batch-1.36.23.dist-info → mypy_boto3_batch-1.37.2.dist-info}/METADATA +18 -7
- mypy_boto3_batch-1.37.2.dist-info/RECORD +18 -0
- {mypy_boto3_batch-1.36.23.dist-info → mypy_boto3_batch-1.37.2.dist-info}/WHEEL +1 -1
- mypy_boto3_batch-1.36.23.dist-info/RECORD +0 -18
- {mypy_boto3_batch-1.36.23.dist-info → mypy_boto3_batch-1.37.2.dist-info}/LICENSE +0 -0
- {mypy_boto3_batch-1.36.23.dist-info → mypy_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: mypy-boto3-batch
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Batch 1.
|
|
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.
|
|
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/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.9.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -112,12 +112,12 @@ See how it helps you find and fix potential bugs:
|
|
|
112
112
|
### Generate locally (recommended)
|
|
113
113
|
|
|
114
114
|
You can generate type annotations for `boto3` package locally with
|
|
115
|
-
`
|
|
115
|
+
`mypy-boto3-builder`. Use
|
|
116
116
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
117
117
|
isolation.
|
|
118
118
|
|
|
119
119
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.
|
|
120
|
+
`uvx --with 'boto3==1.37.2' mypy-boto3-builder`
|
|
121
121
|
2. Select `boto3-stubs` AWS SDK.
|
|
122
122
|
3. Add `Batch` service.
|
|
123
123
|
4. Use provided commands to install generated packages.
|
|
@@ -354,6 +354,8 @@ from mypy_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"
|
|
@@ -405,11 +413,14 @@ Full list of `Batch` TypeDefs can be found in
|
|
|
405
413
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch/type_defs/).
|
|
406
414
|
|
|
407
415
|
```python
|
|
416
|
+
# TypedDict usage example
|
|
408
417
|
from mypy_boto3_batch.type_defs import ArrayPropertiesDetailTypeDef
|
|
409
418
|
|
|
410
419
|
|
|
411
420
|
def get_value() -> ArrayPropertiesDetailTypeDef:
|
|
412
|
-
return {
|
|
421
|
+
return {
|
|
422
|
+
"statusSummary": ...,
|
|
423
|
+
}
|
|
413
424
|
```
|
|
414
425
|
|
|
415
426
|
<a id="how-it-works"></a>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_batch/__init__.py,sha256=0rB8cw5Bu9yH6r3KKQhZoXBmdzGpAcmdVxlJalI2zog,2147
|
|
2
|
+
mypy_boto3_batch/__init__.pyi,sha256=Pl7jX8vZkhZTXUmK0BOYgPPkmub1Il_sYdBaqqtfSlg,2146
|
|
3
|
+
mypy_boto3_batch/__main__.py,sha256=aAWyGLrqdS9IBSRHsNlTZHQYMTnnAkzoaaEctF-gZ8s,972
|
|
4
|
+
mypy_boto3_batch/client.py,sha256=ddL_d5OQ6H49HoH_ng2jPZ2E_jCS07VPSatEGZw6a54,24140
|
|
5
|
+
mypy_boto3_batch/client.pyi,sha256=63soAU2PTh38xBUEDkQfrV7203tmPUQKbp8Ze4RMTFE,24137
|
|
6
|
+
mypy_boto3_batch/literals.py,sha256=uFtFf9UB-ZcmxHtFUGD_U1GqT0YMfaQZ9UPsjvDbTCA,12536
|
|
7
|
+
mypy_boto3_batch/literals.pyi,sha256=8_cwnaYrWtFPCYnRaUbGDAU_-LoEmeDPjPpRpVanb0g,12534
|
|
8
|
+
mypy_boto3_batch/paginator.py,sha256=o8xFZ3tGCtXlROvBQA6fKUxWsz_Oo9TcQLWMotBJXHw,10966
|
|
9
|
+
mypy_boto3_batch/paginator.pyi,sha256=QC-UDWg-CqHl9P_hMgDNk6H_W-eBHMkC4mzwuNxUhgQ,10944
|
|
10
|
+
mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_batch/type_defs.py,sha256=TOKsoOAAdTp_kI_2lfesJMblrxrhhZDfwdBioAu4npU,55083
|
|
12
|
+
mypy_boto3_batch/type_defs.pyi,sha256=fzQWWeaQ0MbTQSakfruONXW_v33bKcRv8ChcIrV_XHo,54894
|
|
13
|
+
mypy_boto3_batch/version.py,sha256=RXH_0egUmMkopAJTMUwSLB79iHjXy5B_GcMAxoULgf0,92
|
|
14
|
+
mypy_boto3_batch-1.37.2.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_batch-1.37.2.dist-info/METADATA,sha256=v236HvleEzmu2ZUOlPwSjOSBDt0CGeNNf7dDrEbwE-M,15757
|
|
16
|
+
mypy_boto3_batch-1.37.2.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
17
|
+
mypy_boto3_batch-1.37.2.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
+
mypy_boto3_batch-1.37.2.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_batch/__init__.py,sha256=qltra1WfPBEJaoshBzqxG-HOkBp2l1hftXY_OPa3BL8,1621
|
|
2
|
-
mypy_boto3_batch/__init__.pyi,sha256=s4WPQKkr-LHxUodRuSw-j_ndcCqA9M7LUUZaTZIuSTw,1620
|
|
3
|
-
mypy_boto3_batch/__main__.py,sha256=xxyx_d24yA-7ON4HiSFuMsYCDF3F1yQgyLuQrissiac,975
|
|
4
|
-
mypy_boto3_batch/client.py,sha256=25OTd2vaqYb4eVhod8ZNLbuZ5KfE_6_O7v_8J6eCDbs,19272
|
|
5
|
-
mypy_boto3_batch/client.pyi,sha256=dnfLy3tVU4Rm3zLsG8pipcZ8hVDDiXClzRUFj3CtmXE,19269
|
|
6
|
-
mypy_boto3_batch/literals.py,sha256=-1tGbCZzeOyhnjf96gKbK0EnEbU7kNR4yWyt5BpMGws,12231
|
|
7
|
-
mypy_boto3_batch/literals.pyi,sha256=65PhAvmw1Gub6MyFOpZpqkEbSGqM7L1QcJYTJYUWjWg,12229
|
|
8
|
-
mypy_boto3_batch/paginator.py,sha256=LmqpiRKgilPxAwcaLbWNBPAjOtBOp_w4hKWXbNe5aSM,7850
|
|
9
|
-
mypy_boto3_batch/paginator.pyi,sha256=SroluGXy-YdE7m5l2ikjbBpsX59HNrK46njuPdHcaXA,7834
|
|
10
|
-
mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_batch/type_defs.py,sha256=jEFUR3viwmd3Zi5iYadhFuA129KSJwHlKSWbpGUOZqs,49937
|
|
12
|
-
mypy_boto3_batch/type_defs.pyi,sha256=8TtRVegInalfzAO8KoOedtKF6yEGALuOEgjqpXVcP0Y,49767
|
|
13
|
-
mypy_boto3_batch/version.py,sha256=IceBHJXtswvRKVKqn2uUUZ-hhjTiULoiXy_eIyo5Ge8,93
|
|
14
|
-
mypy_boto3_batch-1.36.23.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_batch-1.36.23.dist-info/METADATA,sha256=CPS5bTFkgzIfPqrVZ6eOxBeKKlYZSXZMwAuPYf7sjO0,15345
|
|
16
|
-
mypy_boto3_batch-1.36.23.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
mypy_boto3_batch-1.36.23.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
-
mypy_boto3_batch-1.36.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|