mypy-boto3-sagemaker 1.40.2__py3-none-any.whl → 1.40.6__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 +8 -0
- mypy_boto3_sagemaker/__init__.pyi +8 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +88 -2
- mypy_boto3_sagemaker/client.pyi +88 -2
- mypy_boto3_sagemaker/literals.py +29 -1
- mypy_boto3_sagemaker/literals.pyi +29 -1
- mypy_boto3_sagemaker/paginator.py +54 -0
- mypy_boto3_sagemaker/paginator.pyi +48 -0
- mypy_boto3_sagemaker/type_defs.py +322 -17
- mypy_boto3_sagemaker/type_defs.pyi +291 -17
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/METADATA +12 -4
- mypy_boto3_sagemaker-1.40.6.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.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,
|
|
@@ -94,6 +95,7 @@ Usage::
|
|
|
94
95
|
ListTransformJobsPaginator,
|
|
95
96
|
ListTrialComponentsPaginator,
|
|
96
97
|
ListTrialsPaginator,
|
|
98
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
97
99
|
ListUserProfilesPaginator,
|
|
98
100
|
ListWorkforcesPaginator,
|
|
99
101
|
ListWorkteamsPaginator,
|
|
@@ -134,6 +136,7 @@ Usage::
|
|
|
134
136
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
135
137
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
136
138
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
139
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
137
140
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
138
141
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
139
142
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -200,6 +203,7 @@ Usage::
|
|
|
200
203
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
201
204
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
202
205
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
206
|
+
list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = client.get_paginator("list_ultra_servers_by_reserved_capacity")
|
|
203
207
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
204
208
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
205
209
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -219,6 +223,7 @@ from .paginator import (
|
|
|
219
223
|
ListAssociationsPaginator,
|
|
220
224
|
ListAutoMLJobsPaginator,
|
|
221
225
|
ListCandidatesForAutoMLJobPaginator,
|
|
226
|
+
ListClusterEventsPaginator,
|
|
222
227
|
ListClusterNodesPaginator,
|
|
223
228
|
ListClusterSchedulerConfigsPaginator,
|
|
224
229
|
ListClustersPaginator,
|
|
@@ -285,6 +290,7 @@ from .paginator import (
|
|
|
285
290
|
ListTransformJobsPaginator,
|
|
286
291
|
ListTrialComponentsPaginator,
|
|
287
292
|
ListTrialsPaginator,
|
|
293
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
288
294
|
ListUserProfilesPaginator,
|
|
289
295
|
ListWorkforcesPaginator,
|
|
290
296
|
ListWorkteamsPaginator,
|
|
@@ -328,6 +334,7 @@ __all__ = (
|
|
|
328
334
|
"ListAssociationsPaginator",
|
|
329
335
|
"ListAutoMLJobsPaginator",
|
|
330
336
|
"ListCandidatesForAutoMLJobPaginator",
|
|
337
|
+
"ListClusterEventsPaginator",
|
|
331
338
|
"ListClusterNodesPaginator",
|
|
332
339
|
"ListClusterSchedulerConfigsPaginator",
|
|
333
340
|
"ListClustersPaginator",
|
|
@@ -394,6 +401,7 @@ __all__ = (
|
|
|
394
401
|
"ListTransformJobsPaginator",
|
|
395
402
|
"ListTrialComponentsPaginator",
|
|
396
403
|
"ListTrialsPaginator",
|
|
404
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
397
405
|
"ListUserProfilesPaginator",
|
|
398
406
|
"ListWorkforcesPaginator",
|
|
399
407
|
"ListWorkteamsPaginator",
|
|
@@ -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,
|
|
@@ -94,6 +95,7 @@ Usage::
|
|
|
94
95
|
ListTransformJobsPaginator,
|
|
95
96
|
ListTrialComponentsPaginator,
|
|
96
97
|
ListTrialsPaginator,
|
|
98
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
97
99
|
ListUserProfilesPaginator,
|
|
98
100
|
ListWorkforcesPaginator,
|
|
99
101
|
ListWorkteamsPaginator,
|
|
@@ -134,6 +136,7 @@ Usage::
|
|
|
134
136
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
135
137
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
136
138
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
139
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
137
140
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
138
141
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
139
142
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -200,6 +203,7 @@ Usage::
|
|
|
200
203
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
201
204
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
202
205
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
206
|
+
list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = client.get_paginator("list_ultra_servers_by_reserved_capacity")
|
|
203
207
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
204
208
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
205
209
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -219,6 +223,7 @@ from .paginator import (
|
|
|
219
223
|
ListAssociationsPaginator,
|
|
220
224
|
ListAutoMLJobsPaginator,
|
|
221
225
|
ListCandidatesForAutoMLJobPaginator,
|
|
226
|
+
ListClusterEventsPaginator,
|
|
222
227
|
ListClusterNodesPaginator,
|
|
223
228
|
ListClusterSchedulerConfigsPaginator,
|
|
224
229
|
ListClustersPaginator,
|
|
@@ -285,6 +290,7 @@ from .paginator import (
|
|
|
285
290
|
ListTransformJobsPaginator,
|
|
286
291
|
ListTrialComponentsPaginator,
|
|
287
292
|
ListTrialsPaginator,
|
|
293
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
288
294
|
ListUserProfilesPaginator,
|
|
289
295
|
ListWorkforcesPaginator,
|
|
290
296
|
ListWorkteamsPaginator,
|
|
@@ -327,6 +333,7 @@ __all__ = (
|
|
|
327
333
|
"ListAssociationsPaginator",
|
|
328
334
|
"ListAutoMLJobsPaginator",
|
|
329
335
|
"ListCandidatesForAutoMLJobPaginator",
|
|
336
|
+
"ListClusterEventsPaginator",
|
|
330
337
|
"ListClusterNodesPaginator",
|
|
331
338
|
"ListClusterSchedulerConfigsPaginator",
|
|
332
339
|
"ListClustersPaginator",
|
|
@@ -393,6 +400,7 @@ __all__ = (
|
|
|
393
400
|
"ListTransformJobsPaginator",
|
|
394
401
|
"ListTrialComponentsPaginator",
|
|
395
402
|
"ListTrialsPaginator",
|
|
403
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
396
404
|
"ListUserProfilesPaginator",
|
|
397
405
|
"ListWorkforcesPaginator",
|
|
398
406
|
"ListWorkteamsPaginator",
|
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.6\n"
|
|
16
|
+
"Version: 1.40.6\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.6\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,
|
|
@@ -102,6 +103,7 @@ from .paginator import (
|
|
|
102
103
|
ListTransformJobsPaginator,
|
|
103
104
|
ListTrialComponentsPaginator,
|
|
104
105
|
ListTrialsPaginator,
|
|
106
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
105
107
|
ListUserProfilesPaginator,
|
|
106
108
|
ListWorkforcesPaginator,
|
|
107
109
|
ListWorkteamsPaginator,
|
|
@@ -116,6 +118,8 @@ from .type_defs import (
|
|
|
116
118
|
AssociateTrialComponentResponseTypeDef,
|
|
117
119
|
AttachClusterNodeVolumeRequestTypeDef,
|
|
118
120
|
AttachClusterNodeVolumeResponseTypeDef,
|
|
121
|
+
BatchAddClusterNodesRequestTypeDef,
|
|
122
|
+
BatchAddClusterNodesResponseTypeDef,
|
|
119
123
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
120
124
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
121
125
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -332,6 +336,8 @@ from .type_defs import (
|
|
|
332
336
|
DescribeAutoMLJobResponseTypeDef,
|
|
333
337
|
DescribeAutoMLJobV2RequestTypeDef,
|
|
334
338
|
DescribeAutoMLJobV2ResponseTypeDef,
|
|
339
|
+
DescribeClusterEventRequestTypeDef,
|
|
340
|
+
DescribeClusterEventResponseTypeDef,
|
|
335
341
|
DescribeClusterNodeRequestTypeDef,
|
|
336
342
|
DescribeClusterNodeResponseTypeDef,
|
|
337
343
|
DescribeClusterRequestTypeDef,
|
|
@@ -430,6 +436,8 @@ from .type_defs import (
|
|
|
430
436
|
DescribeProcessingJobResponseTypeDef,
|
|
431
437
|
DescribeProjectInputTypeDef,
|
|
432
438
|
DescribeProjectOutputTypeDef,
|
|
439
|
+
DescribeReservedCapacityRequestTypeDef,
|
|
440
|
+
DescribeReservedCapacityResponseTypeDef,
|
|
433
441
|
DescribeSpaceRequestTypeDef,
|
|
434
442
|
DescribeSpaceResponseTypeDef,
|
|
435
443
|
DescribeStudioLifecycleConfigRequestTypeDef,
|
|
@@ -488,6 +496,8 @@ from .type_defs import (
|
|
|
488
496
|
ListAutoMLJobsResponseTypeDef,
|
|
489
497
|
ListCandidatesForAutoMLJobRequestTypeDef,
|
|
490
498
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
499
|
+
ListClusterEventsRequestTypeDef,
|
|
500
|
+
ListClusterEventsResponseTypeDef,
|
|
491
501
|
ListClusterNodesRequestTypeDef,
|
|
492
502
|
ListClusterNodesResponseTypeDef,
|
|
493
503
|
ListClusterSchedulerConfigsRequestTypeDef,
|
|
@@ -628,6 +638,8 @@ from .type_defs import (
|
|
|
628
638
|
ListTrialComponentsResponseTypeDef,
|
|
629
639
|
ListTrialsRequestTypeDef,
|
|
630
640
|
ListTrialsResponseTypeDef,
|
|
641
|
+
ListUltraServersByReservedCapacityRequestTypeDef,
|
|
642
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
631
643
|
ListUserProfilesRequestTypeDef,
|
|
632
644
|
ListUserProfilesResponseTypeDef,
|
|
633
645
|
ListWorkforcesRequestTypeDef,
|
|
@@ -872,12 +884,23 @@ class SageMakerClient(BaseClient):
|
|
|
872
884
|
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
873
885
|
"""
|
|
874
886
|
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
875
|
-
EKS
|
|
887
|
+
EKS orchestrated HyperPod cluster.
|
|
876
888
|
|
|
877
889
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
878
890
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
879
891
|
"""
|
|
880
892
|
|
|
893
|
+
def batch_add_cluster_nodes(
|
|
894
|
+
self, **kwargs: Unpack[BatchAddClusterNodesRequestTypeDef]
|
|
895
|
+
) -> BatchAddClusterNodesResponseTypeDef:
|
|
896
|
+
"""
|
|
897
|
+
Adds nodes to a HyperPod cluster by incrementing the target count for one or
|
|
898
|
+
more instance groups.
|
|
899
|
+
|
|
900
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_add_cluster_nodes.html)
|
|
901
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_add_cluster_nodes)
|
|
902
|
+
"""
|
|
903
|
+
|
|
881
904
|
def batch_delete_cluster_nodes(
|
|
882
905
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
883
906
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2204,6 +2227,17 @@ class SageMakerClient(BaseClient):
|
|
|
2204
2227
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2205
2228
|
"""
|
|
2206
2229
|
|
|
2230
|
+
def describe_cluster_event(
|
|
2231
|
+
self, **kwargs: Unpack[DescribeClusterEventRequestTypeDef]
|
|
2232
|
+
) -> DescribeClusterEventResponseTypeDef:
|
|
2233
|
+
"""
|
|
2234
|
+
Retrieves detailed information about a specific event for a given HyperPod
|
|
2235
|
+
cluster.
|
|
2236
|
+
|
|
2237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_event.html)
|
|
2238
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_event)
|
|
2239
|
+
"""
|
|
2240
|
+
|
|
2207
2241
|
def describe_cluster_node(
|
|
2208
2242
|
self, **kwargs: Unpack[DescribeClusterNodeRequestTypeDef]
|
|
2209
2243
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
@@ -2690,6 +2724,16 @@ class SageMakerClient(BaseClient):
|
|
|
2690
2724
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_project)
|
|
2691
2725
|
"""
|
|
2692
2726
|
|
|
2727
|
+
def describe_reserved_capacity(
|
|
2728
|
+
self, **kwargs: Unpack[DescribeReservedCapacityRequestTypeDef]
|
|
2729
|
+
) -> DescribeReservedCapacityResponseTypeDef:
|
|
2730
|
+
"""
|
|
2731
|
+
Retrieves details about a reserved capacity.
|
|
2732
|
+
|
|
2733
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_reserved_capacity.html)
|
|
2734
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_reserved_capacity)
|
|
2735
|
+
"""
|
|
2736
|
+
|
|
2693
2737
|
def describe_space(
|
|
2694
2738
|
self, **kwargs: Unpack[DescribeSpaceRequestTypeDef]
|
|
2695
2739
|
) -> DescribeSpaceResponseTypeDef:
|
|
@@ -2807,7 +2851,7 @@ class SageMakerClient(BaseClient):
|
|
|
2807
2851
|
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2808
2852
|
"""
|
|
2809
2853
|
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2810
|
-
your EKS
|
|
2854
|
+
your EKS orchestrated SageMaker HyperPod cluster.
|
|
2811
2855
|
|
|
2812
2856
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2813
2857
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
@@ -2997,6 +3041,16 @@ class SageMakerClient(BaseClient):
|
|
|
2997
3041
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2998
3042
|
"""
|
|
2999
3043
|
|
|
3044
|
+
def list_cluster_events(
|
|
3045
|
+
self, **kwargs: Unpack[ListClusterEventsRequestTypeDef]
|
|
3046
|
+
) -> ListClusterEventsResponseTypeDef:
|
|
3047
|
+
"""
|
|
3048
|
+
Retrieves a list of event summaries for a specified HyperPod cluster.
|
|
3049
|
+
|
|
3050
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_events.html)
|
|
3051
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_events)
|
|
3052
|
+
"""
|
|
3053
|
+
|
|
3000
3054
|
def list_cluster_nodes(
|
|
3001
3055
|
self, **kwargs: Unpack[ListClusterNodesRequestTypeDef]
|
|
3002
3056
|
) -> ListClusterNodesResponseTypeDef:
|
|
@@ -3698,6 +3752,16 @@ class SageMakerClient(BaseClient):
|
|
|
3698
3752
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_trials)
|
|
3699
3753
|
"""
|
|
3700
3754
|
|
|
3755
|
+
def list_ultra_servers_by_reserved_capacity(
|
|
3756
|
+
self, **kwargs: Unpack[ListUltraServersByReservedCapacityRequestTypeDef]
|
|
3757
|
+
) -> ListUltraServersByReservedCapacityResponseTypeDef:
|
|
3758
|
+
"""
|
|
3759
|
+
Lists all UltraServers that are part of a specified reserved capacity.
|
|
3760
|
+
|
|
3761
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_ultra_servers_by_reserved_capacity.html)
|
|
3762
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_ultra_servers_by_reserved_capacity)
|
|
3763
|
+
"""
|
|
3764
|
+
|
|
3701
3765
|
def list_user_profiles(
|
|
3702
3766
|
self, **kwargs: Unpack[ListUserProfilesRequestTypeDef]
|
|
3703
3767
|
) -> ListUserProfilesResponseTypeDef:
|
|
@@ -4611,6 +4675,17 @@ class SageMakerClient(BaseClient):
|
|
|
4611
4675
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4612
4676
|
"""
|
|
4613
4677
|
|
|
4678
|
+
@overload # type: ignore[override]
|
|
4679
|
+
def get_paginator( # type: ignore[override]
|
|
4680
|
+
self, operation_name: Literal["list_cluster_events"]
|
|
4681
|
+
) -> ListClusterEventsPaginator:
|
|
4682
|
+
"""
|
|
4683
|
+
Create a paginator for an operation.
|
|
4684
|
+
|
|
4685
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4686
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4687
|
+
"""
|
|
4688
|
+
|
|
4614
4689
|
@overload # type: ignore[override]
|
|
4615
4690
|
def get_paginator( # type: ignore[override]
|
|
4616
4691
|
self, operation_name: Literal["list_cluster_nodes"]
|
|
@@ -5337,6 +5412,17 @@ class SageMakerClient(BaseClient):
|
|
|
5337
5412
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5338
5413
|
"""
|
|
5339
5414
|
|
|
5415
|
+
@overload # type: ignore[override]
|
|
5416
|
+
def get_paginator( # type: ignore[override]
|
|
5417
|
+
self, operation_name: Literal["list_ultra_servers_by_reserved_capacity"]
|
|
5418
|
+
) -> ListUltraServersByReservedCapacityPaginator:
|
|
5419
|
+
"""
|
|
5420
|
+
Create a paginator for an operation.
|
|
5421
|
+
|
|
5422
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5423
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5424
|
+
"""
|
|
5425
|
+
|
|
5340
5426
|
@overload # type: ignore[override]
|
|
5341
5427
|
def get_paginator( # type: ignore[override]
|
|
5342
5428
|
self, operation_name: Literal["list_user_profiles"]
|
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,
|
|
@@ -102,6 +103,7 @@ from .paginator import (
|
|
|
102
103
|
ListTransformJobsPaginator,
|
|
103
104
|
ListTrialComponentsPaginator,
|
|
104
105
|
ListTrialsPaginator,
|
|
106
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
105
107
|
ListUserProfilesPaginator,
|
|
106
108
|
ListWorkforcesPaginator,
|
|
107
109
|
ListWorkteamsPaginator,
|
|
@@ -116,6 +118,8 @@ from .type_defs import (
|
|
|
116
118
|
AssociateTrialComponentResponseTypeDef,
|
|
117
119
|
AttachClusterNodeVolumeRequestTypeDef,
|
|
118
120
|
AttachClusterNodeVolumeResponseTypeDef,
|
|
121
|
+
BatchAddClusterNodesRequestTypeDef,
|
|
122
|
+
BatchAddClusterNodesResponseTypeDef,
|
|
119
123
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
120
124
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
121
125
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -332,6 +336,8 @@ from .type_defs import (
|
|
|
332
336
|
DescribeAutoMLJobResponseTypeDef,
|
|
333
337
|
DescribeAutoMLJobV2RequestTypeDef,
|
|
334
338
|
DescribeAutoMLJobV2ResponseTypeDef,
|
|
339
|
+
DescribeClusterEventRequestTypeDef,
|
|
340
|
+
DescribeClusterEventResponseTypeDef,
|
|
335
341
|
DescribeClusterNodeRequestTypeDef,
|
|
336
342
|
DescribeClusterNodeResponseTypeDef,
|
|
337
343
|
DescribeClusterRequestTypeDef,
|
|
@@ -430,6 +436,8 @@ from .type_defs import (
|
|
|
430
436
|
DescribeProcessingJobResponseTypeDef,
|
|
431
437
|
DescribeProjectInputTypeDef,
|
|
432
438
|
DescribeProjectOutputTypeDef,
|
|
439
|
+
DescribeReservedCapacityRequestTypeDef,
|
|
440
|
+
DescribeReservedCapacityResponseTypeDef,
|
|
433
441
|
DescribeSpaceRequestTypeDef,
|
|
434
442
|
DescribeSpaceResponseTypeDef,
|
|
435
443
|
DescribeStudioLifecycleConfigRequestTypeDef,
|
|
@@ -488,6 +496,8 @@ from .type_defs import (
|
|
|
488
496
|
ListAutoMLJobsResponseTypeDef,
|
|
489
497
|
ListCandidatesForAutoMLJobRequestTypeDef,
|
|
490
498
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
499
|
+
ListClusterEventsRequestTypeDef,
|
|
500
|
+
ListClusterEventsResponseTypeDef,
|
|
491
501
|
ListClusterNodesRequestTypeDef,
|
|
492
502
|
ListClusterNodesResponseTypeDef,
|
|
493
503
|
ListClusterSchedulerConfigsRequestTypeDef,
|
|
@@ -628,6 +638,8 @@ from .type_defs import (
|
|
|
628
638
|
ListTrialComponentsResponseTypeDef,
|
|
629
639
|
ListTrialsRequestTypeDef,
|
|
630
640
|
ListTrialsResponseTypeDef,
|
|
641
|
+
ListUltraServersByReservedCapacityRequestTypeDef,
|
|
642
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
631
643
|
ListUserProfilesRequestTypeDef,
|
|
632
644
|
ListUserProfilesResponseTypeDef,
|
|
633
645
|
ListWorkforcesRequestTypeDef,
|
|
@@ -869,12 +881,23 @@ class SageMakerClient(BaseClient):
|
|
|
869
881
|
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
870
882
|
"""
|
|
871
883
|
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
872
|
-
EKS
|
|
884
|
+
EKS orchestrated HyperPod cluster.
|
|
873
885
|
|
|
874
886
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
875
887
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
876
888
|
"""
|
|
877
889
|
|
|
890
|
+
def batch_add_cluster_nodes(
|
|
891
|
+
self, **kwargs: Unpack[BatchAddClusterNodesRequestTypeDef]
|
|
892
|
+
) -> BatchAddClusterNodesResponseTypeDef:
|
|
893
|
+
"""
|
|
894
|
+
Adds nodes to a HyperPod cluster by incrementing the target count for one or
|
|
895
|
+
more instance groups.
|
|
896
|
+
|
|
897
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_add_cluster_nodes.html)
|
|
898
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_add_cluster_nodes)
|
|
899
|
+
"""
|
|
900
|
+
|
|
878
901
|
def batch_delete_cluster_nodes(
|
|
879
902
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
880
903
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2201,6 +2224,17 @@ class SageMakerClient(BaseClient):
|
|
|
2201
2224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2202
2225
|
"""
|
|
2203
2226
|
|
|
2227
|
+
def describe_cluster_event(
|
|
2228
|
+
self, **kwargs: Unpack[DescribeClusterEventRequestTypeDef]
|
|
2229
|
+
) -> DescribeClusterEventResponseTypeDef:
|
|
2230
|
+
"""
|
|
2231
|
+
Retrieves detailed information about a specific event for a given HyperPod
|
|
2232
|
+
cluster.
|
|
2233
|
+
|
|
2234
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_event.html)
|
|
2235
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_event)
|
|
2236
|
+
"""
|
|
2237
|
+
|
|
2204
2238
|
def describe_cluster_node(
|
|
2205
2239
|
self, **kwargs: Unpack[DescribeClusterNodeRequestTypeDef]
|
|
2206
2240
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
@@ -2687,6 +2721,16 @@ class SageMakerClient(BaseClient):
|
|
|
2687
2721
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_project)
|
|
2688
2722
|
"""
|
|
2689
2723
|
|
|
2724
|
+
def describe_reserved_capacity(
|
|
2725
|
+
self, **kwargs: Unpack[DescribeReservedCapacityRequestTypeDef]
|
|
2726
|
+
) -> DescribeReservedCapacityResponseTypeDef:
|
|
2727
|
+
"""
|
|
2728
|
+
Retrieves details about a reserved capacity.
|
|
2729
|
+
|
|
2730
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_reserved_capacity.html)
|
|
2731
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_reserved_capacity)
|
|
2732
|
+
"""
|
|
2733
|
+
|
|
2690
2734
|
def describe_space(
|
|
2691
2735
|
self, **kwargs: Unpack[DescribeSpaceRequestTypeDef]
|
|
2692
2736
|
) -> DescribeSpaceResponseTypeDef:
|
|
@@ -2804,7 +2848,7 @@ class SageMakerClient(BaseClient):
|
|
|
2804
2848
|
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2805
2849
|
"""
|
|
2806
2850
|
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2807
|
-
your EKS
|
|
2851
|
+
your EKS orchestrated SageMaker HyperPod cluster.
|
|
2808
2852
|
|
|
2809
2853
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2810
2854
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
@@ -2994,6 +3038,16 @@ class SageMakerClient(BaseClient):
|
|
|
2994
3038
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2995
3039
|
"""
|
|
2996
3040
|
|
|
3041
|
+
def list_cluster_events(
|
|
3042
|
+
self, **kwargs: Unpack[ListClusterEventsRequestTypeDef]
|
|
3043
|
+
) -> ListClusterEventsResponseTypeDef:
|
|
3044
|
+
"""
|
|
3045
|
+
Retrieves a list of event summaries for a specified HyperPod cluster.
|
|
3046
|
+
|
|
3047
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_events.html)
|
|
3048
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_events)
|
|
3049
|
+
"""
|
|
3050
|
+
|
|
2997
3051
|
def list_cluster_nodes(
|
|
2998
3052
|
self, **kwargs: Unpack[ListClusterNodesRequestTypeDef]
|
|
2999
3053
|
) -> ListClusterNodesResponseTypeDef:
|
|
@@ -3695,6 +3749,16 @@ class SageMakerClient(BaseClient):
|
|
|
3695
3749
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_trials)
|
|
3696
3750
|
"""
|
|
3697
3751
|
|
|
3752
|
+
def list_ultra_servers_by_reserved_capacity(
|
|
3753
|
+
self, **kwargs: Unpack[ListUltraServersByReservedCapacityRequestTypeDef]
|
|
3754
|
+
) -> ListUltraServersByReservedCapacityResponseTypeDef:
|
|
3755
|
+
"""
|
|
3756
|
+
Lists all UltraServers that are part of a specified reserved capacity.
|
|
3757
|
+
|
|
3758
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_ultra_servers_by_reserved_capacity.html)
|
|
3759
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_ultra_servers_by_reserved_capacity)
|
|
3760
|
+
"""
|
|
3761
|
+
|
|
3698
3762
|
def list_user_profiles(
|
|
3699
3763
|
self, **kwargs: Unpack[ListUserProfilesRequestTypeDef]
|
|
3700
3764
|
) -> ListUserProfilesResponseTypeDef:
|
|
@@ -4608,6 +4672,17 @@ class SageMakerClient(BaseClient):
|
|
|
4608
4672
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4609
4673
|
"""
|
|
4610
4674
|
|
|
4675
|
+
@overload # type: ignore[override]
|
|
4676
|
+
def get_paginator( # type: ignore[override]
|
|
4677
|
+
self, operation_name: Literal["list_cluster_events"]
|
|
4678
|
+
) -> ListClusterEventsPaginator:
|
|
4679
|
+
"""
|
|
4680
|
+
Create a paginator for an operation.
|
|
4681
|
+
|
|
4682
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4683
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4684
|
+
"""
|
|
4685
|
+
|
|
4611
4686
|
@overload # type: ignore[override]
|
|
4612
4687
|
def get_paginator( # type: ignore[override]
|
|
4613
4688
|
self, operation_name: Literal["list_cluster_nodes"]
|
|
@@ -5334,6 +5409,17 @@ class SageMakerClient(BaseClient):
|
|
|
5334
5409
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5335
5410
|
"""
|
|
5336
5411
|
|
|
5412
|
+
@overload # type: ignore[override]
|
|
5413
|
+
def get_paginator( # type: ignore[override]
|
|
5414
|
+
self, operation_name: Literal["list_ultra_servers_by_reserved_capacity"]
|
|
5415
|
+
) -> ListUltraServersByReservedCapacityPaginator:
|
|
5416
|
+
"""
|
|
5417
|
+
Create a paginator for an operation.
|
|
5418
|
+
|
|
5419
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5420
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5421
|
+
"""
|
|
5422
|
+
|
|
5337
5423
|
@overload # type: ignore[override]
|
|
5338
5424
|
def get_paginator( # type: ignore[override]
|
|
5339
5425
|
self, operation_name: Literal["list_user_profiles"]
|