types-boto3-batch 1.39.0__py3-none-any.whl → 1.40.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.
@@ -33,6 +33,8 @@ from .literals import (
33
33
  EFSTransitEncryptionType,
34
34
  FirelensConfigurationTypeType,
35
35
  JobDefinitionTypeType,
36
+ JobQueueTypeType,
37
+ JobStateTimeLimitActionsActionType,
36
38
  JobStatusType,
37
39
  JQStateType,
38
40
  JQStatusType,
@@ -41,6 +43,10 @@ from .literals import (
41
43
  PlatformCapabilityType,
42
44
  ResourceTypeType,
43
45
  RetryActionType,
46
+ ServiceEnvironmentStateType,
47
+ ServiceEnvironmentStatusType,
48
+ ServiceJobRetryActionType,
49
+ ServiceJobStatusType,
44
50
  UserdataTypeType,
45
51
  )
46
52
 
@@ -64,6 +70,7 @@ __all__ = (
64
70
  "AttemptEcsTaskDetailsTypeDef",
65
71
  "AttemptTaskContainerDetailsTypeDef",
66
72
  "CancelJobRequestTypeDef",
73
+ "CapacityLimitTypeDef",
67
74
  "ComputeEnvironmentDetailTypeDef",
68
75
  "ComputeEnvironmentOrderTypeDef",
69
76
  "ComputeResourceOutputTypeDef",
@@ -89,10 +96,13 @@ __all__ = (
89
96
  "CreateJobQueueResponseTypeDef",
90
97
  "CreateSchedulingPolicyRequestTypeDef",
91
98
  "CreateSchedulingPolicyResponseTypeDef",
99
+ "CreateServiceEnvironmentRequestTypeDef",
100
+ "CreateServiceEnvironmentResponseTypeDef",
92
101
  "DeleteComputeEnvironmentRequestTypeDef",
93
102
  "DeleteConsumableResourceRequestTypeDef",
94
103
  "DeleteJobQueueRequestTypeDef",
95
104
  "DeleteSchedulingPolicyRequestTypeDef",
105
+ "DeleteServiceEnvironmentRequestTypeDef",
96
106
  "DeregisterJobDefinitionRequestTypeDef",
97
107
  "DescribeComputeEnvironmentsRequestPaginateTypeDef",
98
108
  "DescribeComputeEnvironmentsRequestTypeDef",
@@ -109,6 +119,11 @@ __all__ = (
109
119
  "DescribeJobsResponseTypeDef",
110
120
  "DescribeSchedulingPoliciesRequestTypeDef",
111
121
  "DescribeSchedulingPoliciesResponseTypeDef",
122
+ "DescribeServiceEnvironmentsRequestPaginateTypeDef",
123
+ "DescribeServiceEnvironmentsRequestTypeDef",
124
+ "DescribeServiceEnvironmentsResponseTypeDef",
125
+ "DescribeServiceJobRequestTypeDef",
126
+ "DescribeServiceJobResponseTypeDef",
112
127
  "DeviceOutputTypeDef",
113
128
  "DeviceTypeDef",
114
129
  "EFSAuthorizationConfigTypeDef",
@@ -175,6 +190,7 @@ __all__ = (
175
190
  "JobTimeoutTypeDef",
176
191
  "KeyValuePairTypeDef",
177
192
  "KeyValuesPairTypeDef",
193
+ "LatestServiceJobAttemptTypeDef",
178
194
  "LaunchTemplateSpecificationOutputTypeDef",
179
195
  "LaunchTemplateSpecificationOverrideOutputTypeDef",
180
196
  "LaunchTemplateSpecificationOverrideTypeDef",
@@ -196,6 +212,9 @@ __all__ = (
196
212
  "ListSchedulingPoliciesRequestPaginateTypeDef",
197
213
  "ListSchedulingPoliciesRequestTypeDef",
198
214
  "ListSchedulingPoliciesResponseTypeDef",
215
+ "ListServiceJobsRequestPaginateTypeDef",
216
+ "ListServiceJobsRequestTypeDef",
217
+ "ListServiceJobsResponseTypeDef",
199
218
  "ListTagsForResourceRequestTypeDef",
200
219
  "ListTagsForResourceResponseTypeDef",
201
220
  "LogConfigurationOutputTypeDef",
@@ -225,9 +244,21 @@ __all__ = (
225
244
  "SchedulingPolicyDetailTypeDef",
226
245
  "SchedulingPolicyListingDetailTypeDef",
227
246
  "SecretTypeDef",
247
+ "ServiceEnvironmentDetailTypeDef",
248
+ "ServiceEnvironmentOrderTypeDef",
249
+ "ServiceJobAttemptDetailTypeDef",
250
+ "ServiceJobEvaluateOnExitTypeDef",
251
+ "ServiceJobRetryStrategyOutputTypeDef",
252
+ "ServiceJobRetryStrategyTypeDef",
253
+ "ServiceJobRetryStrategyUnionTypeDef",
254
+ "ServiceJobSummaryTypeDef",
255
+ "ServiceJobTimeoutTypeDef",
256
+ "ServiceResourceIdTypeDef",
228
257
  "ShareAttributesTypeDef",
229
258
  "SubmitJobRequestTypeDef",
230
259
  "SubmitJobResponseTypeDef",
260
+ "SubmitServiceJobRequestTypeDef",
261
+ "SubmitServiceJobResponseTypeDef",
231
262
  "TagResourceRequestTypeDef",
232
263
  "TaskContainerDependencyTypeDef",
233
264
  "TaskContainerDetailsTypeDef",
@@ -236,6 +267,7 @@ __all__ = (
236
267
  "TaskContainerPropertiesTypeDef",
237
268
  "TaskPropertiesOverrideTypeDef",
238
269
  "TerminateJobRequestTypeDef",
270
+ "TerminateServiceJobRequestTypeDef",
239
271
  "TmpfsOutputTypeDef",
240
272
  "TmpfsTypeDef",
241
273
  "UlimitTypeDef",
@@ -248,6 +280,8 @@ __all__ = (
248
280
  "UpdateJobQueueResponseTypeDef",
249
281
  "UpdatePolicyTypeDef",
250
282
  "UpdateSchedulingPolicyRequestTypeDef",
283
+ "UpdateServiceEnvironmentRequestTypeDef",
284
+ "UpdateServiceEnvironmentResponseTypeDef",
251
285
  "VolumeTypeDef",
252
286
  )
253
287
 
@@ -272,6 +306,10 @@ class CancelJobRequestTypeDef(TypedDict):
272
306
  jobId: str
273
307
  reason: str
274
308
 
309
+ class CapacityLimitTypeDef(TypedDict):
310
+ maxCapacity: NotRequired[int]
311
+ capacityUnit: NotRequired[str]
312
+
275
313
  class EksConfigurationTypeDef(TypedDict):
276
314
  eksClusterArn: str
277
315
  kubernetesNamespace: str
@@ -363,7 +401,11 @@ class JobStateTimeLimitActionTypeDef(TypedDict):
363
401
  reason: str
364
402
  state: Literal["RUNNABLE"]
365
403
  maxTimeSeconds: int
366
- action: Literal["CANCEL"]
404
+ action: JobStateTimeLimitActionsActionType
405
+
406
+ class ServiceEnvironmentOrderTypeDef(TypedDict):
407
+ order: int
408
+ serviceEnvironment: str
367
409
 
368
410
  class DeleteComputeEnvironmentRequestTypeDef(TypedDict):
369
411
  computeEnvironment: str
@@ -377,6 +419,9 @@ class DeleteJobQueueRequestTypeDef(TypedDict):
377
419
  class DeleteSchedulingPolicyRequestTypeDef(TypedDict):
378
420
  arn: str
379
421
 
422
+ class DeleteServiceEnvironmentRequestTypeDef(TypedDict):
423
+ serviceEnvironment: str
424
+
380
425
  class DeregisterJobDefinitionRequestTypeDef(TypedDict):
381
426
  jobDefinition: str
382
427
 
@@ -411,6 +456,17 @@ class DescribeJobsRequestTypeDef(TypedDict):
411
456
  class DescribeSchedulingPoliciesRequestTypeDef(TypedDict):
412
457
  arns: Sequence[str]
413
458
 
459
+ class DescribeServiceEnvironmentsRequestTypeDef(TypedDict):
460
+ serviceEnvironments: NotRequired[Sequence[str]]
461
+ maxResults: NotRequired[int]
462
+ nextToken: NotRequired[str]
463
+
464
+ class DescribeServiceJobRequestTypeDef(TypedDict):
465
+ jobId: str
466
+
467
+ class ServiceJobTimeoutTypeDef(TypedDict):
468
+ attemptDurationSeconds: NotRequired[int]
469
+
414
470
  class DeviceOutputTypeDef(TypedDict):
415
471
  hostPath: str
416
472
  containerPath: NotRequired[str]
@@ -544,6 +600,10 @@ class KeyValuesPairTypeDef(TypedDict):
544
600
  name: NotRequired[str]
545
601
  values: NotRequired[Sequence[str]]
546
602
 
603
+ class ServiceResourceIdTypeDef(TypedDict):
604
+ name: Literal["TrainingJobArn"]
605
+ value: str
606
+
547
607
  class LaunchTemplateSpecificationOverrideOutputTypeDef(TypedDict):
548
608
  launchTemplateId: NotRequired[str]
549
609
  launchTemplateName: NotRequired[str]
@@ -578,6 +638,10 @@ class SchedulingPolicyListingDetailTypeDef(TypedDict):
578
638
  class ListTagsForResourceRequestTypeDef(TypedDict):
579
639
  resourceArn: str
580
640
 
641
+ class ServiceJobEvaluateOnExitTypeDef(TypedDict):
642
+ action: NotRequired[ServiceJobRetryActionType]
643
+ onStatusReason: NotRequired[str]
644
+
581
645
  class TagResourceRequestTypeDef(TypedDict):
582
646
  resourceArn: str
583
647
  tags: Mapping[str, str]
@@ -590,6 +654,10 @@ class TerminateJobRequestTypeDef(TypedDict):
590
654
  jobId: str
591
655
  reason: str
592
656
 
657
+ class TerminateServiceJobRequestTypeDef(TypedDict):
658
+ jobId: str
659
+ reason: str
660
+
593
661
  class UntagResourceRequestTypeDef(TypedDict):
594
662
  resourceArn: str
595
663
  tagKeys: Sequence[str]
@@ -615,6 +683,27 @@ class AttemptTaskContainerDetailsTypeDef(TypedDict):
615
683
  logStreamName: NotRequired[str]
616
684
  networkInterfaces: NotRequired[List[NetworkInterfaceTypeDef]]
617
685
 
686
+ class CreateServiceEnvironmentRequestTypeDef(TypedDict):
687
+ serviceEnvironmentName: str
688
+ serviceEnvironmentType: Literal["SAGEMAKER_TRAINING"]
689
+ capacityLimits: Sequence[CapacityLimitTypeDef]
690
+ state: NotRequired[ServiceEnvironmentStateType]
691
+ tags: NotRequired[Mapping[str, str]]
692
+
693
+ class ServiceEnvironmentDetailTypeDef(TypedDict):
694
+ serviceEnvironmentName: str
695
+ serviceEnvironmentArn: str
696
+ serviceEnvironmentType: Literal["SAGEMAKER_TRAINING"]
697
+ capacityLimits: List[CapacityLimitTypeDef]
698
+ state: NotRequired[ServiceEnvironmentStateType]
699
+ status: NotRequired[ServiceEnvironmentStatusType]
700
+ tags: NotRequired[Dict[str, str]]
701
+
702
+ class UpdateServiceEnvironmentRequestTypeDef(TypedDict):
703
+ serviceEnvironment: str
704
+ state: NotRequired[ServiceEnvironmentStateType]
705
+ capacityLimits: NotRequired[Sequence[CapacityLimitTypeDef]]
706
+
618
707
  class ConsumableResourcePropertiesOutputTypeDef(TypedDict):
619
708
  consumableResourceList: NotRequired[List[ConsumableResourceRequirementTypeDef]]
620
709
 
@@ -665,6 +754,11 @@ class CreateSchedulingPolicyResponseTypeDef(TypedDict):
665
754
  arn: str
666
755
  ResponseMetadata: ResponseMetadataTypeDef
667
756
 
757
+ class CreateServiceEnvironmentResponseTypeDef(TypedDict):
758
+ serviceEnvironmentName: str
759
+ serviceEnvironmentArn: str
760
+ ResponseMetadata: ResponseMetadataTypeDef
761
+
668
762
  class DescribeConsumableResourceResponseTypeDef(TypedDict):
669
763
  consumableResourceName: str
670
764
  consumableResourceArn: str
@@ -697,6 +791,12 @@ class SubmitJobResponseTypeDef(TypedDict):
697
791
  jobId: str
698
792
  ResponseMetadata: ResponseMetadataTypeDef
699
793
 
794
+ class SubmitServiceJobResponseTypeDef(TypedDict):
795
+ jobArn: str
796
+ jobName: str
797
+ jobId: str
798
+ ResponseMetadata: ResponseMetadataTypeDef
799
+
700
800
  class UpdateComputeEnvironmentResponseTypeDef(TypedDict):
701
801
  computeEnvironmentName: str
702
802
  computeEnvironmentArn: str
@@ -713,12 +813,19 @@ class UpdateJobQueueResponseTypeDef(TypedDict):
713
813
  jobQueueArn: str
714
814
  ResponseMetadata: ResponseMetadataTypeDef
715
815
 
816
+ class UpdateServiceEnvironmentResponseTypeDef(TypedDict):
817
+ serviceEnvironmentName: str
818
+ serviceEnvironmentArn: str
819
+ ResponseMetadata: ResponseMetadataTypeDef
820
+
716
821
  class CreateJobQueueRequestTypeDef(TypedDict):
717
822
  jobQueueName: str
718
823
  priority: int
719
- computeEnvironmentOrder: Sequence[ComputeEnvironmentOrderTypeDef]
720
824
  state: NotRequired[JQStateType]
721
825
  schedulingPolicyArn: NotRequired[str]
826
+ computeEnvironmentOrder: NotRequired[Sequence[ComputeEnvironmentOrderTypeDef]]
827
+ serviceEnvironmentOrder: NotRequired[Sequence[ServiceEnvironmentOrderTypeDef]]
828
+ jobQueueType: NotRequired[JobQueueTypeType]
722
829
  tags: NotRequired[Mapping[str, str]]
723
830
  jobStateTimeLimitActions: NotRequired[Sequence[JobStateTimeLimitActionTypeDef]]
724
831
 
@@ -731,6 +838,8 @@ class JobQueueDetailTypeDef(TypedDict):
731
838
  schedulingPolicyArn: NotRequired[str]
732
839
  status: NotRequired[JQStatusType]
733
840
  statusReason: NotRequired[str]
841
+ serviceEnvironmentOrder: NotRequired[List[ServiceEnvironmentOrderTypeDef]]
842
+ jobQueueType: NotRequired[JobQueueTypeType]
734
843
  tags: NotRequired[Dict[str, str]]
735
844
  jobStateTimeLimitActions: NotRequired[List[JobStateTimeLimitActionTypeDef]]
736
845
 
@@ -740,6 +849,7 @@ class UpdateJobQueueRequestTypeDef(TypedDict):
740
849
  schedulingPolicyArn: NotRequired[str]
741
850
  priority: NotRequired[int]
742
851
  computeEnvironmentOrder: NotRequired[Sequence[ComputeEnvironmentOrderTypeDef]]
852
+ serviceEnvironmentOrder: NotRequired[Sequence[ServiceEnvironmentOrderTypeDef]]
743
853
  jobStateTimeLimitActions: NotRequired[Sequence[JobStateTimeLimitActionTypeDef]]
744
854
 
745
855
  class DescribeComputeEnvironmentsRequestPaginateTypeDef(TypedDict):
@@ -756,6 +866,10 @@ class DescribeJobQueuesRequestPaginateTypeDef(TypedDict):
756
866
  jobQueues: NotRequired[Sequence[str]]
757
867
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
758
868
 
869
+ class DescribeServiceEnvironmentsRequestPaginateTypeDef(TypedDict):
870
+ serviceEnvironments: NotRequired[Sequence[str]]
871
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
872
+
759
873
  class ListSchedulingPoliciesRequestPaginateTypeDef(TypedDict):
760
874
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
761
875
 
@@ -898,6 +1012,28 @@ class ListJobsRequestTypeDef(TypedDict):
898
1012
  nextToken: NotRequired[str]
899
1013
  filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
900
1014
 
1015
+ class ListServiceJobsRequestPaginateTypeDef(TypedDict):
1016
+ jobQueue: NotRequired[str]
1017
+ jobStatus: NotRequired[ServiceJobStatusType]
1018
+ filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
1019
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1020
+
1021
+ class ListServiceJobsRequestTypeDef(TypedDict):
1022
+ jobQueue: NotRequired[str]
1023
+ jobStatus: NotRequired[ServiceJobStatusType]
1024
+ maxResults: NotRequired[int]
1025
+ nextToken: NotRequired[str]
1026
+ filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
1027
+
1028
+ class LatestServiceJobAttemptTypeDef(TypedDict):
1029
+ serviceResourceId: NotRequired[ServiceResourceIdTypeDef]
1030
+
1031
+ class ServiceJobAttemptDetailTypeDef(TypedDict):
1032
+ serviceResourceId: NotRequired[ServiceResourceIdTypeDef]
1033
+ startedAt: NotRequired[int]
1034
+ stoppedAt: NotRequired[int]
1035
+ statusReason: NotRequired[str]
1036
+
901
1037
  class LaunchTemplateSpecificationOutputTypeDef(TypedDict):
902
1038
  launchTemplateId: NotRequired[str]
903
1039
  launchTemplateName: NotRequired[str]
@@ -930,11 +1066,24 @@ class ListSchedulingPoliciesResponseTypeDef(TypedDict):
930
1066
  ResponseMetadata: ResponseMetadataTypeDef
931
1067
  nextToken: NotRequired[str]
932
1068
 
1069
+ class ServiceJobRetryStrategyOutputTypeDef(TypedDict):
1070
+ attempts: int
1071
+ evaluateOnExit: NotRequired[List[ServiceJobEvaluateOnExitTypeDef]]
1072
+
1073
+ class ServiceJobRetryStrategyTypeDef(TypedDict):
1074
+ attempts: int
1075
+ evaluateOnExit: NotRequired[Sequence[ServiceJobEvaluateOnExitTypeDef]]
1076
+
933
1077
  class AttemptEcsTaskDetailsTypeDef(TypedDict):
934
1078
  containerInstanceArn: NotRequired[str]
935
1079
  taskArn: NotRequired[str]
936
1080
  containers: NotRequired[List[AttemptTaskContainerDetailsTypeDef]]
937
1081
 
1082
+ class DescribeServiceEnvironmentsResponseTypeDef(TypedDict):
1083
+ serviceEnvironments: List[ServiceEnvironmentDetailTypeDef]
1084
+ ResponseMetadata: ResponseMetadataTypeDef
1085
+ nextToken: NotRequired[str]
1086
+
938
1087
  class ListJobsByConsumableResourceSummaryTypeDef(TypedDict):
939
1088
  jobArn: str
940
1089
  jobQueueArn: str
@@ -1027,6 +1176,19 @@ class ListJobsResponseTypeDef(TypedDict):
1027
1176
  ResponseMetadata: ResponseMetadataTypeDef
1028
1177
  nextToken: NotRequired[str]
1029
1178
 
1179
+ class ServiceJobSummaryTypeDef(TypedDict):
1180
+ jobId: str
1181
+ jobName: str
1182
+ serviceJobType: Literal["SAGEMAKER_TRAINING"]
1183
+ latestAttempt: NotRequired[LatestServiceJobAttemptTypeDef]
1184
+ createdAt: NotRequired[int]
1185
+ jobArn: NotRequired[str]
1186
+ shareIdentifier: NotRequired[str]
1187
+ status: NotRequired[ServiceJobStatusType]
1188
+ statusReason: NotRequired[str]
1189
+ startedAt: NotRequired[int]
1190
+ stoppedAt: NotRequired[int]
1191
+
1030
1192
  ComputeResourceOutputTypeDef = TypedDict(
1031
1193
  "ComputeResourceOutputTypeDef",
1032
1194
  {
@@ -1118,6 +1280,32 @@ class TaskContainerPropertiesTypeDef(TypedDict):
1118
1280
  ulimits: NotRequired[Sequence[UlimitTypeDef]]
1119
1281
  user: NotRequired[str]
1120
1282
 
1283
+ class DescribeServiceJobResponseTypeDef(TypedDict):
1284
+ attempts: List[ServiceJobAttemptDetailTypeDef]
1285
+ createdAt: int
1286
+ isTerminated: bool
1287
+ jobArn: str
1288
+ jobId: str
1289
+ jobName: str
1290
+ jobQueue: str
1291
+ latestAttempt: LatestServiceJobAttemptTypeDef
1292
+ retryStrategy: ServiceJobRetryStrategyOutputTypeDef
1293
+ schedulingPriority: int
1294
+ serviceRequestPayload: str
1295
+ serviceJobType: Literal["SAGEMAKER_TRAINING"]
1296
+ shareIdentifier: str
1297
+ startedAt: int
1298
+ status: ServiceJobStatusType
1299
+ statusReason: str
1300
+ stoppedAt: int
1301
+ tags: Dict[str, str]
1302
+ timeoutConfig: ServiceJobTimeoutTypeDef
1303
+ ResponseMetadata: ResponseMetadataTypeDef
1304
+
1305
+ ServiceJobRetryStrategyUnionTypeDef = Union[
1306
+ ServiceJobRetryStrategyTypeDef, ServiceJobRetryStrategyOutputTypeDef
1307
+ ]
1308
+
1121
1309
  class AttemptDetailTypeDef(TypedDict):
1122
1310
  container: NotRequired[AttemptContainerDetailTypeDef]
1123
1311
  startedAt: NotRequired[int]
@@ -1244,6 +1432,11 @@ class UpdateSchedulingPolicyRequestTypeDef(TypedDict):
1244
1432
  arn: str
1245
1433
  fairsharePolicy: NotRequired[FairsharePolicyUnionTypeDef]
1246
1434
 
1435
+ class ListServiceJobsResponseTypeDef(TypedDict):
1436
+ jobSummaryList: List[ServiceJobSummaryTypeDef]
1437
+ ResponseMetadata: ResponseMetadataTypeDef
1438
+ nextToken: NotRequired[str]
1439
+
1247
1440
  ComputeEnvironmentDetailTypeDef = TypedDict(
1248
1441
  "ComputeEnvironmentDetailTypeDef",
1249
1442
  {
@@ -1332,6 +1525,18 @@ class EcsTaskPropertiesTypeDef(TypedDict):
1332
1525
  volumes: NotRequired[Sequence[VolumeTypeDef]]
1333
1526
  enableExecuteCommand: NotRequired[bool]
1334
1527
 
1528
+ class SubmitServiceJobRequestTypeDef(TypedDict):
1529
+ jobName: str
1530
+ jobQueue: str
1531
+ serviceRequestPayload: str
1532
+ serviceJobType: Literal["SAGEMAKER_TRAINING"]
1533
+ retryStrategy: NotRequired[ServiceJobRetryStrategyUnionTypeDef]
1534
+ schedulingPriority: NotRequired[int]
1535
+ shareIdentifier: NotRequired[str]
1536
+ timeoutConfig: NotRequired[ServiceJobTimeoutTypeDef]
1537
+ tags: NotRequired[Mapping[str, str]]
1538
+ clientToken: NotRequired[str]
1539
+
1335
1540
  ContainerPropertiesUnionTypeDef = Union[
1336
1541
  ContainerPropertiesTypeDef, ContainerPropertiesOutputTypeDef
1337
1542
  ]
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.39.0"
7
+ __version__ = "1.40.0"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: types-boto3-batch
3
- Version: 1.39.0
4
- Summary: Type annotations for boto3 Batch 1.39.0 service generated with mypy-boto3-builder 8.11.0
3
+ Version: 1.40.0
4
+ Summary: Type annotations for boto3 Batch 1.40.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
@@ -56,7 +56,7 @@ Dynamic: summary
56
56
 
57
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 Batch 1.39.0](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 Batch 1.40.0](https://pypi.org/project/boto3/)
60
60
  compatible with [VSCode](https://code.visualstudio.com/),
61
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
118
118
  isolation.
119
119
 
120
120
  1. Run mypy-boto3-builder in your package root directory:
121
- `uvx --with 'boto3==1.39.0' mypy-boto3-builder`
121
+ `uvx --with 'boto3==1.40.0' mypy-boto3-builder`
122
122
  2. Select `boto3` AWS SDK.
123
123
  3. Add `Batch` service.
124
124
  4. Use provided commands to install generated packages.
@@ -355,10 +355,12 @@ from types_boto3_batch.paginator import (
355
355
  DescribeComputeEnvironmentsPaginator,
356
356
  DescribeJobDefinitionsPaginator,
357
357
  DescribeJobQueuesPaginator,
358
+ DescribeServiceEnvironmentsPaginator,
358
359
  ListConsumableResourcesPaginator,
359
360
  ListJobsByConsumableResourcePaginator,
360
361
  ListJobsPaginator,
361
362
  ListSchedulingPoliciesPaginator,
363
+ ListServiceJobsPaginator,
362
364
  )
363
365
 
364
366
  client: BatchClient = Session().client("batch")
@@ -374,6 +376,9 @@ describe_job_definitions_paginator: DescribeJobDefinitionsPaginator = client.get
374
376
  describe_job_queues_paginator: DescribeJobQueuesPaginator = client.get_paginator(
375
377
  "describe_job_queues"
376
378
  )
379
+ describe_service_environments_paginator: DescribeServiceEnvironmentsPaginator = (
380
+ client.get_paginator("describe_service_environments")
381
+ )
377
382
  list_consumable_resources_paginator: ListConsumableResourcesPaginator = client.get_paginator(
378
383
  "list_consumable_resources"
379
384
  )
@@ -384,6 +389,7 @@ list_jobs_paginator: ListJobsPaginator = client.get_paginator("list_jobs")
384
389
  list_scheduling_policies_paginator: ListSchedulingPoliciesPaginator = client.get_paginator(
385
390
  "list_scheduling_policies"
386
391
  )
392
+ list_service_jobs_paginator: ListServiceJobsPaginator = client.get_paginator("list_service_jobs")
387
393
  ```
388
394
 
389
395
  <a id="literals"></a>
@@ -0,0 +1,18 @@
1
+ types_boto3_batch/__init__.py,sha256=1SsbXa_1tBbWldiB95C4-jPXFC-qFvRezbmmUOntNFE,2617
2
+ types_boto3_batch/__init__.pyi,sha256=a40bJGm0gP_Lc4FBWYjPez_I6I31JbyYiFQTq_A4at8,2616
3
+ types_boto3_batch/__main__.py,sha256=g-l8IJD4NVcnWOreYjVY1O-glztL12zcuNR-rG54h7c,974
4
+ types_boto3_batch/client.py,sha256=jACnUVoBHkF9MpgSQhGqFwVrPTJKZN0VPwBnVI3qgtU,29981
5
+ types_boto3_batch/client.pyi,sha256=yKHHmiJ930VziSb2E6AefDmIMNLdKtbh_qB16aXSceg,29978
6
+ types_boto3_batch/literals.py,sha256=SdLyiOfii1cu-Bi_Njo3QPQR-RgztNRWWv3zD4X_nKI,14125
7
+ types_boto3_batch/literals.pyi,sha256=t5_oF2AMTysIhmg1DvRxe3w-Ga45E_GvstfS53mgZo0,14123
8
+ types_boto3_batch/paginator.py,sha256=j9kINQv6udn9sCfMY3pnximkE2hRgTbVm0IUNxfAikM,13919
9
+ types_boto3_batch/paginator.pyi,sha256=MeEowA9aWJQx8ntkc5t1Pg9LLAbnODYqKBpbPwLCjhA,13891
10
+ types_boto3_batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_batch/type_defs.py,sha256=-M-zfLjBJjKGnb9BdoXUdArrFcteM9YdUKuXcoHYaR8,63631
12
+ types_boto3_batch/type_defs.pyi,sha256=qmDIpuTD8AwqXuY18NrPOii5o-TK463X3mXsav2Ndwk,63413
13
+ types_boto3_batch/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
14
+ types_boto3_batch-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ types_boto3_batch-1.40.0.dist-info/METADATA,sha256=3v8QxmWhS1dUCZ-Y7pkMIBfrAnsVDYdpow8jTYY1hAU,16120
16
+ types_boto3_batch-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ types_boto3_batch-1.40.0.dist-info/top_level.txt,sha256=Uom8UeK1nnEn9_7ktm0WqcI79MHSYcQA-TT0oD_e8mM,18
18
+ types_boto3_batch-1.40.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=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,,