mypy-boto3-batch 1.34.0__py3-none-any.whl → 1.34.39__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 +0 -1
- mypy_boto3_batch/__main__.py +8 -7
- mypy_boto3_batch/client.py +10 -11
- mypy_boto3_batch/client.pyi +10 -10
- mypy_boto3_batch/literals.py +4 -2
- mypy_boto3_batch/literals.pyi +4 -0
- mypy_boto3_batch/paginator.py +3 -4
- mypy_boto3_batch/paginator.pyi +3 -3
- mypy_boto3_batch/type_defs.py +9 -1
- mypy_boto3_batch/type_defs.pyi +9 -0
- mypy_boto3_batch/version.py +1 -1
- {mypy_boto3_batch-1.34.0.dist-info → mypy_boto3_batch-1.34.39.dist-info}/LICENSE +1 -1
- {mypy_boto3_batch-1.34.0.dist-info → mypy_boto3_batch-1.34.39.dist-info}/METADATA +6 -7
- mypy_boto3_batch-1.34.39.dist-info/RECORD +18 -0
- mypy_boto3_batch-1.34.0.dist-info/RECORD +0 -18
- {mypy_boto3_batch-1.34.0.dist-info → mypy_boto3_batch-1.34.39.dist-info}/WHEEL +0 -0
- {mypy_boto3_batch-1.34.0.dist-info → mypy_boto3_batch-1.34.39.dist-info}/top_level.txt +0 -0
mypy_boto3_batch/__init__.py
CHANGED
mypy_boto3_batch/__main__.py
CHANGED
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.Batch 1.34.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.Batch 1.34.39\n"
|
|
14
|
+
"Version: 1.34.39\n"
|
|
15
|
+
"Builder version: 7.23.1\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.34.
|
|
27
|
+
print("1.34.39")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
mypy_boto3_batch/client.py
CHANGED
|
@@ -74,7 +74,6 @@ if sys.version_info >= (3, 12):
|
|
|
74
74
|
else:
|
|
75
75
|
from typing_extensions import Literal
|
|
76
76
|
|
|
77
|
-
|
|
78
77
|
__all__ = ("BatchClient",)
|
|
79
78
|
|
|
80
79
|
|
|
@@ -143,7 +142,7 @@ class BatchClient(BaseClient):
|
|
|
143
142
|
computeResources: ComputeResourceTypeDef = ...,
|
|
144
143
|
serviceRole: str = ...,
|
|
145
144
|
tags: Mapping[str, str] = ...,
|
|
146
|
-
eksConfiguration: EksConfigurationTypeDef =
|
|
145
|
+
eksConfiguration: EksConfigurationTypeDef = ...,
|
|
147
146
|
) -> CreateComputeEnvironmentResponseTypeDef:
|
|
148
147
|
"""
|
|
149
148
|
Creates an Batch compute environment.
|
|
@@ -160,7 +159,7 @@ class BatchClient(BaseClient):
|
|
|
160
159
|
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef],
|
|
161
160
|
state: JQStateType = ...,
|
|
162
161
|
schedulingPolicyArn: str = ...,
|
|
163
|
-
tags: Mapping[str, str] =
|
|
162
|
+
tags: Mapping[str, str] = ...,
|
|
164
163
|
) -> CreateJobQueueResponseTypeDef:
|
|
165
164
|
"""
|
|
166
165
|
Creates an Batch job queue.
|
|
@@ -174,7 +173,7 @@ class BatchClient(BaseClient):
|
|
|
174
173
|
*,
|
|
175
174
|
name: str,
|
|
176
175
|
fairsharePolicy: FairsharePolicyTypeDef = ...,
|
|
177
|
-
tags: Mapping[str, str] =
|
|
176
|
+
tags: Mapping[str, str] = ...,
|
|
178
177
|
) -> CreateSchedulingPolicyResponseTypeDef:
|
|
179
178
|
"""
|
|
180
179
|
Creates an Batch scheduling policy.
|
|
@@ -220,7 +219,7 @@ class BatchClient(BaseClient):
|
|
|
220
219
|
*,
|
|
221
220
|
computeEnvironments: Sequence[str] = ...,
|
|
222
221
|
maxResults: int = ...,
|
|
223
|
-
nextToken: str =
|
|
222
|
+
nextToken: str = ...,
|
|
224
223
|
) -> DescribeComputeEnvironmentsResponseTypeDef:
|
|
225
224
|
"""
|
|
226
225
|
Describes one or more of your compute environments.
|
|
@@ -236,7 +235,7 @@ class BatchClient(BaseClient):
|
|
|
236
235
|
maxResults: int = ...,
|
|
237
236
|
jobDefinitionName: str = ...,
|
|
238
237
|
status: str = ...,
|
|
239
|
-
nextToken: str =
|
|
238
|
+
nextToken: str = ...,
|
|
240
239
|
) -> DescribeJobDefinitionsResponseTypeDef:
|
|
241
240
|
"""
|
|
242
241
|
Describes a list of job definitions.
|
|
@@ -296,7 +295,7 @@ class BatchClient(BaseClient):
|
|
|
296
295
|
jobStatus: JobStatusType = ...,
|
|
297
296
|
maxResults: int = ...,
|
|
298
297
|
nextToken: str = ...,
|
|
299
|
-
filters: Sequence[KeyValuesPairTypeDef] =
|
|
298
|
+
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
300
299
|
) -> ListJobsResponseTypeDef:
|
|
301
300
|
"""
|
|
302
301
|
Returns a list of Batch jobs.
|
|
@@ -337,7 +336,7 @@ class BatchClient(BaseClient):
|
|
|
337
336
|
timeout: JobTimeoutTypeDef = ...,
|
|
338
337
|
tags: Mapping[str, str] = ...,
|
|
339
338
|
platformCapabilities: Sequence[PlatformCapabilityType] = ...,
|
|
340
|
-
eksProperties: EksPropertiesTypeDef =
|
|
339
|
+
eksProperties: EksPropertiesTypeDef = ...,
|
|
341
340
|
) -> RegisterJobDefinitionResponseTypeDef:
|
|
342
341
|
"""
|
|
343
342
|
Registers an Batch job definition.
|
|
@@ -363,7 +362,7 @@ class BatchClient(BaseClient):
|
|
|
363
362
|
propagateTags: bool = ...,
|
|
364
363
|
timeout: JobTimeoutTypeDef = ...,
|
|
365
364
|
tags: Mapping[str, str] = ...,
|
|
366
|
-
eksPropertiesOverride: EksPropertiesOverrideTypeDef =
|
|
365
|
+
eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
|
|
367
366
|
) -> SubmitJobResponseTypeDef:
|
|
368
367
|
"""
|
|
369
368
|
Submits an Batch job from a job definition.
|
|
@@ -404,7 +403,7 @@ class BatchClient(BaseClient):
|
|
|
404
403
|
unmanagedvCpus: int = ...,
|
|
405
404
|
computeResources: ComputeResourceUpdateTypeDef = ...,
|
|
406
405
|
serviceRole: str = ...,
|
|
407
|
-
updatePolicy: UpdatePolicyTypeDef =
|
|
406
|
+
updatePolicy: UpdatePolicyTypeDef = ...,
|
|
408
407
|
) -> UpdateComputeEnvironmentResponseTypeDef:
|
|
409
408
|
"""
|
|
410
409
|
Updates an Batch compute environment.
|
|
@@ -420,7 +419,7 @@ class BatchClient(BaseClient):
|
|
|
420
419
|
state: JQStateType = ...,
|
|
421
420
|
schedulingPolicyArn: str = ...,
|
|
422
421
|
priority: int = ...,
|
|
423
|
-
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] =
|
|
422
|
+
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...,
|
|
424
423
|
) -> UpdateJobQueueResponseTypeDef:
|
|
425
424
|
"""
|
|
426
425
|
Updates a job queue.
|
mypy_boto3_batch/client.pyi
CHANGED
|
@@ -139,7 +139,7 @@ class BatchClient(BaseClient):
|
|
|
139
139
|
computeResources: ComputeResourceTypeDef = ...,
|
|
140
140
|
serviceRole: str = ...,
|
|
141
141
|
tags: Mapping[str, str] = ...,
|
|
142
|
-
eksConfiguration: EksConfigurationTypeDef =
|
|
142
|
+
eksConfiguration: EksConfigurationTypeDef = ...,
|
|
143
143
|
) -> CreateComputeEnvironmentResponseTypeDef:
|
|
144
144
|
"""
|
|
145
145
|
Creates an Batch compute environment.
|
|
@@ -156,7 +156,7 @@ class BatchClient(BaseClient):
|
|
|
156
156
|
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef],
|
|
157
157
|
state: JQStateType = ...,
|
|
158
158
|
schedulingPolicyArn: str = ...,
|
|
159
|
-
tags: Mapping[str, str] =
|
|
159
|
+
tags: Mapping[str, str] = ...,
|
|
160
160
|
) -> CreateJobQueueResponseTypeDef:
|
|
161
161
|
"""
|
|
162
162
|
Creates an Batch job queue.
|
|
@@ -170,7 +170,7 @@ class BatchClient(BaseClient):
|
|
|
170
170
|
*,
|
|
171
171
|
name: str,
|
|
172
172
|
fairsharePolicy: FairsharePolicyTypeDef = ...,
|
|
173
|
-
tags: Mapping[str, str] =
|
|
173
|
+
tags: Mapping[str, str] = ...,
|
|
174
174
|
) -> CreateSchedulingPolicyResponseTypeDef:
|
|
175
175
|
"""
|
|
176
176
|
Creates an Batch scheduling policy.
|
|
@@ -216,7 +216,7 @@ class BatchClient(BaseClient):
|
|
|
216
216
|
*,
|
|
217
217
|
computeEnvironments: Sequence[str] = ...,
|
|
218
218
|
maxResults: int = ...,
|
|
219
|
-
nextToken: str =
|
|
219
|
+
nextToken: str = ...,
|
|
220
220
|
) -> DescribeComputeEnvironmentsResponseTypeDef:
|
|
221
221
|
"""
|
|
222
222
|
Describes one or more of your compute environments.
|
|
@@ -232,7 +232,7 @@ class BatchClient(BaseClient):
|
|
|
232
232
|
maxResults: int = ...,
|
|
233
233
|
jobDefinitionName: str = ...,
|
|
234
234
|
status: str = ...,
|
|
235
|
-
nextToken: str =
|
|
235
|
+
nextToken: str = ...,
|
|
236
236
|
) -> DescribeJobDefinitionsResponseTypeDef:
|
|
237
237
|
"""
|
|
238
238
|
Describes a list of job definitions.
|
|
@@ -292,7 +292,7 @@ class BatchClient(BaseClient):
|
|
|
292
292
|
jobStatus: JobStatusType = ...,
|
|
293
293
|
maxResults: int = ...,
|
|
294
294
|
nextToken: str = ...,
|
|
295
|
-
filters: Sequence[KeyValuesPairTypeDef] =
|
|
295
|
+
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
296
296
|
) -> ListJobsResponseTypeDef:
|
|
297
297
|
"""
|
|
298
298
|
Returns a list of Batch jobs.
|
|
@@ -333,7 +333,7 @@ class BatchClient(BaseClient):
|
|
|
333
333
|
timeout: JobTimeoutTypeDef = ...,
|
|
334
334
|
tags: Mapping[str, str] = ...,
|
|
335
335
|
platformCapabilities: Sequence[PlatformCapabilityType] = ...,
|
|
336
|
-
eksProperties: EksPropertiesTypeDef =
|
|
336
|
+
eksProperties: EksPropertiesTypeDef = ...,
|
|
337
337
|
) -> RegisterJobDefinitionResponseTypeDef:
|
|
338
338
|
"""
|
|
339
339
|
Registers an Batch job definition.
|
|
@@ -359,7 +359,7 @@ class BatchClient(BaseClient):
|
|
|
359
359
|
propagateTags: bool = ...,
|
|
360
360
|
timeout: JobTimeoutTypeDef = ...,
|
|
361
361
|
tags: Mapping[str, str] = ...,
|
|
362
|
-
eksPropertiesOverride: EksPropertiesOverrideTypeDef =
|
|
362
|
+
eksPropertiesOverride: EksPropertiesOverrideTypeDef = ...,
|
|
363
363
|
) -> SubmitJobResponseTypeDef:
|
|
364
364
|
"""
|
|
365
365
|
Submits an Batch job from a job definition.
|
|
@@ -400,7 +400,7 @@ class BatchClient(BaseClient):
|
|
|
400
400
|
unmanagedvCpus: int = ...,
|
|
401
401
|
computeResources: ComputeResourceUpdateTypeDef = ...,
|
|
402
402
|
serviceRole: str = ...,
|
|
403
|
-
updatePolicy: UpdatePolicyTypeDef =
|
|
403
|
+
updatePolicy: UpdatePolicyTypeDef = ...,
|
|
404
404
|
) -> UpdateComputeEnvironmentResponseTypeDef:
|
|
405
405
|
"""
|
|
406
406
|
Updates an Batch compute environment.
|
|
@@ -416,7 +416,7 @@ class BatchClient(BaseClient):
|
|
|
416
416
|
state: JQStateType = ...,
|
|
417
417
|
schedulingPolicyArn: str = ...,
|
|
418
418
|
priority: int = ...,
|
|
419
|
-
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] =
|
|
419
|
+
computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef] = ...,
|
|
420
420
|
) -> UpdateJobQueueResponseTypeDef:
|
|
421
421
|
"""
|
|
422
422
|
Updates a job queue.
|
mypy_boto3_batch/literals.py
CHANGED
|
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"ArrayJobDependencyType",
|
|
25
24
|
"AssignPublicIpType",
|
|
@@ -53,7 +52,6 @@ __all__ = (
|
|
|
53
52
|
"RegionName",
|
|
54
53
|
)
|
|
55
54
|
|
|
56
|
-
|
|
57
55
|
ArrayJobDependencyType = Literal["N_TO_N", "SEQUENTIAL"]
|
|
58
56
|
AssignPublicIpType = Literal["DISABLED", "ENABLED"]
|
|
59
57
|
CEStateType = Literal["DISABLED", "ENABLED"]
|
|
@@ -333,9 +331,11 @@ ServiceName = Literal[
|
|
|
333
331
|
"mturk",
|
|
334
332
|
"mwaa",
|
|
335
333
|
"neptune",
|
|
334
|
+
"neptune-graph",
|
|
336
335
|
"neptunedata",
|
|
337
336
|
"network-firewall",
|
|
338
337
|
"networkmanager",
|
|
338
|
+
"networkmonitor",
|
|
339
339
|
"nimble",
|
|
340
340
|
"oam",
|
|
341
341
|
"omics",
|
|
@@ -433,6 +433,7 @@ ServiceName = Literal[
|
|
|
433
433
|
"stepfunctions",
|
|
434
434
|
"storagegateway",
|
|
435
435
|
"sts",
|
|
436
|
+
"supplychain",
|
|
436
437
|
"support",
|
|
437
438
|
"support-app",
|
|
438
439
|
"swf",
|
|
@@ -494,6 +495,7 @@ RegionName = Literal[
|
|
|
494
495
|
"ap-southeast-3",
|
|
495
496
|
"ap-southeast-4",
|
|
496
497
|
"ca-central-1",
|
|
498
|
+
"ca-west-1",
|
|
497
499
|
"eu-central-1",
|
|
498
500
|
"eu-central-2",
|
|
499
501
|
"eu-north-1",
|
mypy_boto3_batch/literals.pyi
CHANGED
|
@@ -331,9 +331,11 @@ ServiceName = Literal[
|
|
|
331
331
|
"mturk",
|
|
332
332
|
"mwaa",
|
|
333
333
|
"neptune",
|
|
334
|
+
"neptune-graph",
|
|
334
335
|
"neptunedata",
|
|
335
336
|
"network-firewall",
|
|
336
337
|
"networkmanager",
|
|
338
|
+
"networkmonitor",
|
|
337
339
|
"nimble",
|
|
338
340
|
"oam",
|
|
339
341
|
"omics",
|
|
@@ -431,6 +433,7 @@ ServiceName = Literal[
|
|
|
431
433
|
"stepfunctions",
|
|
432
434
|
"storagegateway",
|
|
433
435
|
"sts",
|
|
436
|
+
"supplychain",
|
|
434
437
|
"support",
|
|
435
438
|
"support-app",
|
|
436
439
|
"swf",
|
|
@@ -492,6 +495,7 @@ RegionName = Literal[
|
|
|
492
495
|
"ap-southeast-3",
|
|
493
496
|
"ap-southeast-4",
|
|
494
497
|
"ca-central-1",
|
|
498
|
+
"ca-west-1",
|
|
495
499
|
"eu-central-1",
|
|
496
500
|
"eu-central-2",
|
|
497
501
|
"eu-north-1",
|
mypy_boto3_batch/paginator.py
CHANGED
|
@@ -51,7 +51,6 @@ __all__ = (
|
|
|
51
51
|
"ListSchedulingPoliciesPaginator",
|
|
52
52
|
)
|
|
53
53
|
|
|
54
|
-
|
|
55
54
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
56
55
|
|
|
57
56
|
|
|
@@ -72,7 +71,7 @@ class DescribeComputeEnvironmentsPaginator(Paginator):
|
|
|
72
71
|
self,
|
|
73
72
|
*,
|
|
74
73
|
computeEnvironments: Sequence[str] = ...,
|
|
75
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
74
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
76
75
|
) -> _PageIterator[DescribeComputeEnvironmentsResponsePaginatorTypeDef]:
|
|
77
76
|
"""
|
|
78
77
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeComputeEnvironments.paginate)
|
|
@@ -92,7 +91,7 @@ class DescribeJobDefinitionsPaginator(Paginator):
|
|
|
92
91
|
jobDefinitions: Sequence[str] = ...,
|
|
93
92
|
jobDefinitionName: str = ...,
|
|
94
93
|
status: str = ...,
|
|
95
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
94
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
96
95
|
) -> _PageIterator[DescribeJobDefinitionsResponseTypeDef]:
|
|
97
96
|
"""
|
|
98
97
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeJobDefinitions.paginate)
|
|
@@ -129,7 +128,7 @@ class ListJobsPaginator(Paginator):
|
|
|
129
128
|
multiNodeJobId: str = ...,
|
|
130
129
|
jobStatus: JobStatusType = ...,
|
|
131
130
|
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
132
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
131
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
133
132
|
) -> _PageIterator[ListJobsResponseTypeDef]:
|
|
134
133
|
"""
|
|
135
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.ListJobs.paginate)
|
mypy_boto3_batch/paginator.pyi
CHANGED
|
@@ -69,7 +69,7 @@ class DescribeComputeEnvironmentsPaginator(Paginator):
|
|
|
69
69
|
self,
|
|
70
70
|
*,
|
|
71
71
|
computeEnvironments: Sequence[str] = ...,
|
|
72
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
72
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
73
73
|
) -> _PageIterator[DescribeComputeEnvironmentsResponsePaginatorTypeDef]:
|
|
74
74
|
"""
|
|
75
75
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeComputeEnvironments.paginate)
|
|
@@ -88,7 +88,7 @@ class DescribeJobDefinitionsPaginator(Paginator):
|
|
|
88
88
|
jobDefinitions: Sequence[str] = ...,
|
|
89
89
|
jobDefinitionName: str = ...,
|
|
90
90
|
status: str = ...,
|
|
91
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
91
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
92
92
|
) -> _PageIterator[DescribeJobDefinitionsResponseTypeDef]:
|
|
93
93
|
"""
|
|
94
94
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.DescribeJobDefinitions.paginate)
|
|
@@ -123,7 +123,7 @@ class ListJobsPaginator(Paginator):
|
|
|
123
123
|
multiNodeJobId: str = ...,
|
|
124
124
|
jobStatus: JobStatusType = ...,
|
|
125
125
|
filters: Sequence[KeyValuesPairTypeDef] = ...,
|
|
126
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
126
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
127
127
|
) -> _PageIterator[ListJobsResponseTypeDef]:
|
|
128
128
|
"""
|
|
129
129
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch.Paginator.ListJobs.paginate)
|
mypy_boto3_batch/type_defs.py
CHANGED
|
@@ -47,7 +47,6 @@ if sys.version_info >= (3, 12):
|
|
|
47
47
|
else:
|
|
48
48
|
from typing_extensions import TypedDict
|
|
49
49
|
|
|
50
|
-
|
|
51
50
|
__all__ = (
|
|
52
51
|
"ArrayPropertiesDetailTypeDef",
|
|
53
52
|
"ArrayPropertiesSummaryTypeDef",
|
|
@@ -64,6 +63,7 @@ __all__ = (
|
|
|
64
63
|
"KeyValuePairTypeDef",
|
|
65
64
|
"MountPointTypeDef",
|
|
66
65
|
"NetworkConfigurationTypeDef",
|
|
66
|
+
"RepositoryCredentialsTypeDef",
|
|
67
67
|
"ResourceRequirementTypeDef",
|
|
68
68
|
"RuntimePlatformTypeDef",
|
|
69
69
|
"SecretTypeDef",
|
|
@@ -280,6 +280,12 @@ NetworkConfigurationTypeDef = TypedDict(
|
|
|
280
280
|
"assignPublicIp": NotRequired[AssignPublicIpType],
|
|
281
281
|
},
|
|
282
282
|
)
|
|
283
|
+
RepositoryCredentialsTypeDef = TypedDict(
|
|
284
|
+
"RepositoryCredentialsTypeDef",
|
|
285
|
+
{
|
|
286
|
+
"credentialsParameter": str,
|
|
287
|
+
},
|
|
288
|
+
)
|
|
283
289
|
ResourceRequirementTypeDef = TypedDict(
|
|
284
290
|
"ResourceRequirementTypeDef",
|
|
285
291
|
{
|
|
@@ -1163,6 +1169,7 @@ ContainerDetailTypeDef = TypedDict(
|
|
|
1163
1169
|
"fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
|
|
1164
1170
|
"ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
|
|
1165
1171
|
"runtimePlatform": NotRequired[RuntimePlatformTypeDef],
|
|
1172
|
+
"repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
|
|
1166
1173
|
},
|
|
1167
1174
|
)
|
|
1168
1175
|
ContainerPropertiesTypeDef = TypedDict(
|
|
@@ -1190,6 +1197,7 @@ ContainerPropertiesTypeDef = TypedDict(
|
|
|
1190
1197
|
"fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
|
|
1191
1198
|
"ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
|
|
1192
1199
|
"runtimePlatform": NotRequired[RuntimePlatformTypeDef],
|
|
1200
|
+
"repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
|
|
1193
1201
|
},
|
|
1194
1202
|
)
|
|
1195
1203
|
EksPropertiesOverrideTypeDef = TypedDict(
|
mypy_boto3_batch/type_defs.pyi
CHANGED
|
@@ -63,6 +63,7 @@ __all__ = (
|
|
|
63
63
|
"KeyValuePairTypeDef",
|
|
64
64
|
"MountPointTypeDef",
|
|
65
65
|
"NetworkConfigurationTypeDef",
|
|
66
|
+
"RepositoryCredentialsTypeDef",
|
|
66
67
|
"ResourceRequirementTypeDef",
|
|
67
68
|
"RuntimePlatformTypeDef",
|
|
68
69
|
"SecretTypeDef",
|
|
@@ -279,6 +280,12 @@ NetworkConfigurationTypeDef = TypedDict(
|
|
|
279
280
|
"assignPublicIp": NotRequired[AssignPublicIpType],
|
|
280
281
|
},
|
|
281
282
|
)
|
|
283
|
+
RepositoryCredentialsTypeDef = TypedDict(
|
|
284
|
+
"RepositoryCredentialsTypeDef",
|
|
285
|
+
{
|
|
286
|
+
"credentialsParameter": str,
|
|
287
|
+
},
|
|
288
|
+
)
|
|
282
289
|
ResourceRequirementTypeDef = TypedDict(
|
|
283
290
|
"ResourceRequirementTypeDef",
|
|
284
291
|
{
|
|
@@ -1162,6 +1169,7 @@ ContainerDetailTypeDef = TypedDict(
|
|
|
1162
1169
|
"fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
|
|
1163
1170
|
"ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
|
|
1164
1171
|
"runtimePlatform": NotRequired[RuntimePlatformTypeDef],
|
|
1172
|
+
"repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
|
|
1165
1173
|
},
|
|
1166
1174
|
)
|
|
1167
1175
|
ContainerPropertiesTypeDef = TypedDict(
|
|
@@ -1189,6 +1197,7 @@ ContainerPropertiesTypeDef = TypedDict(
|
|
|
1189
1197
|
"fargatePlatformConfiguration": NotRequired[FargatePlatformConfigurationTypeDef],
|
|
1190
1198
|
"ephemeralStorage": NotRequired[EphemeralStorageTypeDef],
|
|
1191
1199
|
"runtimePlatform": NotRequired[RuntimePlatformTypeDef],
|
|
1200
|
+
"repositoryCredentials": NotRequired[RepositoryCredentialsTypeDef],
|
|
1192
1201
|
},
|
|
1193
1202
|
)
|
|
1194
1203
|
EksPropertiesOverrideTypeDef = TypedDict(
|
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.34.
|
|
4
|
-
Summary: Type annotations for boto3.Batch 1.34.
|
|
3
|
+
Version: 1.34.39
|
|
4
|
+
Summary: Type annotations for boto3.Batch 1.34.39 service generated with mypy-boto3-builder 7.23.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
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
32
|
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.Batch 1.34.
|
|
46
|
+
[boto3.Batch 1.34.39](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch.html#Batch)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.23.1](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_batch/__init__.py,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
|
|
2
|
+
mypy_boto3_batch/__init__.pyi,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
|
|
3
|
+
mypy_boto3_batch/__main__.py,sha256=uZg09izM-0Y1ZERCD6Ti1bPbCz8OnRfGmrh3vD9fq9Q,911
|
|
4
|
+
mypy_boto3_batch/client.py,sha256=RocU92N-HGXVxHFP3HbchMPXT48Jsji1S1uhKKGMbLo,20532
|
|
5
|
+
mypy_boto3_batch/client.pyi,sha256=ZVWm4r28tO87Uqwq-jDz8BO8aiWbrVq4zejZ4KXmaDI,20529
|
|
6
|
+
mypy_boto3_batch/literals.py,sha256=hN3MMQSBWXDYPFnp8jFiPmSwclMwVXv-WWoee48x5YU,11370
|
|
7
|
+
mypy_boto3_batch/literals.pyi,sha256=hN3MMQSBWXDYPFnp8jFiPmSwclMwVXv-WWoee48x5YU,11370
|
|
8
|
+
mypy_boto3_batch/paginator.py,sha256=G4JEj_1BzubHSzCpgYrHFhfmaVwPUVgEpmDhH1DLt9o,6654
|
|
9
|
+
mypy_boto3_batch/paginator.pyi,sha256=0IUxpxdOszwdqfwpcDtL11KyLdRTPyTH4qada1l4-zc,6648
|
|
10
|
+
mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_batch/type_defs.py,sha256=ubNVwAZbzYdn5pqE2iOmuz-DnbD46oZC2ZCVJe_Wf3k,43209
|
|
12
|
+
mypy_boto3_batch/type_defs.pyi,sha256=ubNVwAZbzYdn5pqE2iOmuz-DnbD46oZC2ZCVJe_Wf3k,43209
|
|
13
|
+
mypy_boto3_batch/version.py,sha256=hYa4wgupsUikB-MSssjgh_5NbHrQQRz2EFxdj6BiKrI,62
|
|
14
|
+
mypy_boto3_batch-1.34.39.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
+
mypy_boto3_batch-1.34.39.dist-info/METADATA,sha256=caBJ3_R6IeKbrBRrGWbwvxcVfwTiQoTvpVeOOy4Qv-E,13207
|
|
16
|
+
mypy_boto3_batch-1.34.39.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
17
|
+
mypy_boto3_batch-1.34.39.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
+
mypy_boto3_batch-1.34.39.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_batch/__init__.py,sha256=nE-a9kxdLhHtBmH0wmT6DuY1hS3rYaolwHyjqRESQk0,1511
|
|
2
|
-
mypy_boto3_batch/__init__.pyi,sha256=CdsP-5YOQWt7HL_yUi5Vqzp-QfjJjP2GNk1yrrcr8S0,1510
|
|
3
|
-
mypy_boto3_batch/__main__.py,sha256=5dYr_dX9pyT6L_jGNIKfpSLVKs0k6y-HYoaCVFDKST0,897
|
|
4
|
-
mypy_boto3_batch/client.py,sha256=Z8yn_vMDcbuj4HvudDLGlnUGwmACkRE2lOUjuj1K5JQ,20523
|
|
5
|
-
mypy_boto3_batch/client.pyi,sha256=Y9QTXPtUutQ6fFAvmBXe9uWzJUZtdDt19kodqYpGRqE,20519
|
|
6
|
-
mypy_boto3_batch/literals.py,sha256=j6H914X2DclSmIYcdBYTLBvKoQGHA3XQGaPPm3mFIgM,11293
|
|
7
|
-
mypy_boto3_batch/literals.pyi,sha256=UHlYXB-wMrp_V4ohiJGPrxHfHoJLYfWXVvs1rYB9pSQ,11291
|
|
8
|
-
mypy_boto3_batch/paginator.py,sha256=2_ciWFfMVVRnEH-cMDtJeSkQ3y1D0K9QQYg0RS3Eb2c,6652
|
|
9
|
-
mypy_boto3_batch/paginator.pyi,sha256=slnMm49y17XXBKyEMjyeWB5VUGB1bZYsJpGEv5KCB80,6645
|
|
10
|
-
mypy_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_batch/type_defs.py,sha256=ZhrwzjNYpZ_sFOaxzvbxzrko2zRHwkf-QHWkvAaufO0,42892
|
|
12
|
-
mypy_boto3_batch/type_defs.pyi,sha256=XPGJVcomaU64iYReCFWLUzDTNzWbTQi1fvQMjpNDLLY,42891
|
|
13
|
-
mypy_boto3_batch/version.py,sha256=8Qbu8HOCjrY6O2_gOYfRFBCem64Ka_MtjvbfMGE_iFg,61
|
|
14
|
-
mypy_boto3_batch-1.34.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
15
|
-
mypy_boto3_batch-1.34.0.dist-info/METADATA,sha256=YRwC2p6yatV1w6IVrLAZO5xaEsup2LO6ncVwMRheQYU,13249
|
|
16
|
-
mypy_boto3_batch-1.34.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
17
|
-
mypy_boto3_batch-1.34.0.dist-info/top_level.txt,sha256=nQYjfsN6wIUBZIBe-zQ2zdG_qLWOOD4H8db6MwZNh0I,17
|
|
18
|
-
mypy_boto3_batch-1.34.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|