mypy-boto3-sagemaker 1.40.3__py3-none-any.whl → 1.40.8__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 +38 -2
- mypy_boto3_sagemaker/client.pyi +38 -2
- mypy_boto3_sagemaker/literals.py +9 -0
- mypy_boto3_sagemaker/literals.pyi +9 -0
- mypy_boto3_sagemaker/paginator.py +28 -0
- mypy_boto3_sagemaker/paginator.pyi +25 -0
- mypy_boto3_sagemaker/type_defs.py +139 -17
- mypy_boto3_sagemaker/type_defs.pyi +127 -17
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.8.dist-info}/METADATA +8 -4
- mypy_boto3_sagemaker-1.40.8.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.3.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.8.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.8.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.8.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__init__.py
CHANGED
|
@@ -95,6 +95,7 @@ Usage::
|
|
|
95
95
|
ListTransformJobsPaginator,
|
|
96
96
|
ListTrialComponentsPaginator,
|
|
97
97
|
ListTrialsPaginator,
|
|
98
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
98
99
|
ListUserProfilesPaginator,
|
|
99
100
|
ListWorkforcesPaginator,
|
|
100
101
|
ListWorkteamsPaginator,
|
|
@@ -202,6 +203,7 @@ Usage::
|
|
|
202
203
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
203
204
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
204
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")
|
|
205
207
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
206
208
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
207
209
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -288,6 +290,7 @@ from .paginator import (
|
|
|
288
290
|
ListTransformJobsPaginator,
|
|
289
291
|
ListTrialComponentsPaginator,
|
|
290
292
|
ListTrialsPaginator,
|
|
293
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
291
294
|
ListUserProfilesPaginator,
|
|
292
295
|
ListWorkforcesPaginator,
|
|
293
296
|
ListWorkteamsPaginator,
|
|
@@ -398,6 +401,7 @@ __all__ = (
|
|
|
398
401
|
"ListTransformJobsPaginator",
|
|
399
402
|
"ListTrialComponentsPaginator",
|
|
400
403
|
"ListTrialsPaginator",
|
|
404
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
401
405
|
"ListUserProfilesPaginator",
|
|
402
406
|
"ListWorkforcesPaginator",
|
|
403
407
|
"ListWorkteamsPaginator",
|
|
@@ -95,6 +95,7 @@ Usage::
|
|
|
95
95
|
ListTransformJobsPaginator,
|
|
96
96
|
ListTrialComponentsPaginator,
|
|
97
97
|
ListTrialsPaginator,
|
|
98
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
98
99
|
ListUserProfilesPaginator,
|
|
99
100
|
ListWorkforcesPaginator,
|
|
100
101
|
ListWorkteamsPaginator,
|
|
@@ -202,6 +203,7 @@ Usage::
|
|
|
202
203
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
203
204
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
204
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")
|
|
205
207
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
206
208
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
207
209
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -288,6 +290,7 @@ from .paginator import (
|
|
|
288
290
|
ListTransformJobsPaginator,
|
|
289
291
|
ListTrialComponentsPaginator,
|
|
290
292
|
ListTrialsPaginator,
|
|
293
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
291
294
|
ListUserProfilesPaginator,
|
|
292
295
|
ListWorkforcesPaginator,
|
|
293
296
|
ListWorkteamsPaginator,
|
|
@@ -397,6 +400,7 @@ __all__ = (
|
|
|
397
400
|
"ListTransformJobsPaginator",
|
|
398
401
|
"ListTrialComponentsPaginator",
|
|
399
402
|
"ListTrialsPaginator",
|
|
403
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
400
404
|
"ListUserProfilesPaginator",
|
|
401
405
|
"ListWorkforcesPaginator",
|
|
402
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.8\n"
|
|
16
|
+
"Version: 1.40.8\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.8\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -103,6 +103,7 @@ from .paginator import (
|
|
|
103
103
|
ListTransformJobsPaginator,
|
|
104
104
|
ListTrialComponentsPaginator,
|
|
105
105
|
ListTrialsPaginator,
|
|
106
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
106
107
|
ListUserProfilesPaginator,
|
|
107
108
|
ListWorkforcesPaginator,
|
|
108
109
|
ListWorkteamsPaginator,
|
|
@@ -435,6 +436,8 @@ from .type_defs import (
|
|
|
435
436
|
DescribeProcessingJobResponseTypeDef,
|
|
436
437
|
DescribeProjectInputTypeDef,
|
|
437
438
|
DescribeProjectOutputTypeDef,
|
|
439
|
+
DescribeReservedCapacityRequestTypeDef,
|
|
440
|
+
DescribeReservedCapacityResponseTypeDef,
|
|
438
441
|
DescribeSpaceRequestTypeDef,
|
|
439
442
|
DescribeSpaceResponseTypeDef,
|
|
440
443
|
DescribeStudioLifecycleConfigRequestTypeDef,
|
|
@@ -635,6 +638,8 @@ from .type_defs import (
|
|
|
635
638
|
ListTrialComponentsResponseTypeDef,
|
|
636
639
|
ListTrialsRequestTypeDef,
|
|
637
640
|
ListTrialsResponseTypeDef,
|
|
641
|
+
ListUltraServersByReservedCapacityRequestTypeDef,
|
|
642
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
638
643
|
ListUserProfilesRequestTypeDef,
|
|
639
644
|
ListUserProfilesResponseTypeDef,
|
|
640
645
|
ListWorkforcesRequestTypeDef,
|
|
@@ -879,7 +884,7 @@ class SageMakerClient(BaseClient):
|
|
|
879
884
|
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
880
885
|
"""
|
|
881
886
|
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
882
|
-
EKS
|
|
887
|
+
EKS orchestrated HyperPod cluster.
|
|
883
888
|
|
|
884
889
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
885
890
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
@@ -2719,6 +2724,16 @@ class SageMakerClient(BaseClient):
|
|
|
2719
2724
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_project)
|
|
2720
2725
|
"""
|
|
2721
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
|
+
|
|
2722
2737
|
def describe_space(
|
|
2723
2738
|
self, **kwargs: Unpack[DescribeSpaceRequestTypeDef]
|
|
2724
2739
|
) -> DescribeSpaceResponseTypeDef:
|
|
@@ -2836,7 +2851,7 @@ class SageMakerClient(BaseClient):
|
|
|
2836
2851
|
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2837
2852
|
"""
|
|
2838
2853
|
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2839
|
-
your EKS
|
|
2854
|
+
your EKS orchestrated SageMaker HyperPod cluster.
|
|
2840
2855
|
|
|
2841
2856
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2842
2857
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
@@ -3737,6 +3752,16 @@ class SageMakerClient(BaseClient):
|
|
|
3737
3752
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_trials)
|
|
3738
3753
|
"""
|
|
3739
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
|
+
|
|
3740
3765
|
def list_user_profiles(
|
|
3741
3766
|
self, **kwargs: Unpack[ListUserProfilesRequestTypeDef]
|
|
3742
3767
|
) -> ListUserProfilesResponseTypeDef:
|
|
@@ -5387,6 +5412,17 @@ class SageMakerClient(BaseClient):
|
|
|
5387
5412
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5388
5413
|
"""
|
|
5389
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
|
+
|
|
5390
5426
|
@overload # type: ignore[override]
|
|
5391
5427
|
def get_paginator( # type: ignore[override]
|
|
5392
5428
|
self, operation_name: Literal["list_user_profiles"]
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -103,6 +103,7 @@ from .paginator import (
|
|
|
103
103
|
ListTransformJobsPaginator,
|
|
104
104
|
ListTrialComponentsPaginator,
|
|
105
105
|
ListTrialsPaginator,
|
|
106
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
106
107
|
ListUserProfilesPaginator,
|
|
107
108
|
ListWorkforcesPaginator,
|
|
108
109
|
ListWorkteamsPaginator,
|
|
@@ -435,6 +436,8 @@ from .type_defs import (
|
|
|
435
436
|
DescribeProcessingJobResponseTypeDef,
|
|
436
437
|
DescribeProjectInputTypeDef,
|
|
437
438
|
DescribeProjectOutputTypeDef,
|
|
439
|
+
DescribeReservedCapacityRequestTypeDef,
|
|
440
|
+
DescribeReservedCapacityResponseTypeDef,
|
|
438
441
|
DescribeSpaceRequestTypeDef,
|
|
439
442
|
DescribeSpaceResponseTypeDef,
|
|
440
443
|
DescribeStudioLifecycleConfigRequestTypeDef,
|
|
@@ -635,6 +638,8 @@ from .type_defs import (
|
|
|
635
638
|
ListTrialComponentsResponseTypeDef,
|
|
636
639
|
ListTrialsRequestTypeDef,
|
|
637
640
|
ListTrialsResponseTypeDef,
|
|
641
|
+
ListUltraServersByReservedCapacityRequestTypeDef,
|
|
642
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
638
643
|
ListUserProfilesRequestTypeDef,
|
|
639
644
|
ListUserProfilesResponseTypeDef,
|
|
640
645
|
ListWorkforcesRequestTypeDef,
|
|
@@ -876,7 +881,7 @@ class SageMakerClient(BaseClient):
|
|
|
876
881
|
) -> AttachClusterNodeVolumeResponseTypeDef:
|
|
877
882
|
"""
|
|
878
883
|
Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node in your
|
|
879
|
-
EKS
|
|
884
|
+
EKS orchestrated HyperPod cluster.
|
|
880
885
|
|
|
881
886
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/attach_cluster_node_volume.html)
|
|
882
887
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
@@ -2716,6 +2721,16 @@ class SageMakerClient(BaseClient):
|
|
|
2716
2721
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_project)
|
|
2717
2722
|
"""
|
|
2718
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
|
+
|
|
2719
2734
|
def describe_space(
|
|
2720
2735
|
self, **kwargs: Unpack[DescribeSpaceRequestTypeDef]
|
|
2721
2736
|
) -> DescribeSpaceResponseTypeDef:
|
|
@@ -2833,7 +2848,7 @@ class SageMakerClient(BaseClient):
|
|
|
2833
2848
|
) -> DetachClusterNodeVolumeResponseTypeDef:
|
|
2834
2849
|
"""
|
|
2835
2850
|
Detaches your Amazon Elastic Block Store (Amazon EBS) volume from a node in
|
|
2836
|
-
your EKS
|
|
2851
|
+
your EKS orchestrated SageMaker HyperPod cluster.
|
|
2837
2852
|
|
|
2838
2853
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/detach_cluster_node_volume.html)
|
|
2839
2854
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#detach_cluster_node_volume)
|
|
@@ -3734,6 +3749,16 @@ class SageMakerClient(BaseClient):
|
|
|
3734
3749
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_trials)
|
|
3735
3750
|
"""
|
|
3736
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
|
+
|
|
3737
3762
|
def list_user_profiles(
|
|
3738
3763
|
self, **kwargs: Unpack[ListUserProfilesRequestTypeDef]
|
|
3739
3764
|
) -> ListUserProfilesResponseTypeDef:
|
|
@@ -5384,6 +5409,17 @@ class SageMakerClient(BaseClient):
|
|
|
5384
5409
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5385
5410
|
"""
|
|
5386
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
|
+
|
|
5387
5423
|
@overload # type: ignore[override]
|
|
5388
5424
|
def get_paginator( # type: ignore[override]
|
|
5389
5425
|
self, operation_name: Literal["list_user_profiles"]
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -252,6 +252,7 @@ __all__ = (
|
|
|
252
252
|
"ListTransformJobsPaginatorName",
|
|
253
253
|
"ListTrialComponentsPaginatorName",
|
|
254
254
|
"ListTrialsPaginatorName",
|
|
255
|
+
"ListUltraServersByReservedCapacityPaginatorName",
|
|
255
256
|
"ListUserProfilesPaginatorName",
|
|
256
257
|
"ListWorkforcesPaginatorName",
|
|
257
258
|
"ListWorkforcesSortByOptionsType",
|
|
@@ -346,6 +347,7 @@ __all__ = (
|
|
|
346
347
|
"RepositoryAccessModeType",
|
|
347
348
|
"ReservedCapacityInstanceTypeType",
|
|
348
349
|
"ReservedCapacityStatusType",
|
|
350
|
+
"ReservedCapacityTypeType",
|
|
349
351
|
"ResourceCatalogSortByType",
|
|
350
352
|
"ResourceCatalogSortOrderType",
|
|
351
353
|
"ResourceServiceName",
|
|
@@ -424,6 +426,7 @@ __all__ = (
|
|
|
424
426
|
"TransformJobStatusType",
|
|
425
427
|
"TrialComponentPrimaryStatusType",
|
|
426
428
|
"TtlDurationUnitType",
|
|
429
|
+
"UltraServerHealthStatusType",
|
|
427
430
|
"UserProfileSortKeyType",
|
|
428
431
|
"UserProfileStatusType",
|
|
429
432
|
"VariantPropertyTypeType",
|
|
@@ -1346,6 +1349,7 @@ ListTrainingPlansPaginatorName = Literal["list_training_plans"]
|
|
|
1346
1349
|
ListTransformJobsPaginatorName = Literal["list_transform_jobs"]
|
|
1347
1350
|
ListTrialComponentsPaginatorName = Literal["list_trial_components"]
|
|
1348
1351
|
ListTrialsPaginatorName = Literal["list_trials"]
|
|
1352
|
+
ListUltraServersByReservedCapacityPaginatorName = Literal["list_ultra_servers_by_reserved_capacity"]
|
|
1349
1353
|
ListUserProfilesPaginatorName = Literal["list_user_profiles"]
|
|
1350
1354
|
ListWorkforcesPaginatorName = Literal["list_workforces"]
|
|
1351
1355
|
ListWorkforcesSortByOptionsType = Literal["CreateDate", "Name"]
|
|
@@ -1944,10 +1948,12 @@ ReservedCapacityInstanceTypeType = Literal[
|
|
|
1944
1948
|
"ml.p5e.48xlarge",
|
|
1945
1949
|
"ml.p5en.48xlarge",
|
|
1946
1950
|
"ml.p6-b200.48xlarge",
|
|
1951
|
+
"ml.p6e-gb200.36xlarge",
|
|
1947
1952
|
"ml.trn1.32xlarge",
|
|
1948
1953
|
"ml.trn2.48xlarge",
|
|
1949
1954
|
]
|
|
1950
1955
|
ReservedCapacityStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1956
|
+
ReservedCapacityTypeType = Literal["Instance", "UltraServer"]
|
|
1951
1957
|
ResourceCatalogSortByType = Literal["CreationTime"]
|
|
1952
1958
|
ResourceCatalogSortOrderType = Literal["Ascending", "Descending"]
|
|
1953
1959
|
ResourceSharingStrategyType = Literal["DontLend", "Lend", "LendAndBorrow"]
|
|
@@ -2237,6 +2243,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
2237
2243
|
"ml.p5e.48xlarge",
|
|
2238
2244
|
"ml.p5en.48xlarge",
|
|
2239
2245
|
"ml.p6-b200.48xlarge",
|
|
2246
|
+
"ml.p6e-gb200.36xlarge",
|
|
2240
2247
|
"ml.r5.12xlarge",
|
|
2241
2248
|
"ml.r5.16xlarge",
|
|
2242
2249
|
"ml.r5.24xlarge",
|
|
@@ -2390,6 +2397,7 @@ TrialComponentPrimaryStatusType = Literal[
|
|
|
2390
2397
|
"Completed", "Failed", "InProgress", "Stopped", "Stopping"
|
|
2391
2398
|
]
|
|
2392
2399
|
TtlDurationUnitType = Literal["Days", "Hours", "Minutes", "Seconds", "Weeks"]
|
|
2400
|
+
UltraServerHealthStatusType = Literal["Impaired", "Insufficient-Data", "OK"]
|
|
2393
2401
|
UserProfileSortKeyType = Literal["CreationTime", "LastModifiedTime"]
|
|
2394
2402
|
UserProfileStatusType = Literal[
|
|
2395
2403
|
"Delete_Failed", "Deleting", "Failed", "InService", "Pending", "Update_Failed", "Updating"
|
|
@@ -2907,6 +2915,7 @@ PaginatorName = Literal[
|
|
|
2907
2915
|
"list_transform_jobs",
|
|
2908
2916
|
"list_trial_components",
|
|
2909
2917
|
"list_trials",
|
|
2918
|
+
"list_ultra_servers_by_reserved_capacity",
|
|
2910
2919
|
"list_user_profiles",
|
|
2911
2920
|
"list_workforces",
|
|
2912
2921
|
"list_workteams",
|
|
@@ -251,6 +251,7 @@ __all__ = (
|
|
|
251
251
|
"ListTransformJobsPaginatorName",
|
|
252
252
|
"ListTrialComponentsPaginatorName",
|
|
253
253
|
"ListTrialsPaginatorName",
|
|
254
|
+
"ListUltraServersByReservedCapacityPaginatorName",
|
|
254
255
|
"ListUserProfilesPaginatorName",
|
|
255
256
|
"ListWorkforcesPaginatorName",
|
|
256
257
|
"ListWorkforcesSortByOptionsType",
|
|
@@ -345,6 +346,7 @@ __all__ = (
|
|
|
345
346
|
"RepositoryAccessModeType",
|
|
346
347
|
"ReservedCapacityInstanceTypeType",
|
|
347
348
|
"ReservedCapacityStatusType",
|
|
349
|
+
"ReservedCapacityTypeType",
|
|
348
350
|
"ResourceCatalogSortByType",
|
|
349
351
|
"ResourceCatalogSortOrderType",
|
|
350
352
|
"ResourceServiceName",
|
|
@@ -423,6 +425,7 @@ __all__ = (
|
|
|
423
425
|
"TransformJobStatusType",
|
|
424
426
|
"TrialComponentPrimaryStatusType",
|
|
425
427
|
"TtlDurationUnitType",
|
|
428
|
+
"UltraServerHealthStatusType",
|
|
426
429
|
"UserProfileSortKeyType",
|
|
427
430
|
"UserProfileStatusType",
|
|
428
431
|
"VariantPropertyTypeType",
|
|
@@ -1344,6 +1347,7 @@ ListTrainingPlansPaginatorName = Literal["list_training_plans"]
|
|
|
1344
1347
|
ListTransformJobsPaginatorName = Literal["list_transform_jobs"]
|
|
1345
1348
|
ListTrialComponentsPaginatorName = Literal["list_trial_components"]
|
|
1346
1349
|
ListTrialsPaginatorName = Literal["list_trials"]
|
|
1350
|
+
ListUltraServersByReservedCapacityPaginatorName = Literal["list_ultra_servers_by_reserved_capacity"]
|
|
1347
1351
|
ListUserProfilesPaginatorName = Literal["list_user_profiles"]
|
|
1348
1352
|
ListWorkforcesPaginatorName = Literal["list_workforces"]
|
|
1349
1353
|
ListWorkforcesSortByOptionsType = Literal["CreateDate", "Name"]
|
|
@@ -1942,10 +1946,12 @@ ReservedCapacityInstanceTypeType = Literal[
|
|
|
1942
1946
|
"ml.p5e.48xlarge",
|
|
1943
1947
|
"ml.p5en.48xlarge",
|
|
1944
1948
|
"ml.p6-b200.48xlarge",
|
|
1949
|
+
"ml.p6e-gb200.36xlarge",
|
|
1945
1950
|
"ml.trn1.32xlarge",
|
|
1946
1951
|
"ml.trn2.48xlarge",
|
|
1947
1952
|
]
|
|
1948
1953
|
ReservedCapacityStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1954
|
+
ReservedCapacityTypeType = Literal["Instance", "UltraServer"]
|
|
1949
1955
|
ResourceCatalogSortByType = Literal["CreationTime"]
|
|
1950
1956
|
ResourceCatalogSortOrderType = Literal["Ascending", "Descending"]
|
|
1951
1957
|
ResourceSharingStrategyType = Literal["DontLend", "Lend", "LendAndBorrow"]
|
|
@@ -2235,6 +2241,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
2235
2241
|
"ml.p5e.48xlarge",
|
|
2236
2242
|
"ml.p5en.48xlarge",
|
|
2237
2243
|
"ml.p6-b200.48xlarge",
|
|
2244
|
+
"ml.p6e-gb200.36xlarge",
|
|
2238
2245
|
"ml.r5.12xlarge",
|
|
2239
2246
|
"ml.r5.16xlarge",
|
|
2240
2247
|
"ml.r5.24xlarge",
|
|
@@ -2388,6 +2395,7 @@ TrialComponentPrimaryStatusType = Literal[
|
|
|
2388
2395
|
"Completed", "Failed", "InProgress", "Stopped", "Stopping"
|
|
2389
2396
|
]
|
|
2390
2397
|
TtlDurationUnitType = Literal["Days", "Hours", "Minutes", "Seconds", "Weeks"]
|
|
2398
|
+
UltraServerHealthStatusType = Literal["Impaired", "Insufficient-Data", "OK"]
|
|
2391
2399
|
UserProfileSortKeyType = Literal["CreationTime", "LastModifiedTime"]
|
|
2392
2400
|
UserProfileStatusType = Literal[
|
|
2393
2401
|
"Delete_Failed", "Deleting", "Failed", "InService", "Pending", "Update_Failed", "Updating"
|
|
@@ -2905,6 +2913,7 @@ PaginatorName = Literal[
|
|
|
2905
2913
|
"list_transform_jobs",
|
|
2906
2914
|
"list_trial_components",
|
|
2907
2915
|
"list_trials",
|
|
2916
|
+
"list_ultra_servers_by_reserved_capacity",
|
|
2908
2917
|
"list_user_profiles",
|
|
2909
2918
|
"list_workforces",
|
|
2910
2919
|
"list_workteams",
|
|
@@ -89,6 +89,7 @@ Usage::
|
|
|
89
89
|
ListTransformJobsPaginator,
|
|
90
90
|
ListTrialComponentsPaginator,
|
|
91
91
|
ListTrialsPaginator,
|
|
92
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
92
93
|
ListUserProfilesPaginator,
|
|
93
94
|
ListWorkforcesPaginator,
|
|
94
95
|
ListWorkteamsPaginator,
|
|
@@ -175,6 +176,7 @@ Usage::
|
|
|
175
176
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
176
177
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
177
178
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
179
|
+
list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = client.get_paginator("list_ultra_servers_by_reserved_capacity")
|
|
178
180
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
179
181
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
180
182
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -344,6 +346,8 @@ from .type_defs import (
|
|
|
344
346
|
ListTrialComponentsResponseTypeDef,
|
|
345
347
|
ListTrialsRequestPaginateTypeDef,
|
|
346
348
|
ListTrialsResponseTypeDef,
|
|
349
|
+
ListUltraServersByReservedCapacityRequestPaginateTypeDef,
|
|
350
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
347
351
|
ListUserProfilesRequestPaginateTypeDef,
|
|
348
352
|
ListUserProfilesResponseTypeDef,
|
|
349
353
|
ListWorkforcesRequestPaginateTypeDef,
|
|
@@ -438,6 +442,7 @@ __all__ = (
|
|
|
438
442
|
"ListTransformJobsPaginator",
|
|
439
443
|
"ListTrialComponentsPaginator",
|
|
440
444
|
"ListTrialsPaginator",
|
|
445
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
441
446
|
"ListUserProfilesPaginator",
|
|
442
447
|
"ListWorkforcesPaginator",
|
|
443
448
|
"ListWorkteamsPaginator",
|
|
@@ -2096,6 +2101,29 @@ class ListTrialsPaginator(_ListTrialsPaginatorBase):
|
|
|
2096
2101
|
"""
|
|
2097
2102
|
|
|
2098
2103
|
|
|
2104
|
+
if TYPE_CHECKING:
|
|
2105
|
+
_ListUltraServersByReservedCapacityPaginatorBase = Paginator[
|
|
2106
|
+
ListUltraServersByReservedCapacityResponseTypeDef
|
|
2107
|
+
]
|
|
2108
|
+
else:
|
|
2109
|
+
_ListUltraServersByReservedCapacityPaginatorBase = Paginator # type: ignore[assignment]
|
|
2110
|
+
|
|
2111
|
+
|
|
2112
|
+
class ListUltraServersByReservedCapacityPaginator(_ListUltraServersByReservedCapacityPaginatorBase):
|
|
2113
|
+
"""
|
|
2114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity)
|
|
2115
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
|
|
2116
|
+
"""
|
|
2117
|
+
|
|
2118
|
+
def paginate( # type: ignore[override]
|
|
2119
|
+
self, **kwargs: Unpack[ListUltraServersByReservedCapacityRequestPaginateTypeDef]
|
|
2120
|
+
) -> PageIterator[ListUltraServersByReservedCapacityResponseTypeDef]:
|
|
2121
|
+
"""
|
|
2122
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity.paginate)
|
|
2123
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
|
|
2124
|
+
"""
|
|
2125
|
+
|
|
2126
|
+
|
|
2099
2127
|
if TYPE_CHECKING:
|
|
2100
2128
|
_ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
|
|
2101
2129
|
else:
|
|
@@ -89,6 +89,7 @@ Usage::
|
|
|
89
89
|
ListTransformJobsPaginator,
|
|
90
90
|
ListTrialComponentsPaginator,
|
|
91
91
|
ListTrialsPaginator,
|
|
92
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
92
93
|
ListUserProfilesPaginator,
|
|
93
94
|
ListWorkforcesPaginator,
|
|
94
95
|
ListWorkteamsPaginator,
|
|
@@ -175,6 +176,7 @@ Usage::
|
|
|
175
176
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
176
177
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
177
178
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
179
|
+
list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = client.get_paginator("list_ultra_servers_by_reserved_capacity")
|
|
178
180
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
179
181
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
180
182
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -344,6 +346,8 @@ from .type_defs import (
|
|
|
344
346
|
ListTrialComponentsResponseTypeDef,
|
|
345
347
|
ListTrialsRequestPaginateTypeDef,
|
|
346
348
|
ListTrialsResponseTypeDef,
|
|
349
|
+
ListUltraServersByReservedCapacityRequestPaginateTypeDef,
|
|
350
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
347
351
|
ListUserProfilesRequestPaginateTypeDef,
|
|
348
352
|
ListUserProfilesResponseTypeDef,
|
|
349
353
|
ListWorkforcesRequestPaginateTypeDef,
|
|
@@ -437,6 +441,7 @@ __all__ = (
|
|
|
437
441
|
"ListTransformJobsPaginator",
|
|
438
442
|
"ListTrialComponentsPaginator",
|
|
439
443
|
"ListTrialsPaginator",
|
|
444
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
440
445
|
"ListUserProfilesPaginator",
|
|
441
446
|
"ListWorkforcesPaginator",
|
|
442
447
|
"ListWorkteamsPaginator",
|
|
@@ -1863,6 +1868,26 @@ class ListTrialsPaginator(_ListTrialsPaginatorBase):
|
|
|
1863
1868
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
|
|
1864
1869
|
"""
|
|
1865
1870
|
|
|
1871
|
+
if TYPE_CHECKING:
|
|
1872
|
+
_ListUltraServersByReservedCapacityPaginatorBase = Paginator[
|
|
1873
|
+
ListUltraServersByReservedCapacityResponseTypeDef
|
|
1874
|
+
]
|
|
1875
|
+
else:
|
|
1876
|
+
_ListUltraServersByReservedCapacityPaginatorBase = Paginator # type: ignore[assignment]
|
|
1877
|
+
|
|
1878
|
+
class ListUltraServersByReservedCapacityPaginator(_ListUltraServersByReservedCapacityPaginatorBase):
|
|
1879
|
+
"""
|
|
1880
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity)
|
|
1881
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
|
|
1882
|
+
"""
|
|
1883
|
+
def paginate( # type: ignore[override]
|
|
1884
|
+
self, **kwargs: Unpack[ListUltraServersByReservedCapacityRequestPaginateTypeDef]
|
|
1885
|
+
) -> PageIterator[ListUltraServersByReservedCapacityResponseTypeDef]:
|
|
1886
|
+
"""
|
|
1887
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity.paginate)
|
|
1888
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
|
|
1889
|
+
"""
|
|
1890
|
+
|
|
1866
1891
|
if TYPE_CHECKING:
|
|
1867
1892
|
_ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
|
|
1868
1893
|
else:
|