mypy-boto3-sagemaker 1.40.0__py3-none-any.whl → 1.40.3__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.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +4 -0
- mypy_boto3_sagemaker/__init__.pyi +4 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +76 -0
- mypy_boto3_sagemaker/client.pyi +76 -0
- mypy_boto3_sagemaker/literals.py +23 -1
- mypy_boto3_sagemaker/literals.pyi +23 -1
- mypy_boto3_sagemaker/paginator.py +26 -0
- mypy_boto3_sagemaker/paginator.pyi +23 -0
- mypy_boto3_sagemaker/type_defs.py +229 -0
- mypy_boto3_sagemaker/type_defs.pyi +205 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/METADATA +8 -4
- mypy_boto3_sagemaker-1.40.3.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.0.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.0.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__init__.py
CHANGED
|
@@ -28,6 +28,7 @@ Usage::
|
|
|
28
28
|
ListAssociationsPaginator,
|
|
29
29
|
ListAutoMLJobsPaginator,
|
|
30
30
|
ListCandidatesForAutoMLJobPaginator,
|
|
31
|
+
ListClusterEventsPaginator,
|
|
31
32
|
ListClusterNodesPaginator,
|
|
32
33
|
ListClusterSchedulerConfigsPaginator,
|
|
33
34
|
ListClustersPaginator,
|
|
@@ -134,6 +135,7 @@ Usage::
|
|
|
134
135
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
135
136
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
136
137
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
138
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
137
139
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
138
140
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
139
141
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -219,6 +221,7 @@ from .paginator import (
|
|
|
219
221
|
ListAssociationsPaginator,
|
|
220
222
|
ListAutoMLJobsPaginator,
|
|
221
223
|
ListCandidatesForAutoMLJobPaginator,
|
|
224
|
+
ListClusterEventsPaginator,
|
|
222
225
|
ListClusterNodesPaginator,
|
|
223
226
|
ListClusterSchedulerConfigsPaginator,
|
|
224
227
|
ListClustersPaginator,
|
|
@@ -328,6 +331,7 @@ __all__ = (
|
|
|
328
331
|
"ListAssociationsPaginator",
|
|
329
332
|
"ListAutoMLJobsPaginator",
|
|
330
333
|
"ListCandidatesForAutoMLJobPaginator",
|
|
334
|
+
"ListClusterEventsPaginator",
|
|
331
335
|
"ListClusterNodesPaginator",
|
|
332
336
|
"ListClusterSchedulerConfigsPaginator",
|
|
333
337
|
"ListClustersPaginator",
|
|
@@ -28,6 +28,7 @@ Usage::
|
|
|
28
28
|
ListAssociationsPaginator,
|
|
29
29
|
ListAutoMLJobsPaginator,
|
|
30
30
|
ListCandidatesForAutoMLJobPaginator,
|
|
31
|
+
ListClusterEventsPaginator,
|
|
31
32
|
ListClusterNodesPaginator,
|
|
32
33
|
ListClusterSchedulerConfigsPaginator,
|
|
33
34
|
ListClustersPaginator,
|
|
@@ -134,6 +135,7 @@ Usage::
|
|
|
134
135
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
135
136
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
136
137
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
138
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
137
139
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
138
140
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
139
141
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -219,6 +221,7 @@ from .paginator import (
|
|
|
219
221
|
ListAssociationsPaginator,
|
|
220
222
|
ListAutoMLJobsPaginator,
|
|
221
223
|
ListCandidatesForAutoMLJobPaginator,
|
|
224
|
+
ListClusterEventsPaginator,
|
|
222
225
|
ListClusterNodesPaginator,
|
|
223
226
|
ListClusterSchedulerConfigsPaginator,
|
|
224
227
|
ListClustersPaginator,
|
|
@@ -327,6 +330,7 @@ __all__ = (
|
|
|
327
330
|
"ListAssociationsPaginator",
|
|
328
331
|
"ListAutoMLJobsPaginator",
|
|
329
332
|
"ListCandidatesForAutoMLJobPaginator",
|
|
333
|
+
"ListClusterEventsPaginator",
|
|
330
334
|
"ListClusterNodesPaginator",
|
|
331
335
|
"ListClusterSchedulerConfigsPaginator",
|
|
332
336
|
"ListClustersPaginator",
|
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SageMaker 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.40.3\n"
|
|
16
|
+
"Version: 1.40.3\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#sagemaker\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.3\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -36,6 +36,7 @@ from .paginator import (
|
|
|
36
36
|
ListAssociationsPaginator,
|
|
37
37
|
ListAutoMLJobsPaginator,
|
|
38
38
|
ListCandidatesForAutoMLJobPaginator,
|
|
39
|
+
ListClusterEventsPaginator,
|
|
39
40
|
ListClusterNodesPaginator,
|
|
40
41
|
ListClusterSchedulerConfigsPaginator,
|
|
41
42
|
ListClustersPaginator,
|
|
@@ -114,6 +115,10 @@ from .type_defs import (
|
|
|
114
115
|
AddTagsOutputTypeDef,
|
|
115
116
|
AssociateTrialComponentRequestTypeDef,
|
|
116
117
|
AssociateTrialComponentResponseTypeDef,
|
|
118
|
+
AttachClusterNodeVolumeRequestTypeDef,
|
|
119
|
+
AttachClusterNodeVolumeResponseTypeDef,
|
|
120
|
+
BatchAddClusterNodesRequestTypeDef,
|
|
121
|
+
BatchAddClusterNodesResponseTypeDef,
|
|
117
122
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
118
123
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
119
124
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -330,6 +335,8 @@ from .type_defs import (
|
|
|
330
335
|
DescribeAutoMLJobResponseTypeDef,
|
|
331
336
|
DescribeAutoMLJobV2RequestTypeDef,
|
|
332
337
|
DescribeAutoMLJobV2ResponseTypeDef,
|
|
338
|
+
DescribeClusterEventRequestTypeDef,
|
|
339
|
+
DescribeClusterEventResponseTypeDef,
|
|
333
340
|
DescribeClusterNodeRequestTypeDef,
|
|
334
341
|
DescribeClusterNodeResponseTypeDef,
|
|
335
342
|
DescribeClusterRequestTypeDef,
|
|
@@ -450,6 +457,8 @@ from .type_defs import (
|
|
|
450
457
|
DescribeWorkforceResponseTypeDef,
|
|
451
458
|
DescribeWorkteamRequestTypeDef,
|
|
452
459
|
DescribeWorkteamResponseTypeDef,
|
|
460
|
+
DetachClusterNodeVolumeRequestTypeDef,
|
|
461
|
+
DetachClusterNodeVolumeResponseTypeDef,
|
|
453
462
|
DisassociateTrialComponentRequestTypeDef,
|
|
454
463
|
DisassociateTrialComponentResponseTypeDef,
|
|
455
464
|
EmptyResponseMetadataTypeDef,
|
|
@@ -484,6 +493,8 @@ from .type_defs import (
|
|
|
484
493
|
ListAutoMLJobsResponseTypeDef,
|
|
485
494
|
ListCandidatesForAutoMLJobRequestTypeDef,
|
|
486
495
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
496
|
+
ListClusterEventsRequestTypeDef,
|
|
497
|
+
ListClusterEventsResponseTypeDef,
|
|
487
498
|
ListClusterNodesRequestTypeDef,
|
|
488
499
|
ListClusterNodesResponseTypeDef,
|
|
489
500
|
ListClusterSchedulerConfigsRequestTypeDef,
|
|
@@ -863,6 +874,28 @@ class SageMakerClient(BaseClient):
|
|
|
863
874
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#associate_trial_component)
|
|
864
875
|
"""
|
|
865
876
|
|
|
877
|
+
def attach_cluster_node_volume(
|
|
878
|
+
self, **kwargs: Unpack[AttachClusterNodeVolumeRequestTypeDef]
|
|
879
|
+
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
880
|
+
"""
|
|
881
|
+
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
882
|
+
EKS-orchestrated HyperPod cluster.
|
|
883
|
+
|
|
884
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
885
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
886
|
+
"""
|
|
887
|
+
|
|
888
|
+
def batch_add_cluster_nodes(
|
|
889
|
+
self, **kwargs: Unpack[BatchAddClusterNodesRequestTypeDef]
|
|
890
|
+
) -> BatchAddClusterNodesResponseTypeDef:
|
|
891
|
+
"""
|
|
892
|
+
Adds nodes to a HyperPod cluster by incrementing the target count for one or
|
|
893
|
+
more instance groups.
|
|
894
|
+
|
|
895
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_add_cluster_nodes.html)
|
|
896
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_add_cluster_nodes)
|
|
897
|
+
"""
|
|
898
|
+
|
|
866
899
|
def batch_delete_cluster_nodes(
|
|
867
900
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
868
901
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2189,6 +2222,17 @@ class SageMakerClient(BaseClient):
|
|
|
2189
2222
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2190
2223
|
"""
|
|
2191
2224
|
|
|
2225
|
+
def describe_cluster_event(
|
|
2226
|
+
self, **kwargs: Unpack[DescribeClusterEventRequestTypeDef]
|
|
2227
|
+
) -> DescribeClusterEventResponseTypeDef:
|
|
2228
|
+
"""
|
|
2229
|
+
Retrieves detailed information about a specific event for a given HyperPod
|
|
2230
|
+
cluster.
|
|
2231
|
+
|
|
2232
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_event.html)
|
|
2233
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_event)
|
|
2234
|
+
"""
|
|
2235
|
+
|
|
2192
2236
|
def describe_cluster_node(
|
|
2193
2237
|
self, **kwargs: Unpack[DescribeClusterNodeRequestTypeDef]
|
|
2194
2238
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
@@ -2787,6 +2831,17 @@ class SageMakerClient(BaseClient):
|
|
|
2787
2831
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2788
2832
|
"""
|
|
2789
2833
|
|
|
2834
|
+
def detach_cluster_node_volume(
|
|
2835
|
+
self, **kwargs: Unpack[DetachClusterNodeVolumeRequestTypeDef]
|
|
2836
|
+
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2837
|
+
"""
|
|
2838
|
+
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2839
|
+
your EKS-orchestrated SageMaker HyperPod cluster.
|
|
2840
|
+
|
|
2841
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2842
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
2843
|
+
"""
|
|
2844
|
+
|
|
2790
2845
|
def disable_sagemaker_servicecatalog_portfolio(self) -> Dict[str, Any]:
|
|
2791
2846
|
"""
|
|
2792
2847
|
Disables using Service Catalog in SageMaker.
|
|
@@ -2971,6 +3026,16 @@ class SageMakerClient(BaseClient):
|
|
|
2971
3026
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2972
3027
|
"""
|
|
2973
3028
|
|
|
3029
|
+
def list_cluster_events(
|
|
3030
|
+
self, **kwargs: Unpack[ListClusterEventsRequestTypeDef]
|
|
3031
|
+
) -> ListClusterEventsResponseTypeDef:
|
|
3032
|
+
"""
|
|
3033
|
+
Retrieves a list of event summaries for a specified HyperPod cluster.
|
|
3034
|
+
|
|
3035
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_events.html)
|
|
3036
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_events)
|
|
3037
|
+
"""
|
|
3038
|
+
|
|
2974
3039
|
def list_cluster_nodes(
|
|
2975
3040
|
self, **kwargs: Unpack[ListClusterNodesRequestTypeDef]
|
|
2976
3041
|
) -> ListClusterNodesResponseTypeDef:
|
|
@@ -4585,6 +4650,17 @@ class SageMakerClient(BaseClient):
|
|
|
4585
4650
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4586
4651
|
"""
|
|
4587
4652
|
|
|
4653
|
+
@overload # type: ignore[override]
|
|
4654
|
+
def get_paginator( # type: ignore[override]
|
|
4655
|
+
self, operation_name: Literal["list_cluster_events"]
|
|
4656
|
+
) -> ListClusterEventsPaginator:
|
|
4657
|
+
"""
|
|
4658
|
+
Create a paginator for an operation.
|
|
4659
|
+
|
|
4660
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4661
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4662
|
+
"""
|
|
4663
|
+
|
|
4588
4664
|
@overload # type: ignore[override]
|
|
4589
4665
|
def get_paginator( # type: ignore[override]
|
|
4590
4666
|
self, operation_name: Literal["list_cluster_nodes"]
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -36,6 +36,7 @@ from .paginator import (
|
|
|
36
36
|
ListAssociationsPaginator,
|
|
37
37
|
ListAutoMLJobsPaginator,
|
|
38
38
|
ListCandidatesForAutoMLJobPaginator,
|
|
39
|
+
ListClusterEventsPaginator,
|
|
39
40
|
ListClusterNodesPaginator,
|
|
40
41
|
ListClusterSchedulerConfigsPaginator,
|
|
41
42
|
ListClustersPaginator,
|
|
@@ -114,6 +115,10 @@ from .type_defs import (
|
|
|
114
115
|
AddTagsOutputTypeDef,
|
|
115
116
|
AssociateTrialComponentRequestTypeDef,
|
|
116
117
|
AssociateTrialComponentResponseTypeDef,
|
|
118
|
+
AttachClusterNodeVolumeRequestTypeDef,
|
|
119
|
+
AttachClusterNodeVolumeResponseTypeDef,
|
|
120
|
+
BatchAddClusterNodesRequestTypeDef,
|
|
121
|
+
BatchAddClusterNodesResponseTypeDef,
|
|
117
122
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
118
123
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
119
124
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -330,6 +335,8 @@ from .type_defs import (
|
|
|
330
335
|
DescribeAutoMLJobResponseTypeDef,
|
|
331
336
|
DescribeAutoMLJobV2RequestTypeDef,
|
|
332
337
|
DescribeAutoMLJobV2ResponseTypeDef,
|
|
338
|
+
DescribeClusterEventRequestTypeDef,
|
|
339
|
+
DescribeClusterEventResponseTypeDef,
|
|
333
340
|
DescribeClusterNodeRequestTypeDef,
|
|
334
341
|
DescribeClusterNodeResponseTypeDef,
|
|
335
342
|
DescribeClusterRequestTypeDef,
|
|
@@ -450,6 +457,8 @@ from .type_defs import (
|
|
|
450
457
|
DescribeWorkforceResponseTypeDef,
|
|
451
458
|
DescribeWorkteamRequestTypeDef,
|
|
452
459
|
DescribeWorkteamResponseTypeDef,
|
|
460
|
+
DetachClusterNodeVolumeRequestTypeDef,
|
|
461
|
+
DetachClusterNodeVolumeResponseTypeDef,
|
|
453
462
|
DisassociateTrialComponentRequestTypeDef,
|
|
454
463
|
DisassociateTrialComponentResponseTypeDef,
|
|
455
464
|
EmptyResponseMetadataTypeDef,
|
|
@@ -484,6 +493,8 @@ from .type_defs import (
|
|
|
484
493
|
ListAutoMLJobsResponseTypeDef,
|
|
485
494
|
ListCandidatesForAutoMLJobRequestTypeDef,
|
|
486
495
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
496
|
+
ListClusterEventsRequestTypeDef,
|
|
497
|
+
ListClusterEventsResponseTypeDef,
|
|
487
498
|
ListClusterNodesRequestTypeDef,
|
|
488
499
|
ListClusterNodesResponseTypeDef,
|
|
489
500
|
ListClusterSchedulerConfigsRequestTypeDef,
|
|
@@ -860,6 +871,28 @@ class SageMakerClient(BaseClient):
|
|
|
860
871
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#associate_trial_component)
|
|
861
872
|
"""
|
|
862
873
|
|
|
874
|
+
def attach_cluster_node_volume(
|
|
875
|
+
self, **kwargs: Unpack[AttachClusterNodeVolumeRequestTypeDef]
|
|
876
|
+
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
877
|
+
"""
|
|
878
|
+
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
879
|
+
EKS-orchestrated HyperPod cluster.
|
|
880
|
+
|
|
881
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
882
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
883
|
+
"""
|
|
884
|
+
|
|
885
|
+
def batch_add_cluster_nodes(
|
|
886
|
+
self, **kwargs: Unpack[BatchAddClusterNodesRequestTypeDef]
|
|
887
|
+
) -> BatchAddClusterNodesResponseTypeDef:
|
|
888
|
+
"""
|
|
889
|
+
Adds nodes to a HyperPod cluster by incrementing the target count for one or
|
|
890
|
+
more instance groups.
|
|
891
|
+
|
|
892
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_add_cluster_nodes.html)
|
|
893
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_add_cluster_nodes)
|
|
894
|
+
"""
|
|
895
|
+
|
|
863
896
|
def batch_delete_cluster_nodes(
|
|
864
897
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
865
898
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2186,6 +2219,17 @@ class SageMakerClient(BaseClient):
|
|
|
2186
2219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2187
2220
|
"""
|
|
2188
2221
|
|
|
2222
|
+
def describe_cluster_event(
|
|
2223
|
+
self, **kwargs: Unpack[DescribeClusterEventRequestTypeDef]
|
|
2224
|
+
) -> DescribeClusterEventResponseTypeDef:
|
|
2225
|
+
"""
|
|
2226
|
+
Retrieves detailed information about a specific event for a given HyperPod
|
|
2227
|
+
cluster.
|
|
2228
|
+
|
|
2229
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_event.html)
|
|
2230
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_event)
|
|
2231
|
+
"""
|
|
2232
|
+
|
|
2189
2233
|
def describe_cluster_node(
|
|
2190
2234
|
self, **kwargs: Unpack[DescribeClusterNodeRequestTypeDef]
|
|
2191
2235
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
@@ -2784,6 +2828,17 @@ class SageMakerClient(BaseClient):
|
|
|
2784
2828
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2785
2829
|
"""
|
|
2786
2830
|
|
|
2831
|
+
def detach_cluster_node_volume(
|
|
2832
|
+
self, **kwargs: Unpack[DetachClusterNodeVolumeRequestTypeDef]
|
|
2833
|
+
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2834
|
+
"""
|
|
2835
|
+
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2836
|
+
your EKS-orchestrated SageMaker HyperPod cluster.
|
|
2837
|
+
|
|
2838
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2839
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
2840
|
+
"""
|
|
2841
|
+
|
|
2787
2842
|
def disable_sagemaker_servicecatalog_portfolio(self) -> Dict[str, Any]:
|
|
2788
2843
|
"""
|
|
2789
2844
|
Disables using Service Catalog in SageMaker.
|
|
@@ -2968,6 +3023,16 @@ class SageMakerClient(BaseClient):
|
|
|
2968
3023
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2969
3024
|
"""
|
|
2970
3025
|
|
|
3026
|
+
def list_cluster_events(
|
|
3027
|
+
self, **kwargs: Unpack[ListClusterEventsRequestTypeDef]
|
|
3028
|
+
) -> ListClusterEventsResponseTypeDef:
|
|
3029
|
+
"""
|
|
3030
|
+
Retrieves a list of event summaries for a specified HyperPod cluster.
|
|
3031
|
+
|
|
3032
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_events.html)
|
|
3033
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_events)
|
|
3034
|
+
"""
|
|
3035
|
+
|
|
2971
3036
|
def list_cluster_nodes(
|
|
2972
3037
|
self, **kwargs: Unpack[ListClusterNodesRequestTypeDef]
|
|
2973
3038
|
) -> ListClusterNodesResponseTypeDef:
|
|
@@ -4582,6 +4647,17 @@ class SageMakerClient(BaseClient):
|
|
|
4582
4647
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4583
4648
|
"""
|
|
4584
4649
|
|
|
4650
|
+
@overload # type: ignore[override]
|
|
4651
|
+
def get_paginator( # type: ignore[override]
|
|
4652
|
+
self, operation_name: Literal["list_cluster_events"]
|
|
4653
|
+
) -> ListClusterEventsPaginator:
|
|
4654
|
+
"""
|
|
4655
|
+
Create a paginator for an operation.
|
|
4656
|
+
|
|
4657
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4658
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4659
|
+
"""
|
|
4660
|
+
|
|
4585
4661
|
@overload # type: ignore[override]
|
|
4586
4662
|
def get_paginator( # type: ignore[override]
|
|
4587
4663
|
self, operation_name: Literal["list_cluster_nodes"]
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -59,6 +59,7 @@ __all__ = (
|
|
|
59
59
|
"AutoMountHomeEFSType",
|
|
60
60
|
"AutotuneModeType",
|
|
61
61
|
"AwsManagedHumanLoopRequestSourceType",
|
|
62
|
+
"BatchAddClusterNodesErrorCodeType",
|
|
62
63
|
"BatchDeleteClusterNodesErrorCodeType",
|
|
63
64
|
"BatchStrategyType",
|
|
64
65
|
"BooleanOperatorType",
|
|
@@ -66,14 +67,17 @@ __all__ = (
|
|
|
66
67
|
"CandidateStatusType",
|
|
67
68
|
"CandidateStepTypeType",
|
|
68
69
|
"CapacityReservationPreferenceType",
|
|
70
|
+
"CapacityReservationTypeType",
|
|
69
71
|
"CapacitySizeTypeType",
|
|
70
72
|
"CaptureModeType",
|
|
71
73
|
"CaptureStatusType",
|
|
72
74
|
"ClarifyFeatureTypeType",
|
|
73
75
|
"ClarifyTextGranularityType",
|
|
74
76
|
"ClarifyTextLanguageType",
|
|
77
|
+
"ClusterEventResourceTypeType",
|
|
75
78
|
"ClusterInstanceStatusType",
|
|
76
79
|
"ClusterInstanceTypeType",
|
|
80
|
+
"ClusterNodeProvisioningModeType",
|
|
77
81
|
"ClusterNodeRecoveryType",
|
|
78
82
|
"ClusterSortByType",
|
|
79
83
|
"ClusterStatusType",
|
|
@@ -107,6 +111,7 @@ __all__ = (
|
|
|
107
111
|
"EndpointInServiceWaiterName",
|
|
108
112
|
"EndpointSortKeyType",
|
|
109
113
|
"EndpointStatusType",
|
|
114
|
+
"EventSortByType",
|
|
110
115
|
"ExecutionRoleIdentityConfigType",
|
|
111
116
|
"ExecutionStatusType",
|
|
112
117
|
"FailureHandlingPolicyType",
|
|
@@ -173,6 +178,7 @@ __all__ = (
|
|
|
173
178
|
"ListAssociationsPaginatorName",
|
|
174
179
|
"ListAutoMLJobsPaginatorName",
|
|
175
180
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
181
|
+
"ListClusterEventsPaginatorName",
|
|
176
182
|
"ListClusterNodesPaginatorName",
|
|
177
183
|
"ListClusterSchedulerConfigsPaginatorName",
|
|
178
184
|
"ListClustersPaginatorName",
|
|
@@ -423,6 +429,7 @@ __all__ = (
|
|
|
423
429
|
"VariantPropertyTypeType",
|
|
424
430
|
"VariantStatusType",
|
|
425
431
|
"VendorGuidanceType",
|
|
432
|
+
"VolumeAttachmentStatusType",
|
|
426
433
|
"WaiterName",
|
|
427
434
|
"WarmPoolResourceStatusType",
|
|
428
435
|
"WorkforceIpAddressTypeType",
|
|
@@ -730,6 +737,7 @@ AutotuneModeType = Literal["Enabled"]
|
|
|
730
737
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
731
738
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
732
739
|
]
|
|
740
|
+
BatchAddClusterNodesErrorCodeType = Literal["InstanceGroupNotFound", "InvalidInstanceGroupStatus"]
|
|
733
741
|
BatchDeleteClusterNodesErrorCodeType = Literal["InvalidNodeStatus", "NodeIdInUse", "NodeIdNotFound"]
|
|
734
742
|
BatchStrategyType = Literal["MultiRecord", "SingleRecord"]
|
|
735
743
|
BooleanOperatorType = Literal["And", "Or"]
|
|
@@ -739,6 +747,7 @@ CandidateStepTypeType = Literal[
|
|
|
739
747
|
"AWS::SageMaker::ProcessingJob", "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob"
|
|
740
748
|
]
|
|
741
749
|
CapacityReservationPreferenceType = Literal["capacity-reservations-only"]
|
|
750
|
+
CapacityReservationTypeType = Literal["CRG", "ODCR"]
|
|
742
751
|
CapacitySizeTypeType = Literal["CAPACITY_PERCENT", "INSTANCE_COUNT"]
|
|
743
752
|
CaptureModeType = Literal["Input", "InputAndOutput", "Output"]
|
|
744
753
|
CaptureStatusType = Literal["Started", "Stopped"]
|
|
@@ -806,8 +815,15 @@ ClarifyTextLanguageType = Literal[
|
|
|
806
815
|
"yo",
|
|
807
816
|
"zh",
|
|
808
817
|
]
|
|
818
|
+
ClusterEventResourceTypeType = Literal["Cluster", "Instance", "InstanceGroup"]
|
|
809
819
|
ClusterInstanceStatusType = Literal[
|
|
810
|
-
"DeepHealthCheckInProgress",
|
|
820
|
+
"DeepHealthCheckInProgress",
|
|
821
|
+
"Failure",
|
|
822
|
+
"NotFound",
|
|
823
|
+
"Pending",
|
|
824
|
+
"Running",
|
|
825
|
+
"ShuttingDown",
|
|
826
|
+
"SystemUpdating",
|
|
811
827
|
]
|
|
812
828
|
ClusterInstanceTypeType = Literal[
|
|
813
829
|
"ml.c5.12xlarge",
|
|
@@ -923,6 +939,7 @@ ClusterInstanceTypeType = Literal[
|
|
|
923
939
|
"ml.trn1n.32xlarge",
|
|
924
940
|
"ml.trn2.48xlarge",
|
|
925
941
|
]
|
|
942
|
+
ClusterNodeProvisioningModeType = Literal["Continuous"]
|
|
926
943
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
927
944
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
928
945
|
ClusterStatusType = Literal[
|
|
@@ -976,6 +993,7 @@ EndpointStatusType = Literal[
|
|
|
976
993
|
"UpdateRollbackFailed",
|
|
977
994
|
"Updating",
|
|
978
995
|
]
|
|
996
|
+
EventSortByType = Literal["EventTime"]
|
|
979
997
|
ExecutionRoleIdentityConfigType = Literal["DISABLED", "USER_PROFILE_NAME"]
|
|
980
998
|
ExecutionStatusType = Literal[
|
|
981
999
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
@@ -1242,6 +1260,7 @@ ListArtifactsPaginatorName = Literal["list_artifacts"]
|
|
|
1242
1260
|
ListAssociationsPaginatorName = Literal["list_associations"]
|
|
1243
1261
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1244
1262
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1263
|
+
ListClusterEventsPaginatorName = Literal["list_cluster_events"]
|
|
1245
1264
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1246
1265
|
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1247
1266
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
@@ -2378,6 +2397,7 @@ UserProfileStatusType = Literal[
|
|
|
2378
2397
|
VariantPropertyTypeType = Literal["DataCaptureConfig", "DesiredInstanceCount", "DesiredWeight"]
|
|
2379
2398
|
VariantStatusType = Literal["ActivatingTraffic", "Baking", "Creating", "Deleting", "Updating"]
|
|
2380
2399
|
VendorGuidanceType = Literal["ARCHIVED", "NOT_PROVIDED", "STABLE", "TO_BE_ARCHIVED"]
|
|
2400
|
+
VolumeAttachmentStatusType = Literal["attached", "attaching", "busy", "detached", "detaching"]
|
|
2381
2401
|
WarmPoolResourceStatusType = Literal["Available", "InUse", "Reused", "Terminated"]
|
|
2382
2402
|
WorkforceIpAddressTypeType = Literal["dualstack", "ipv4"]
|
|
2383
2403
|
WorkforceStatusType = Literal["Active", "Deleting", "Failed", "Initializing", "Updating"]
|
|
@@ -2409,6 +2429,7 @@ ServiceName = Literal[
|
|
|
2409
2429
|
"appstream",
|
|
2410
2430
|
"appsync",
|
|
2411
2431
|
"apptest",
|
|
2432
|
+
"arc-region-switch",
|
|
2412
2433
|
"arc-zonal-shift",
|
|
2413
2434
|
"artifact",
|
|
2414
2435
|
"athena",
|
|
@@ -2819,6 +2840,7 @@ PaginatorName = Literal[
|
|
|
2819
2840
|
"list_associations",
|
|
2820
2841
|
"list_auto_ml_jobs",
|
|
2821
2842
|
"list_candidates_for_auto_ml_job",
|
|
2843
|
+
"list_cluster_events",
|
|
2822
2844
|
"list_cluster_nodes",
|
|
2823
2845
|
"list_cluster_scheduler_configs",
|
|
2824
2846
|
"list_clusters",
|
|
@@ -58,6 +58,7 @@ __all__ = (
|
|
|
58
58
|
"AutoMountHomeEFSType",
|
|
59
59
|
"AutotuneModeType",
|
|
60
60
|
"AwsManagedHumanLoopRequestSourceType",
|
|
61
|
+
"BatchAddClusterNodesErrorCodeType",
|
|
61
62
|
"BatchDeleteClusterNodesErrorCodeType",
|
|
62
63
|
"BatchStrategyType",
|
|
63
64
|
"BooleanOperatorType",
|
|
@@ -65,14 +66,17 @@ __all__ = (
|
|
|
65
66
|
"CandidateStatusType",
|
|
66
67
|
"CandidateStepTypeType",
|
|
67
68
|
"CapacityReservationPreferenceType",
|
|
69
|
+
"CapacityReservationTypeType",
|
|
68
70
|
"CapacitySizeTypeType",
|
|
69
71
|
"CaptureModeType",
|
|
70
72
|
"CaptureStatusType",
|
|
71
73
|
"ClarifyFeatureTypeType",
|
|
72
74
|
"ClarifyTextGranularityType",
|
|
73
75
|
"ClarifyTextLanguageType",
|
|
76
|
+
"ClusterEventResourceTypeType",
|
|
74
77
|
"ClusterInstanceStatusType",
|
|
75
78
|
"ClusterInstanceTypeType",
|
|
79
|
+
"ClusterNodeProvisioningModeType",
|
|
76
80
|
"ClusterNodeRecoveryType",
|
|
77
81
|
"ClusterSortByType",
|
|
78
82
|
"ClusterStatusType",
|
|
@@ -106,6 +110,7 @@ __all__ = (
|
|
|
106
110
|
"EndpointInServiceWaiterName",
|
|
107
111
|
"EndpointSortKeyType",
|
|
108
112
|
"EndpointStatusType",
|
|
113
|
+
"EventSortByType",
|
|
109
114
|
"ExecutionRoleIdentityConfigType",
|
|
110
115
|
"ExecutionStatusType",
|
|
111
116
|
"FailureHandlingPolicyType",
|
|
@@ -172,6 +177,7 @@ __all__ = (
|
|
|
172
177
|
"ListAssociationsPaginatorName",
|
|
173
178
|
"ListAutoMLJobsPaginatorName",
|
|
174
179
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
180
|
+
"ListClusterEventsPaginatorName",
|
|
175
181
|
"ListClusterNodesPaginatorName",
|
|
176
182
|
"ListClusterSchedulerConfigsPaginatorName",
|
|
177
183
|
"ListClustersPaginatorName",
|
|
@@ -422,6 +428,7 @@ __all__ = (
|
|
|
422
428
|
"VariantPropertyTypeType",
|
|
423
429
|
"VariantStatusType",
|
|
424
430
|
"VendorGuidanceType",
|
|
431
|
+
"VolumeAttachmentStatusType",
|
|
425
432
|
"WaiterName",
|
|
426
433
|
"WarmPoolResourceStatusType",
|
|
427
434
|
"WorkforceIpAddressTypeType",
|
|
@@ -728,6 +735,7 @@ AutotuneModeType = Literal["Enabled"]
|
|
|
728
735
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
729
736
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
730
737
|
]
|
|
738
|
+
BatchAddClusterNodesErrorCodeType = Literal["InstanceGroupNotFound", "InvalidInstanceGroupStatus"]
|
|
731
739
|
BatchDeleteClusterNodesErrorCodeType = Literal["InvalidNodeStatus", "NodeIdInUse", "NodeIdNotFound"]
|
|
732
740
|
BatchStrategyType = Literal["MultiRecord", "SingleRecord"]
|
|
733
741
|
BooleanOperatorType = Literal["And", "Or"]
|
|
@@ -737,6 +745,7 @@ CandidateStepTypeType = Literal[
|
|
|
737
745
|
"AWS::SageMaker::ProcessingJob", "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob"
|
|
738
746
|
]
|
|
739
747
|
CapacityReservationPreferenceType = Literal["capacity-reservations-only"]
|
|
748
|
+
CapacityReservationTypeType = Literal["CRG", "ODCR"]
|
|
740
749
|
CapacitySizeTypeType = Literal["CAPACITY_PERCENT", "INSTANCE_COUNT"]
|
|
741
750
|
CaptureModeType = Literal["Input", "InputAndOutput", "Output"]
|
|
742
751
|
CaptureStatusType = Literal["Started", "Stopped"]
|
|
@@ -804,8 +813,15 @@ ClarifyTextLanguageType = Literal[
|
|
|
804
813
|
"yo",
|
|
805
814
|
"zh",
|
|
806
815
|
]
|
|
816
|
+
ClusterEventResourceTypeType = Literal["Cluster", "Instance", "InstanceGroup"]
|
|
807
817
|
ClusterInstanceStatusType = Literal[
|
|
808
|
-
"DeepHealthCheckInProgress",
|
|
818
|
+
"DeepHealthCheckInProgress",
|
|
819
|
+
"Failure",
|
|
820
|
+
"NotFound",
|
|
821
|
+
"Pending",
|
|
822
|
+
"Running",
|
|
823
|
+
"ShuttingDown",
|
|
824
|
+
"SystemUpdating",
|
|
809
825
|
]
|
|
810
826
|
ClusterInstanceTypeType = Literal[
|
|
811
827
|
"ml.c5.12xlarge",
|
|
@@ -921,6 +937,7 @@ ClusterInstanceTypeType = Literal[
|
|
|
921
937
|
"ml.trn1n.32xlarge",
|
|
922
938
|
"ml.trn2.48xlarge",
|
|
923
939
|
]
|
|
940
|
+
ClusterNodeProvisioningModeType = Literal["Continuous"]
|
|
924
941
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
925
942
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
926
943
|
ClusterStatusType = Literal[
|
|
@@ -974,6 +991,7 @@ EndpointStatusType = Literal[
|
|
|
974
991
|
"UpdateRollbackFailed",
|
|
975
992
|
"Updating",
|
|
976
993
|
]
|
|
994
|
+
EventSortByType = Literal["EventTime"]
|
|
977
995
|
ExecutionRoleIdentityConfigType = Literal["DISABLED", "USER_PROFILE_NAME"]
|
|
978
996
|
ExecutionStatusType = Literal[
|
|
979
997
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
@@ -1240,6 +1258,7 @@ ListArtifactsPaginatorName = Literal["list_artifacts"]
|
|
|
1240
1258
|
ListAssociationsPaginatorName = Literal["list_associations"]
|
|
1241
1259
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1242
1260
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1261
|
+
ListClusterEventsPaginatorName = Literal["list_cluster_events"]
|
|
1243
1262
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1244
1263
|
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1245
1264
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
@@ -2376,6 +2395,7 @@ UserProfileStatusType = Literal[
|
|
|
2376
2395
|
VariantPropertyTypeType = Literal["DataCaptureConfig", "DesiredInstanceCount", "DesiredWeight"]
|
|
2377
2396
|
VariantStatusType = Literal["ActivatingTraffic", "Baking", "Creating", "Deleting", "Updating"]
|
|
2378
2397
|
VendorGuidanceType = Literal["ARCHIVED", "NOT_PROVIDED", "STABLE", "TO_BE_ARCHIVED"]
|
|
2398
|
+
VolumeAttachmentStatusType = Literal["attached", "attaching", "busy", "detached", "detaching"]
|
|
2379
2399
|
WarmPoolResourceStatusType = Literal["Available", "InUse", "Reused", "Terminated"]
|
|
2380
2400
|
WorkforceIpAddressTypeType = Literal["dualstack", "ipv4"]
|
|
2381
2401
|
WorkforceStatusType = Literal["Active", "Deleting", "Failed", "Initializing", "Updating"]
|
|
@@ -2407,6 +2427,7 @@ ServiceName = Literal[
|
|
|
2407
2427
|
"appstream",
|
|
2408
2428
|
"appsync",
|
|
2409
2429
|
"apptest",
|
|
2430
|
+
"arc-region-switch",
|
|
2410
2431
|
"arc-zonal-shift",
|
|
2411
2432
|
"artifact",
|
|
2412
2433
|
"athena",
|
|
@@ -2817,6 +2838,7 @@ PaginatorName = Literal[
|
|
|
2817
2838
|
"list_associations",
|
|
2818
2839
|
"list_auto_ml_jobs",
|
|
2819
2840
|
"list_candidates_for_auto_ml_job",
|
|
2841
|
+
"list_cluster_events",
|
|
2820
2842
|
"list_cluster_nodes",
|
|
2821
2843
|
"list_cluster_scheduler_configs",
|
|
2822
2844
|
"list_clusters",
|