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.
- 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 +118 -0
- types_boto3_batch/client.pyi +118 -0
- types_boto3_batch/literals.py +31 -1
- types_boto3_batch/literals.pyi +31 -1
- types_boto3_batch/paginator.py +54 -0
- types_boto3_batch/paginator.pyi +48 -0
- types_boto3_batch/type_defs.py +235 -2
- types_boto3_batch/type_defs.pyi +207 -2
- types_boto3_batch/version.py +1 -1
- {types_boto3_batch-1.39.0.dist-info → types_boto3_batch-1.40.0.dist-info}/METADATA +10 -4
- types_boto3_batch-1.40.0.dist-info/RECORD +18 -0
- types_boto3_batch-1.39.0.dist-info/RECORD +0 -18
- {types_boto3_batch-1.39.0.dist-info → types_boto3_batch-1.40.0.dist-info}/WHEEL +0 -0
- {types_boto3_batch-1.39.0.dist-info → types_boto3_batch-1.40.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_batch-1.39.0.dist-info → types_boto3_batch-1.40.0.dist-info}/top_level.txt +0 -0
types_boto3_batch/literals.py
CHANGED
|
@@ -35,6 +35,7 @@ __all__ = (
|
|
|
35
35
|
"DescribeComputeEnvironmentsPaginatorName",
|
|
36
36
|
"DescribeJobDefinitionsPaginatorName",
|
|
37
37
|
"DescribeJobQueuesPaginatorName",
|
|
38
|
+
"DescribeServiceEnvironmentsPaginatorName",
|
|
38
39
|
"DeviceCgroupPermissionType",
|
|
39
40
|
"EFSAuthorizationConfigIAMType",
|
|
40
41
|
"EFSTransitEncryptionType",
|
|
@@ -42,6 +43,7 @@ __all__ = (
|
|
|
42
43
|
"JQStateType",
|
|
43
44
|
"JQStatusType",
|
|
44
45
|
"JobDefinitionTypeType",
|
|
46
|
+
"JobQueueTypeType",
|
|
45
47
|
"JobStateTimeLimitActionsActionType",
|
|
46
48
|
"JobStateTimeLimitActionsStateType",
|
|
47
49
|
"JobStatusType",
|
|
@@ -49,6 +51,7 @@ __all__ = (
|
|
|
49
51
|
"ListJobsByConsumableResourcePaginatorName",
|
|
50
52
|
"ListJobsPaginatorName",
|
|
51
53
|
"ListSchedulingPoliciesPaginatorName",
|
|
54
|
+
"ListServiceJobsPaginatorName",
|
|
52
55
|
"LogDriverType",
|
|
53
56
|
"OrchestrationTypeType",
|
|
54
57
|
"PaginatorName",
|
|
@@ -57,7 +60,14 @@ __all__ = (
|
|
|
57
60
|
"ResourceServiceName",
|
|
58
61
|
"ResourceTypeType",
|
|
59
62
|
"RetryActionType",
|
|
63
|
+
"ServiceEnvironmentStateType",
|
|
64
|
+
"ServiceEnvironmentStatusType",
|
|
65
|
+
"ServiceEnvironmentTypeType",
|
|
66
|
+
"ServiceJobRetryActionType",
|
|
67
|
+
"ServiceJobStatusType",
|
|
68
|
+
"ServiceJobTypeType",
|
|
60
69
|
"ServiceName",
|
|
70
|
+
"ServiceResourceIdNameType",
|
|
61
71
|
"UserdataTypeType",
|
|
62
72
|
)
|
|
63
73
|
|
|
@@ -77,6 +87,7 @@ CRUpdateAllocationStrategyType = Literal[
|
|
|
77
87
|
DescribeComputeEnvironmentsPaginatorName = Literal["describe_compute_environments"]
|
|
78
88
|
DescribeJobDefinitionsPaginatorName = Literal["describe_job_definitions"]
|
|
79
89
|
DescribeJobQueuesPaginatorName = Literal["describe_job_queues"]
|
|
90
|
+
DescribeServiceEnvironmentsPaginatorName = Literal["describe_service_environments"]
|
|
80
91
|
DeviceCgroupPermissionType = Literal["MKNOD", "READ", "WRITE"]
|
|
81
92
|
EFSAuthorizationConfigIAMType = Literal["DISABLED", "ENABLED"]
|
|
82
93
|
EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
@@ -84,7 +95,8 @@ FirelensConfigurationTypeType = Literal["fluentbit", "fluentd"]
|
|
|
84
95
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
85
96
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
86
97
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
87
|
-
|
|
98
|
+
JobQueueTypeType = Literal["ECS", "ECS_FARGATE", "EKS", "SAGEMAKER_TRAINING"]
|
|
99
|
+
JobStateTimeLimitActionsActionType = Literal["CANCEL", "TERMINATE"]
|
|
88
100
|
JobStateTimeLimitActionsStateType = Literal["RUNNABLE"]
|
|
89
101
|
JobStatusType = Literal[
|
|
90
102
|
"FAILED", "PENDING", "RUNNABLE", "RUNNING", "STARTING", "SUBMITTED", "SUCCEEDED"
|
|
@@ -93,6 +105,7 @@ ListConsumableResourcesPaginatorName = Literal["list_consumable_resources"]
|
|
|
93
105
|
ListJobsByConsumableResourcePaginatorName = Literal["list_jobs_by_consumable_resource"]
|
|
94
106
|
ListJobsPaginatorName = Literal["list_jobs"]
|
|
95
107
|
ListSchedulingPoliciesPaginatorName = Literal["list_scheduling_policies"]
|
|
108
|
+
ListServiceJobsPaginatorName = Literal["list_service_jobs"]
|
|
96
109
|
LogDriverType = Literal[
|
|
97
110
|
"awsfirelens", "awslogs", "fluentd", "gelf", "journald", "json-file", "splunk", "syslog"
|
|
98
111
|
]
|
|
@@ -100,6 +113,17 @@ OrchestrationTypeType = Literal["ECS", "EKS"]
|
|
|
100
113
|
PlatformCapabilityType = Literal["EC2", "FARGATE"]
|
|
101
114
|
ResourceTypeType = Literal["GPU", "MEMORY", "VCPU"]
|
|
102
115
|
RetryActionType = Literal["EXIT", "RETRY"]
|
|
116
|
+
ServiceEnvironmentStateType = Literal["DISABLED", "ENABLED"]
|
|
117
|
+
ServiceEnvironmentStatusType = Literal[
|
|
118
|
+
"CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"
|
|
119
|
+
]
|
|
120
|
+
ServiceEnvironmentTypeType = Literal["SAGEMAKER_TRAINING"]
|
|
121
|
+
ServiceJobRetryActionType = Literal["EXIT", "RETRY"]
|
|
122
|
+
ServiceJobStatusType = Literal[
|
|
123
|
+
"FAILED", "PENDING", "RUNNABLE", "RUNNING", "SCHEDULED", "STARTING", "SUBMITTED", "SUCCEEDED"
|
|
124
|
+
]
|
|
125
|
+
ServiceJobTypeType = Literal["SAGEMAKER_TRAINING"]
|
|
126
|
+
ServiceResourceIdNameType = Literal["TrainingJobArn"]
|
|
103
127
|
UserdataTypeType = Literal["EKS_BOOTSTRAP_SH", "EKS_NODEADM"]
|
|
104
128
|
BatchServiceName = Literal["batch"]
|
|
105
129
|
ServiceName = Literal[
|
|
@@ -145,6 +169,8 @@ ServiceName = Literal[
|
|
|
145
169
|
"bedrock",
|
|
146
170
|
"bedrock-agent",
|
|
147
171
|
"bedrock-agent-runtime",
|
|
172
|
+
"bedrock-agentcore",
|
|
173
|
+
"bedrock-agentcore-control",
|
|
148
174
|
"bedrock-data-automation",
|
|
149
175
|
"bedrock-data-automation-runtime",
|
|
150
176
|
"bedrock-runtime",
|
|
@@ -377,6 +403,7 @@ ServiceName = Literal[
|
|
|
377
403
|
"notificationscontacts",
|
|
378
404
|
"oam",
|
|
379
405
|
"observabilityadmin",
|
|
406
|
+
"odb",
|
|
380
407
|
"omics",
|
|
381
408
|
"opensearch",
|
|
382
409
|
"opensearchserverless",
|
|
@@ -437,6 +464,7 @@ ServiceName = Literal[
|
|
|
437
464
|
"s3control",
|
|
438
465
|
"s3outposts",
|
|
439
466
|
"s3tables",
|
|
467
|
+
"s3vectors",
|
|
440
468
|
"sagemaker",
|
|
441
469
|
"sagemaker-a2i-runtime",
|
|
442
470
|
"sagemaker-edge",
|
|
@@ -528,10 +556,12 @@ PaginatorName = Literal[
|
|
|
528
556
|
"describe_compute_environments",
|
|
529
557
|
"describe_job_definitions",
|
|
530
558
|
"describe_job_queues",
|
|
559
|
+
"describe_service_environments",
|
|
531
560
|
"list_consumable_resources",
|
|
532
561
|
"list_jobs",
|
|
533
562
|
"list_jobs_by_consumable_resource",
|
|
534
563
|
"list_scheduling_policies",
|
|
564
|
+
"list_service_jobs",
|
|
535
565
|
]
|
|
536
566
|
RegionName = Literal[
|
|
537
567
|
"af-south-1",
|
types_boto3_batch/literals.pyi
CHANGED
|
@@ -34,6 +34,7 @@ __all__ = (
|
|
|
34
34
|
"DescribeComputeEnvironmentsPaginatorName",
|
|
35
35
|
"DescribeJobDefinitionsPaginatorName",
|
|
36
36
|
"DescribeJobQueuesPaginatorName",
|
|
37
|
+
"DescribeServiceEnvironmentsPaginatorName",
|
|
37
38
|
"DeviceCgroupPermissionType",
|
|
38
39
|
"EFSAuthorizationConfigIAMType",
|
|
39
40
|
"EFSTransitEncryptionType",
|
|
@@ -41,6 +42,7 @@ __all__ = (
|
|
|
41
42
|
"JQStateType",
|
|
42
43
|
"JQStatusType",
|
|
43
44
|
"JobDefinitionTypeType",
|
|
45
|
+
"JobQueueTypeType",
|
|
44
46
|
"JobStateTimeLimitActionsActionType",
|
|
45
47
|
"JobStateTimeLimitActionsStateType",
|
|
46
48
|
"JobStatusType",
|
|
@@ -48,6 +50,7 @@ __all__ = (
|
|
|
48
50
|
"ListJobsByConsumableResourcePaginatorName",
|
|
49
51
|
"ListJobsPaginatorName",
|
|
50
52
|
"ListSchedulingPoliciesPaginatorName",
|
|
53
|
+
"ListServiceJobsPaginatorName",
|
|
51
54
|
"LogDriverType",
|
|
52
55
|
"OrchestrationTypeType",
|
|
53
56
|
"PaginatorName",
|
|
@@ -56,7 +59,14 @@ __all__ = (
|
|
|
56
59
|
"ResourceServiceName",
|
|
57
60
|
"ResourceTypeType",
|
|
58
61
|
"RetryActionType",
|
|
62
|
+
"ServiceEnvironmentStateType",
|
|
63
|
+
"ServiceEnvironmentStatusType",
|
|
64
|
+
"ServiceEnvironmentTypeType",
|
|
65
|
+
"ServiceJobRetryActionType",
|
|
66
|
+
"ServiceJobStatusType",
|
|
67
|
+
"ServiceJobTypeType",
|
|
59
68
|
"ServiceName",
|
|
69
|
+
"ServiceResourceIdNameType",
|
|
60
70
|
"UserdataTypeType",
|
|
61
71
|
)
|
|
62
72
|
|
|
@@ -75,6 +85,7 @@ CRUpdateAllocationStrategyType = Literal[
|
|
|
75
85
|
DescribeComputeEnvironmentsPaginatorName = Literal["describe_compute_environments"]
|
|
76
86
|
DescribeJobDefinitionsPaginatorName = Literal["describe_job_definitions"]
|
|
77
87
|
DescribeJobQueuesPaginatorName = Literal["describe_job_queues"]
|
|
88
|
+
DescribeServiceEnvironmentsPaginatorName = Literal["describe_service_environments"]
|
|
78
89
|
DeviceCgroupPermissionType = Literal["MKNOD", "READ", "WRITE"]
|
|
79
90
|
EFSAuthorizationConfigIAMType = Literal["DISABLED", "ENABLED"]
|
|
80
91
|
EFSTransitEncryptionType = Literal["DISABLED", "ENABLED"]
|
|
@@ -82,7 +93,8 @@ FirelensConfigurationTypeType = Literal["fluentbit", "fluentd"]
|
|
|
82
93
|
JQStateType = Literal["DISABLED", "ENABLED"]
|
|
83
94
|
JQStatusType = Literal["CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"]
|
|
84
95
|
JobDefinitionTypeType = Literal["container", "multinode"]
|
|
85
|
-
|
|
96
|
+
JobQueueTypeType = Literal["ECS", "ECS_FARGATE", "EKS", "SAGEMAKER_TRAINING"]
|
|
97
|
+
JobStateTimeLimitActionsActionType = Literal["CANCEL", "TERMINATE"]
|
|
86
98
|
JobStateTimeLimitActionsStateType = Literal["RUNNABLE"]
|
|
87
99
|
JobStatusType = Literal[
|
|
88
100
|
"FAILED", "PENDING", "RUNNABLE", "RUNNING", "STARTING", "SUBMITTED", "SUCCEEDED"
|
|
@@ -91,6 +103,7 @@ ListConsumableResourcesPaginatorName = Literal["list_consumable_resources"]
|
|
|
91
103
|
ListJobsByConsumableResourcePaginatorName = Literal["list_jobs_by_consumable_resource"]
|
|
92
104
|
ListJobsPaginatorName = Literal["list_jobs"]
|
|
93
105
|
ListSchedulingPoliciesPaginatorName = Literal["list_scheduling_policies"]
|
|
106
|
+
ListServiceJobsPaginatorName = Literal["list_service_jobs"]
|
|
94
107
|
LogDriverType = Literal[
|
|
95
108
|
"awsfirelens", "awslogs", "fluentd", "gelf", "journald", "json-file", "splunk", "syslog"
|
|
96
109
|
]
|
|
@@ -98,6 +111,17 @@ OrchestrationTypeType = Literal["ECS", "EKS"]
|
|
|
98
111
|
PlatformCapabilityType = Literal["EC2", "FARGATE"]
|
|
99
112
|
ResourceTypeType = Literal["GPU", "MEMORY", "VCPU"]
|
|
100
113
|
RetryActionType = Literal["EXIT", "RETRY"]
|
|
114
|
+
ServiceEnvironmentStateType = Literal["DISABLED", "ENABLED"]
|
|
115
|
+
ServiceEnvironmentStatusType = Literal[
|
|
116
|
+
"CREATING", "DELETED", "DELETING", "INVALID", "UPDATING", "VALID"
|
|
117
|
+
]
|
|
118
|
+
ServiceEnvironmentTypeType = Literal["SAGEMAKER_TRAINING"]
|
|
119
|
+
ServiceJobRetryActionType = Literal["EXIT", "RETRY"]
|
|
120
|
+
ServiceJobStatusType = Literal[
|
|
121
|
+
"FAILED", "PENDING", "RUNNABLE", "RUNNING", "SCHEDULED", "STARTING", "SUBMITTED", "SUCCEEDED"
|
|
122
|
+
]
|
|
123
|
+
ServiceJobTypeType = Literal["SAGEMAKER_TRAINING"]
|
|
124
|
+
ServiceResourceIdNameType = Literal["TrainingJobArn"]
|
|
101
125
|
UserdataTypeType = Literal["EKS_BOOTSTRAP_SH", "EKS_NODEADM"]
|
|
102
126
|
BatchServiceName = Literal["batch"]
|
|
103
127
|
ServiceName = Literal[
|
|
@@ -143,6 +167,8 @@ ServiceName = Literal[
|
|
|
143
167
|
"bedrock",
|
|
144
168
|
"bedrock-agent",
|
|
145
169
|
"bedrock-agent-runtime",
|
|
170
|
+
"bedrock-agentcore",
|
|
171
|
+
"bedrock-agentcore-control",
|
|
146
172
|
"bedrock-data-automation",
|
|
147
173
|
"bedrock-data-automation-runtime",
|
|
148
174
|
"bedrock-runtime",
|
|
@@ -375,6 +401,7 @@ ServiceName = Literal[
|
|
|
375
401
|
"notificationscontacts",
|
|
376
402
|
"oam",
|
|
377
403
|
"observabilityadmin",
|
|
404
|
+
"odb",
|
|
378
405
|
"omics",
|
|
379
406
|
"opensearch",
|
|
380
407
|
"opensearchserverless",
|
|
@@ -435,6 +462,7 @@ ServiceName = Literal[
|
|
|
435
462
|
"s3control",
|
|
436
463
|
"s3outposts",
|
|
437
464
|
"s3tables",
|
|
465
|
+
"s3vectors",
|
|
438
466
|
"sagemaker",
|
|
439
467
|
"sagemaker-a2i-runtime",
|
|
440
468
|
"sagemaker-edge",
|
|
@@ -526,10 +554,12 @@ PaginatorName = Literal[
|
|
|
526
554
|
"describe_compute_environments",
|
|
527
555
|
"describe_job_definitions",
|
|
528
556
|
"describe_job_queues",
|
|
557
|
+
"describe_service_environments",
|
|
529
558
|
"list_consumable_resources",
|
|
530
559
|
"list_jobs",
|
|
531
560
|
"list_jobs_by_consumable_resource",
|
|
532
561
|
"list_scheduling_policies",
|
|
562
|
+
"list_service_jobs",
|
|
533
563
|
]
|
|
534
564
|
RegionName = Literal[
|
|
535
565
|
"af-south-1",
|
types_boto3_batch/paginator.py
CHANGED
|
@@ -15,10 +15,12 @@ Usage::
|
|
|
15
15
|
DescribeComputeEnvironmentsPaginator,
|
|
16
16
|
DescribeJobDefinitionsPaginator,
|
|
17
17
|
DescribeJobQueuesPaginator,
|
|
18
|
+
DescribeServiceEnvironmentsPaginator,
|
|
18
19
|
ListConsumableResourcesPaginator,
|
|
19
20
|
ListJobsByConsumableResourcePaginator,
|
|
20
21
|
ListJobsPaginator,
|
|
21
22
|
ListSchedulingPoliciesPaginator,
|
|
23
|
+
ListServiceJobsPaginator,
|
|
22
24
|
)
|
|
23
25
|
|
|
24
26
|
session = Session()
|
|
@@ -27,10 +29,12 @@ Usage::
|
|
|
27
29
|
describe_compute_environments_paginator: DescribeComputeEnvironmentsPaginator = client.get_paginator("describe_compute_environments")
|
|
28
30
|
describe_job_definitions_paginator: DescribeJobDefinitionsPaginator = client.get_paginator("describe_job_definitions")
|
|
29
31
|
describe_job_queues_paginator: DescribeJobQueuesPaginator = client.get_paginator("describe_job_queues")
|
|
32
|
+
describe_service_environments_paginator: DescribeServiceEnvironmentsPaginator = client.get_paginator("describe_service_environments")
|
|
30
33
|
list_consumable_resources_paginator: ListConsumableResourcesPaginator = client.get_paginator("list_consumable_resources")
|
|
31
34
|
list_jobs_by_consumable_resource_paginator: ListJobsByConsumableResourcePaginator = client.get_paginator("list_jobs_by_consumable_resource")
|
|
32
35
|
list_jobs_paginator: ListJobsPaginator = client.get_paginator("list_jobs")
|
|
33
36
|
list_scheduling_policies_paginator: ListSchedulingPoliciesPaginator = client.get_paginator("list_scheduling_policies")
|
|
37
|
+
list_service_jobs_paginator: ListServiceJobsPaginator = client.get_paginator("list_service_jobs")
|
|
34
38
|
```
|
|
35
39
|
"""
|
|
36
40
|
|
|
@@ -48,6 +52,8 @@ from .type_defs import (
|
|
|
48
52
|
DescribeJobDefinitionsResponseTypeDef,
|
|
49
53
|
DescribeJobQueuesRequestPaginateTypeDef,
|
|
50
54
|
DescribeJobQueuesResponseTypeDef,
|
|
55
|
+
DescribeServiceEnvironmentsRequestPaginateTypeDef,
|
|
56
|
+
DescribeServiceEnvironmentsResponseTypeDef,
|
|
51
57
|
ListConsumableResourcesRequestPaginateTypeDef,
|
|
52
58
|
ListConsumableResourcesResponseTypeDef,
|
|
53
59
|
ListJobsByConsumableResourceRequestPaginateTypeDef,
|
|
@@ -56,6 +62,8 @@ from .type_defs import (
|
|
|
56
62
|
ListJobsResponseTypeDef,
|
|
57
63
|
ListSchedulingPoliciesRequestPaginateTypeDef,
|
|
58
64
|
ListSchedulingPoliciesResponseTypeDef,
|
|
65
|
+
ListServiceJobsRequestPaginateTypeDef,
|
|
66
|
+
ListServiceJobsResponseTypeDef,
|
|
59
67
|
)
|
|
60
68
|
|
|
61
69
|
if sys.version_info >= (3, 12):
|
|
@@ -68,10 +76,12 @@ __all__ = (
|
|
|
68
76
|
"DescribeComputeEnvironmentsPaginator",
|
|
69
77
|
"DescribeJobDefinitionsPaginator",
|
|
70
78
|
"DescribeJobQueuesPaginator",
|
|
79
|
+
"DescribeServiceEnvironmentsPaginator",
|
|
71
80
|
"ListConsumableResourcesPaginator",
|
|
72
81
|
"ListJobsByConsumableResourcePaginator",
|
|
73
82
|
"ListJobsPaginator",
|
|
74
83
|
"ListSchedulingPoliciesPaginator",
|
|
84
|
+
"ListServiceJobsPaginator",
|
|
75
85
|
)
|
|
76
86
|
|
|
77
87
|
|
|
@@ -140,6 +150,29 @@ class DescribeJobQueuesPaginator(_DescribeJobQueuesPaginatorBase):
|
|
|
140
150
|
"""
|
|
141
151
|
|
|
142
152
|
|
|
153
|
+
if TYPE_CHECKING:
|
|
154
|
+
_DescribeServiceEnvironmentsPaginatorBase = Paginator[
|
|
155
|
+
DescribeServiceEnvironmentsResponseTypeDef
|
|
156
|
+
]
|
|
157
|
+
else:
|
|
158
|
+
_DescribeServiceEnvironmentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
class DescribeServiceEnvironmentsPaginator(_DescribeServiceEnvironmentsPaginatorBase):
|
|
162
|
+
"""
|
|
163
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/DescribeServiceEnvironments.html#Batch.Paginator.DescribeServiceEnvironments)
|
|
164
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#describeserviceenvironmentspaginator)
|
|
165
|
+
"""
|
|
166
|
+
|
|
167
|
+
def paginate( # type: ignore[override]
|
|
168
|
+
self, **kwargs: Unpack[DescribeServiceEnvironmentsRequestPaginateTypeDef]
|
|
169
|
+
) -> PageIterator[DescribeServiceEnvironmentsResponseTypeDef]:
|
|
170
|
+
"""
|
|
171
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/DescribeServiceEnvironments.html#Batch.Paginator.DescribeServiceEnvironments.paginate)
|
|
172
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#describeserviceenvironmentspaginator)
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
|
|
143
176
|
if TYPE_CHECKING:
|
|
144
177
|
_ListConsumableResourcesPaginatorBase = Paginator[ListConsumableResourcesResponseTypeDef]
|
|
145
178
|
else:
|
|
@@ -224,3 +257,24 @@ class ListSchedulingPoliciesPaginator(_ListSchedulingPoliciesPaginatorBase):
|
|
|
224
257
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListSchedulingPolicies.html#Batch.Paginator.ListSchedulingPolicies.paginate)
|
|
225
258
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listschedulingpoliciespaginator)
|
|
226
259
|
"""
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
if TYPE_CHECKING:
|
|
263
|
+
_ListServiceJobsPaginatorBase = Paginator[ListServiceJobsResponseTypeDef]
|
|
264
|
+
else:
|
|
265
|
+
_ListServiceJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
class ListServiceJobsPaginator(_ListServiceJobsPaginatorBase):
|
|
269
|
+
"""
|
|
270
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListServiceJobs.html#Batch.Paginator.ListServiceJobs)
|
|
271
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listservicejobspaginator)
|
|
272
|
+
"""
|
|
273
|
+
|
|
274
|
+
def paginate( # type: ignore[override]
|
|
275
|
+
self, **kwargs: Unpack[ListServiceJobsRequestPaginateTypeDef]
|
|
276
|
+
) -> PageIterator[ListServiceJobsResponseTypeDef]:
|
|
277
|
+
"""
|
|
278
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListServiceJobs.html#Batch.Paginator.ListServiceJobs.paginate)
|
|
279
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listservicejobspaginator)
|
|
280
|
+
"""
|
types_boto3_batch/paginator.pyi
CHANGED
|
@@ -15,10 +15,12 @@ Usage::
|
|
|
15
15
|
DescribeComputeEnvironmentsPaginator,
|
|
16
16
|
DescribeJobDefinitionsPaginator,
|
|
17
17
|
DescribeJobQueuesPaginator,
|
|
18
|
+
DescribeServiceEnvironmentsPaginator,
|
|
18
19
|
ListConsumableResourcesPaginator,
|
|
19
20
|
ListJobsByConsumableResourcePaginator,
|
|
20
21
|
ListJobsPaginator,
|
|
21
22
|
ListSchedulingPoliciesPaginator,
|
|
23
|
+
ListServiceJobsPaginator,
|
|
22
24
|
)
|
|
23
25
|
|
|
24
26
|
session = Session()
|
|
@@ -27,10 +29,12 @@ Usage::
|
|
|
27
29
|
describe_compute_environments_paginator: DescribeComputeEnvironmentsPaginator = client.get_paginator("describe_compute_environments")
|
|
28
30
|
describe_job_definitions_paginator: DescribeJobDefinitionsPaginator = client.get_paginator("describe_job_definitions")
|
|
29
31
|
describe_job_queues_paginator: DescribeJobQueuesPaginator = client.get_paginator("describe_job_queues")
|
|
32
|
+
describe_service_environments_paginator: DescribeServiceEnvironmentsPaginator = client.get_paginator("describe_service_environments")
|
|
30
33
|
list_consumable_resources_paginator: ListConsumableResourcesPaginator = client.get_paginator("list_consumable_resources")
|
|
31
34
|
list_jobs_by_consumable_resource_paginator: ListJobsByConsumableResourcePaginator = client.get_paginator("list_jobs_by_consumable_resource")
|
|
32
35
|
list_jobs_paginator: ListJobsPaginator = client.get_paginator("list_jobs")
|
|
33
36
|
list_scheduling_policies_paginator: ListSchedulingPoliciesPaginator = client.get_paginator("list_scheduling_policies")
|
|
37
|
+
list_service_jobs_paginator: ListServiceJobsPaginator = client.get_paginator("list_service_jobs")
|
|
34
38
|
```
|
|
35
39
|
"""
|
|
36
40
|
|
|
@@ -48,6 +52,8 @@ from .type_defs import (
|
|
|
48
52
|
DescribeJobDefinitionsResponseTypeDef,
|
|
49
53
|
DescribeJobQueuesRequestPaginateTypeDef,
|
|
50
54
|
DescribeJobQueuesResponseTypeDef,
|
|
55
|
+
DescribeServiceEnvironmentsRequestPaginateTypeDef,
|
|
56
|
+
DescribeServiceEnvironmentsResponseTypeDef,
|
|
51
57
|
ListConsumableResourcesRequestPaginateTypeDef,
|
|
52
58
|
ListConsumableResourcesResponseTypeDef,
|
|
53
59
|
ListJobsByConsumableResourceRequestPaginateTypeDef,
|
|
@@ -56,6 +62,8 @@ from .type_defs import (
|
|
|
56
62
|
ListJobsResponseTypeDef,
|
|
57
63
|
ListSchedulingPoliciesRequestPaginateTypeDef,
|
|
58
64
|
ListSchedulingPoliciesResponseTypeDef,
|
|
65
|
+
ListServiceJobsRequestPaginateTypeDef,
|
|
66
|
+
ListServiceJobsResponseTypeDef,
|
|
59
67
|
)
|
|
60
68
|
|
|
61
69
|
if sys.version_info >= (3, 12):
|
|
@@ -67,10 +75,12 @@ __all__ = (
|
|
|
67
75
|
"DescribeComputeEnvironmentsPaginator",
|
|
68
76
|
"DescribeJobDefinitionsPaginator",
|
|
69
77
|
"DescribeJobQueuesPaginator",
|
|
78
|
+
"DescribeServiceEnvironmentsPaginator",
|
|
70
79
|
"ListConsumableResourcesPaginator",
|
|
71
80
|
"ListJobsByConsumableResourcePaginator",
|
|
72
81
|
"ListJobsPaginator",
|
|
73
82
|
"ListSchedulingPoliciesPaginator",
|
|
83
|
+
"ListServiceJobsPaginator",
|
|
74
84
|
)
|
|
75
85
|
|
|
76
86
|
if TYPE_CHECKING:
|
|
@@ -129,6 +139,26 @@ class DescribeJobQueuesPaginator(_DescribeJobQueuesPaginatorBase):
|
|
|
129
139
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#describejobqueuespaginator)
|
|
130
140
|
"""
|
|
131
141
|
|
|
142
|
+
if TYPE_CHECKING:
|
|
143
|
+
_DescribeServiceEnvironmentsPaginatorBase = Paginator[
|
|
144
|
+
DescribeServiceEnvironmentsResponseTypeDef
|
|
145
|
+
]
|
|
146
|
+
else:
|
|
147
|
+
_DescribeServiceEnvironmentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
148
|
+
|
|
149
|
+
class DescribeServiceEnvironmentsPaginator(_DescribeServiceEnvironmentsPaginatorBase):
|
|
150
|
+
"""
|
|
151
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/DescribeServiceEnvironments.html#Batch.Paginator.DescribeServiceEnvironments)
|
|
152
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#describeserviceenvironmentspaginator)
|
|
153
|
+
"""
|
|
154
|
+
def paginate( # type: ignore[override]
|
|
155
|
+
self, **kwargs: Unpack[DescribeServiceEnvironmentsRequestPaginateTypeDef]
|
|
156
|
+
) -> PageIterator[DescribeServiceEnvironmentsResponseTypeDef]:
|
|
157
|
+
"""
|
|
158
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/DescribeServiceEnvironments.html#Batch.Paginator.DescribeServiceEnvironments.paginate)
|
|
159
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#describeserviceenvironmentspaginator)
|
|
160
|
+
"""
|
|
161
|
+
|
|
132
162
|
if TYPE_CHECKING:
|
|
133
163
|
_ListConsumableResourcesPaginatorBase = Paginator[ListConsumableResourcesResponseTypeDef]
|
|
134
164
|
else:
|
|
@@ -202,3 +232,21 @@ class ListSchedulingPoliciesPaginator(_ListSchedulingPoliciesPaginatorBase):
|
|
|
202
232
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListSchedulingPolicies.html#Batch.Paginator.ListSchedulingPolicies.paginate)
|
|
203
233
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listschedulingpoliciespaginator)
|
|
204
234
|
"""
|
|
235
|
+
|
|
236
|
+
if TYPE_CHECKING:
|
|
237
|
+
_ListServiceJobsPaginatorBase = Paginator[ListServiceJobsResponseTypeDef]
|
|
238
|
+
else:
|
|
239
|
+
_ListServiceJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
240
|
+
|
|
241
|
+
class ListServiceJobsPaginator(_ListServiceJobsPaginatorBase):
|
|
242
|
+
"""
|
|
243
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListServiceJobs.html#Batch.Paginator.ListServiceJobs)
|
|
244
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listservicejobspaginator)
|
|
245
|
+
"""
|
|
246
|
+
def paginate( # type: ignore[override]
|
|
247
|
+
self, **kwargs: Unpack[ListServiceJobsRequestPaginateTypeDef]
|
|
248
|
+
) -> PageIterator[ListServiceJobsResponseTypeDef]:
|
|
249
|
+
"""
|
|
250
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListServiceJobs.html#Batch.Paginator.ListServiceJobs.paginate)
|
|
251
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listservicejobspaginator)
|
|
252
|
+
"""
|