mypy-boto3-sagemaker 1.40.3__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 +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 +130 -17
- mypy_boto3_sagemaker/type_defs.pyi +119 -17
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/METADATA +8 -4
- mypy_boto3_sagemaker-1.40.6.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.6.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.6.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.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
|
@@ -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:
|
|
@@ -236,6 +236,7 @@ from .literals import (
|
|
|
236
236
|
RepositoryAccessModeType,
|
|
237
237
|
ReservedCapacityInstanceTypeType,
|
|
238
238
|
ReservedCapacityStatusType,
|
|
239
|
+
ReservedCapacityTypeType,
|
|
239
240
|
ResourceCatalogSortOrderType,
|
|
240
241
|
ResourceSharingStrategyType,
|
|
241
242
|
ResourceTypeType,
|
|
@@ -306,6 +307,7 @@ from .literals import (
|
|
|
306
307
|
TransformJobStatusType,
|
|
307
308
|
TrialComponentPrimaryStatusType,
|
|
308
309
|
TtlDurationUnitType,
|
|
310
|
+
UltraServerHealthStatusType,
|
|
309
311
|
UserProfileSortKeyType,
|
|
310
312
|
UserProfileStatusType,
|
|
311
313
|
VariantPropertyTypeType,
|
|
@@ -897,6 +899,8 @@ __all__ = (
|
|
|
897
899
|
"DescribeProcessingJobResponseTypeDef",
|
|
898
900
|
"DescribeProjectInputTypeDef",
|
|
899
901
|
"DescribeProjectOutputTypeDef",
|
|
902
|
+
"DescribeReservedCapacityRequestTypeDef",
|
|
903
|
+
"DescribeReservedCapacityResponseTypeDef",
|
|
900
904
|
"DescribeSpaceRequestTypeDef",
|
|
901
905
|
"DescribeSpaceResponseTypeDef",
|
|
902
906
|
"DescribeStudioLifecycleConfigRequestTypeDef",
|
|
@@ -1120,6 +1124,9 @@ __all__ = (
|
|
|
1120
1124
|
"InstanceGroupTypeDef",
|
|
1121
1125
|
"InstanceMetadataServiceConfigurationTypeDef",
|
|
1122
1126
|
"InstanceMetadataTypeDef",
|
|
1127
|
+
"InstancePlacementConfigOutputTypeDef",
|
|
1128
|
+
"InstancePlacementConfigTypeDef",
|
|
1129
|
+
"InstancePlacementConfigUnionTypeDef",
|
|
1123
1130
|
"IntegerParameterRangeSpecificationTypeDef",
|
|
1124
1131
|
"IntegerParameterRangeTypeDef",
|
|
1125
1132
|
"JupyterLabAppImageConfigOutputTypeDef",
|
|
@@ -1395,6 +1402,9 @@ __all__ = (
|
|
|
1395
1402
|
"ListTrialsRequestPaginateTypeDef",
|
|
1396
1403
|
"ListTrialsRequestTypeDef",
|
|
1397
1404
|
"ListTrialsResponseTypeDef",
|
|
1405
|
+
"ListUltraServersByReservedCapacityRequestPaginateTypeDef",
|
|
1406
|
+
"ListUltraServersByReservedCapacityRequestTypeDef",
|
|
1407
|
+
"ListUltraServersByReservedCapacityResponseTypeDef",
|
|
1398
1408
|
"ListUserProfilesRequestPaginateTypeDef",
|
|
1399
1409
|
"ListUserProfilesRequestTypeDef",
|
|
1400
1410
|
"ListUserProfilesResponseTypeDef",
|
|
@@ -1599,6 +1609,7 @@ __all__ = (
|
|
|
1599
1609
|
"PipelineTypeDef",
|
|
1600
1610
|
"PipelineVersionSummaryTypeDef",
|
|
1601
1611
|
"PipelineVersionTypeDef",
|
|
1612
|
+
"PlacementSpecificationTypeDef",
|
|
1602
1613
|
"PredefinedMetricSpecificationTypeDef",
|
|
1603
1614
|
"PresignedUrlAccessConfigTypeDef",
|
|
1604
1615
|
"PriorityClassTypeDef",
|
|
@@ -1875,6 +1886,9 @@ __all__ = (
|
|
|
1875
1886
|
"UiConfigTypeDef",
|
|
1876
1887
|
"UiTemplateInfoTypeDef",
|
|
1877
1888
|
"UiTemplateTypeDef",
|
|
1889
|
+
"UltraServerInfoTypeDef",
|
|
1890
|
+
"UltraServerSummaryTypeDef",
|
|
1891
|
+
"UltraServerTypeDef",
|
|
1878
1892
|
"UnifiedStudioSettingsTypeDef",
|
|
1879
1893
|
"UpdateActionRequestTypeDef",
|
|
1880
1894
|
"UpdateActionResponseTypeDef",
|
|
@@ -2559,6 +2573,10 @@ class ClusterMetadataTypeDef(TypedDict):
|
|
|
2559
2573
|
SlrAccessEntry: NotRequired[str]
|
|
2560
2574
|
|
|
2561
2575
|
|
|
2576
|
+
class UltraServerInfoTypeDef(TypedDict):
|
|
2577
|
+
Id: NotRequired[str]
|
|
2578
|
+
|
|
2579
|
+
|
|
2562
2580
|
class ClusterOrchestratorEksConfigTypeDef(TypedDict):
|
|
2563
2581
|
ClusterArn: str
|
|
2564
2582
|
|
|
@@ -3866,6 +3884,18 @@ class ServiceCatalogProvisionedProductDetailsTypeDef(TypedDict):
|
|
|
3866
3884
|
ProvisionedProductStatusMessage: NotRequired[str]
|
|
3867
3885
|
|
|
3868
3886
|
|
|
3887
|
+
class DescribeReservedCapacityRequestTypeDef(TypedDict):
|
|
3888
|
+
ReservedCapacityArn: str
|
|
3889
|
+
|
|
3890
|
+
|
|
3891
|
+
class UltraServerSummaryTypeDef(TypedDict):
|
|
3892
|
+
UltraServerType: str
|
|
3893
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
3894
|
+
UltraServerCount: NotRequired[int]
|
|
3895
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
3896
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
3897
|
+
|
|
3898
|
+
|
|
3869
3899
|
class DescribeSpaceRequestTypeDef(TypedDict):
|
|
3870
3900
|
DomainId: str
|
|
3871
3901
|
SpaceName: str
|
|
@@ -3944,6 +3974,9 @@ class ReservedCapacitySummaryTypeDef(TypedDict):
|
|
|
3944
3974
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
3945
3975
|
TotalInstanceCount: int
|
|
3946
3976
|
Status: ReservedCapacityStatusType
|
|
3977
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
3978
|
+
UltraServerType: NotRequired[str]
|
|
3979
|
+
UltraServerCount: NotRequired[int]
|
|
3947
3980
|
AvailabilityZone: NotRequired[str]
|
|
3948
3981
|
DurationHours: NotRequired[int]
|
|
3949
3982
|
DurationMinutes: NotRequired[int]
|
|
@@ -4472,6 +4505,11 @@ class InstanceGroupTypeDef(TypedDict):
|
|
|
4472
4505
|
InstanceGroupName: str
|
|
4473
4506
|
|
|
4474
4507
|
|
|
4508
|
+
class PlacementSpecificationTypeDef(TypedDict):
|
|
4509
|
+
InstanceCount: int
|
|
4510
|
+
UltraServerId: NotRequired[str]
|
|
4511
|
+
|
|
4512
|
+
|
|
4475
4513
|
class IntegerParameterRangeSpecificationTypeDef(TypedDict):
|
|
4476
4514
|
MinValue: str
|
|
4477
4515
|
MaxValue: str
|
|
@@ -4834,6 +4872,26 @@ class TransformJobSummaryTypeDef(TypedDict):
|
|
|
4834
4872
|
FailureReason: NotRequired[str]
|
|
4835
4873
|
|
|
4836
4874
|
|
|
4875
|
+
class ListUltraServersByReservedCapacityRequestTypeDef(TypedDict):
|
|
4876
|
+
ReservedCapacityArn: str
|
|
4877
|
+
MaxResults: NotRequired[int]
|
|
4878
|
+
NextToken: NotRequired[str]
|
|
4879
|
+
|
|
4880
|
+
|
|
4881
|
+
class UltraServerTypeDef(TypedDict):
|
|
4882
|
+
UltraServerId: str
|
|
4883
|
+
UltraServerType: str
|
|
4884
|
+
AvailabilityZone: str
|
|
4885
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
4886
|
+
TotalInstanceCount: int
|
|
4887
|
+
ConfiguredSpareInstanceCount: NotRequired[int]
|
|
4888
|
+
AvailableInstanceCount: NotRequired[int]
|
|
4889
|
+
InUseInstanceCount: NotRequired[int]
|
|
4890
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
4891
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
4892
|
+
HealthStatus: NotRequired[UltraServerHealthStatusType]
|
|
4893
|
+
|
|
4894
|
+
|
|
4837
4895
|
class ListUserProfilesRequestTypeDef(TypedDict):
|
|
4838
4896
|
NextToken: NotRequired[str]
|
|
4839
4897
|
MaxResults: NotRequired[int]
|
|
@@ -5292,6 +5350,9 @@ class RenderingErrorTypeDef(TypedDict):
|
|
|
5292
5350
|
class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
5293
5351
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
5294
5352
|
InstanceCount: int
|
|
5353
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
5354
|
+
UltraServerType: NotRequired[str]
|
|
5355
|
+
UltraServerCount: NotRequired[int]
|
|
5295
5356
|
AvailabilityZone: NotRequired[str]
|
|
5296
5357
|
DurationHours: NotRequired[int]
|
|
5297
5358
|
DurationMinutes: NotRequired[int]
|
|
@@ -6433,6 +6494,7 @@ class CreateStudioLifecycleConfigRequestTypeDef(TypedDict):
|
|
|
6433
6494
|
class CreateTrainingPlanRequestTypeDef(TypedDict):
|
|
6434
6495
|
TrainingPlanName: str
|
|
6435
6496
|
TrainingPlanOfferingId: str
|
|
6497
|
+
SpareInstanceCountPerUltraServer: NotRequired[int]
|
|
6436
6498
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6437
6499
|
|
|
6438
6500
|
|
|
@@ -6912,6 +6974,7 @@ class ClusterNodeSummaryTypeDef(TypedDict):
|
|
|
6912
6974
|
InstanceStatus: ClusterInstanceStatusDetailsTypeDef
|
|
6913
6975
|
NodeLogicalId: NotRequired[str]
|
|
6914
6976
|
LastSoftwareUpdateTime: NotRequired[datetime]
|
|
6977
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
6915
6978
|
|
|
6916
6979
|
|
|
6917
6980
|
class ClusterOrchestratorTypeDef(TypedDict):
|
|
@@ -7215,6 +7278,11 @@ class ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef(TypedDict
|
|
|
7215
7278
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7216
7279
|
|
|
7217
7280
|
|
|
7281
|
+
class ListUltraServersByReservedCapacityRequestPaginateTypeDef(TypedDict):
|
|
7282
|
+
ReservedCapacityArn: str
|
|
7283
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7284
|
+
|
|
7285
|
+
|
|
7218
7286
|
class ListUserProfilesRequestPaginateTypeDef(TypedDict):
|
|
7219
7287
|
SortOrder: NotRequired[SortOrderType]
|
|
7220
7288
|
SortBy: NotRequired[UserProfileSortKeyType]
|
|
@@ -8884,6 +8952,8 @@ class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
|
|
|
8884
8952
|
TargetResources: Sequence[SageMakerResourceNameType]
|
|
8885
8953
|
InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
|
|
8886
8954
|
InstanceCount: NotRequired[int]
|
|
8955
|
+
UltraServerType: NotRequired[str]
|
|
8956
|
+
UltraServerCount: NotRequired[int]
|
|
8887
8957
|
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
8888
8958
|
EndTimeBefore: NotRequired[TimestampTypeDef]
|
|
8889
8959
|
|
|
@@ -9244,6 +9314,23 @@ DescribePartnerAppResponseTypeDef = TypedDict(
|
|
|
9244
9314
|
)
|
|
9245
9315
|
|
|
9246
9316
|
|
|
9317
|
+
class DescribeReservedCapacityResponseTypeDef(TypedDict):
|
|
9318
|
+
ReservedCapacityArn: str
|
|
9319
|
+
ReservedCapacityType: ReservedCapacityTypeType
|
|
9320
|
+
Status: ReservedCapacityStatusType
|
|
9321
|
+
AvailabilityZone: str
|
|
9322
|
+
DurationHours: int
|
|
9323
|
+
DurationMinutes: int
|
|
9324
|
+
StartTime: datetime
|
|
9325
|
+
EndTime: datetime
|
|
9326
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
9327
|
+
TotalInstanceCount: int
|
|
9328
|
+
AvailableInstanceCount: int
|
|
9329
|
+
InUseInstanceCount: int
|
|
9330
|
+
UltraServerSummary: UltraServerSummaryTypeDef
|
|
9331
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9332
|
+
|
|
9333
|
+
|
|
9247
9334
|
class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
9248
9335
|
SubscribedWorkteam: SubscribedWorkteamTypeDef
|
|
9249
9336
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9281,6 +9368,9 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
|
9281
9368
|
TotalInstanceCount: int
|
|
9282
9369
|
AvailableInstanceCount: int
|
|
9283
9370
|
InUseInstanceCount: int
|
|
9371
|
+
UnhealthyInstanceCount: int
|
|
9372
|
+
AvailableSpareInstanceCount: int
|
|
9373
|
+
TotalUltraServerCount: int
|
|
9284
9374
|
TargetResources: List[SageMakerResourceNameType]
|
|
9285
9375
|
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
9286
9376
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9300,6 +9390,7 @@ class TrainingPlanSummaryTypeDef(TypedDict):
|
|
|
9300
9390
|
TotalInstanceCount: NotRequired[int]
|
|
9301
9391
|
AvailableInstanceCount: NotRequired[int]
|
|
9302
9392
|
InUseInstanceCount: NotRequired[int]
|
|
9393
|
+
TotalUltraServerCount: NotRequired[int]
|
|
9303
9394
|
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
9304
9395
|
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
9305
9396
|
|
|
@@ -9651,24 +9742,14 @@ class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
|
|
|
9651
9742
|
NextToken: NotRequired[str]
|
|
9652
9743
|
|
|
9653
9744
|
|
|
9654
|
-
class
|
|
9655
|
-
|
|
9656
|
-
|
|
9657
|
-
InstanceCount: NotRequired[int]
|
|
9658
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
9659
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
9660
|
-
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
9661
|
-
TrainingPlanArn: NotRequired[str]
|
|
9745
|
+
class InstancePlacementConfigOutputTypeDef(TypedDict):
|
|
9746
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
9747
|
+
PlacementSpecifications: NotRequired[List[PlacementSpecificationTypeDef]]
|
|
9662
9748
|
|
|
9663
9749
|
|
|
9664
|
-
class
|
|
9665
|
-
|
|
9666
|
-
|
|
9667
|
-
InstanceCount: NotRequired[int]
|
|
9668
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
9669
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
9670
|
-
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
9671
|
-
TrainingPlanArn: NotRequired[str]
|
|
9750
|
+
class InstancePlacementConfigTypeDef(TypedDict):
|
|
9751
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
9752
|
+
PlacementSpecifications: NotRequired[Sequence[PlacementSpecificationTypeDef]]
|
|
9672
9753
|
|
|
9673
9754
|
|
|
9674
9755
|
class ParameterRangeOutputTypeDef(TypedDict):
|
|
@@ -9899,6 +9980,12 @@ class ListTransformJobsResponseTypeDef(TypedDict):
|
|
|
9899
9980
|
NextToken: NotRequired[str]
|
|
9900
9981
|
|
|
9901
9982
|
|
|
9983
|
+
class ListUltraServersByReservedCapacityResponseTypeDef(TypedDict):
|
|
9984
|
+
UltraServers: List[UltraServerTypeDef]
|
|
9985
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9986
|
+
NextToken: NotRequired[str]
|
|
9987
|
+
|
|
9988
|
+
|
|
9902
9989
|
class ListUserProfilesResponseTypeDef(TypedDict):
|
|
9903
9990
|
UserProfiles: List[UserProfileDetailsTypeDef]
|
|
9904
9991
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -10653,6 +10740,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
10653
10740
|
Placement: NotRequired[ClusterInstancePlacementTypeDef]
|
|
10654
10741
|
CurrentImageId: NotRequired[str]
|
|
10655
10742
|
DesiredImageId: NotRequired[str]
|
|
10743
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
10656
10744
|
|
|
10657
10745
|
|
|
10658
10746
|
class ListClusterNodesResponseTypeDef(TypedDict):
|
|
@@ -11246,7 +11334,20 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
|
11246
11334
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11247
11335
|
|
|
11248
11336
|
|
|
11249
|
-
|
|
11337
|
+
class ResourceConfigOutputTypeDef(TypedDict):
|
|
11338
|
+
VolumeSizeInGB: int
|
|
11339
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
11340
|
+
InstanceCount: NotRequired[int]
|
|
11341
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
11342
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
11343
|
+
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
11344
|
+
TrainingPlanArn: NotRequired[str]
|
|
11345
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigOutputTypeDef]
|
|
11346
|
+
|
|
11347
|
+
|
|
11348
|
+
InstancePlacementConfigUnionTypeDef = Union[
|
|
11349
|
+
InstancePlacementConfigTypeDef, InstancePlacementConfigOutputTypeDef
|
|
11350
|
+
]
|
|
11250
11351
|
HyperParameterSpecificationOutputTypeDef = TypedDict(
|
|
11251
11352
|
"HyperParameterSpecificationOutputTypeDef",
|
|
11252
11353
|
{
|
|
@@ -12229,6 +12330,17 @@ InferenceComponentDeploymentConfigUnionTypeDef = Union[
|
|
|
12229
12330
|
]
|
|
12230
12331
|
|
|
12231
12332
|
|
|
12333
|
+
class ResourceConfigTypeDef(TypedDict):
|
|
12334
|
+
VolumeSizeInGB: int
|
|
12335
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
12336
|
+
InstanceCount: NotRequired[int]
|
|
12337
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
12338
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
12339
|
+
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
12340
|
+
TrainingPlanArn: NotRequired[str]
|
|
12341
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigUnionTypeDef]
|
|
12342
|
+
|
|
12343
|
+
|
|
12232
12344
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
12233
12345
|
TrainingImage: str
|
|
12234
12346
|
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
@@ -13042,6 +13154,7 @@ class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
|
13042
13154
|
DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
|
|
13043
13155
|
|
|
13044
13156
|
|
|
13157
|
+
ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
|
|
13045
13158
|
TrainingSpecificationUnionTypeDef = Union[
|
|
13046
13159
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
13047
13160
|
]
|
|
@@ -236,6 +236,7 @@ from .literals import (
|
|
|
236
236
|
RepositoryAccessModeType,
|
|
237
237
|
ReservedCapacityInstanceTypeType,
|
|
238
238
|
ReservedCapacityStatusType,
|
|
239
|
+
ReservedCapacityTypeType,
|
|
239
240
|
ResourceCatalogSortOrderType,
|
|
240
241
|
ResourceSharingStrategyType,
|
|
241
242
|
ResourceTypeType,
|
|
@@ -306,6 +307,7 @@ from .literals import (
|
|
|
306
307
|
TransformJobStatusType,
|
|
307
308
|
TrialComponentPrimaryStatusType,
|
|
308
309
|
TtlDurationUnitType,
|
|
310
|
+
UltraServerHealthStatusType,
|
|
309
311
|
UserProfileSortKeyType,
|
|
310
312
|
UserProfileStatusType,
|
|
311
313
|
VariantPropertyTypeType,
|
|
@@ -896,6 +898,8 @@ __all__ = (
|
|
|
896
898
|
"DescribeProcessingJobResponseTypeDef",
|
|
897
899
|
"DescribeProjectInputTypeDef",
|
|
898
900
|
"DescribeProjectOutputTypeDef",
|
|
901
|
+
"DescribeReservedCapacityRequestTypeDef",
|
|
902
|
+
"DescribeReservedCapacityResponseTypeDef",
|
|
899
903
|
"DescribeSpaceRequestTypeDef",
|
|
900
904
|
"DescribeSpaceResponseTypeDef",
|
|
901
905
|
"DescribeStudioLifecycleConfigRequestTypeDef",
|
|
@@ -1119,6 +1123,9 @@ __all__ = (
|
|
|
1119
1123
|
"InstanceGroupTypeDef",
|
|
1120
1124
|
"InstanceMetadataServiceConfigurationTypeDef",
|
|
1121
1125
|
"InstanceMetadataTypeDef",
|
|
1126
|
+
"InstancePlacementConfigOutputTypeDef",
|
|
1127
|
+
"InstancePlacementConfigTypeDef",
|
|
1128
|
+
"InstancePlacementConfigUnionTypeDef",
|
|
1122
1129
|
"IntegerParameterRangeSpecificationTypeDef",
|
|
1123
1130
|
"IntegerParameterRangeTypeDef",
|
|
1124
1131
|
"JupyterLabAppImageConfigOutputTypeDef",
|
|
@@ -1394,6 +1401,9 @@ __all__ = (
|
|
|
1394
1401
|
"ListTrialsRequestPaginateTypeDef",
|
|
1395
1402
|
"ListTrialsRequestTypeDef",
|
|
1396
1403
|
"ListTrialsResponseTypeDef",
|
|
1404
|
+
"ListUltraServersByReservedCapacityRequestPaginateTypeDef",
|
|
1405
|
+
"ListUltraServersByReservedCapacityRequestTypeDef",
|
|
1406
|
+
"ListUltraServersByReservedCapacityResponseTypeDef",
|
|
1397
1407
|
"ListUserProfilesRequestPaginateTypeDef",
|
|
1398
1408
|
"ListUserProfilesRequestTypeDef",
|
|
1399
1409
|
"ListUserProfilesResponseTypeDef",
|
|
@@ -1598,6 +1608,7 @@ __all__ = (
|
|
|
1598
1608
|
"PipelineTypeDef",
|
|
1599
1609
|
"PipelineVersionSummaryTypeDef",
|
|
1600
1610
|
"PipelineVersionTypeDef",
|
|
1611
|
+
"PlacementSpecificationTypeDef",
|
|
1601
1612
|
"PredefinedMetricSpecificationTypeDef",
|
|
1602
1613
|
"PresignedUrlAccessConfigTypeDef",
|
|
1603
1614
|
"PriorityClassTypeDef",
|
|
@@ -1874,6 +1885,9 @@ __all__ = (
|
|
|
1874
1885
|
"UiConfigTypeDef",
|
|
1875
1886
|
"UiTemplateInfoTypeDef",
|
|
1876
1887
|
"UiTemplateTypeDef",
|
|
1888
|
+
"UltraServerInfoTypeDef",
|
|
1889
|
+
"UltraServerSummaryTypeDef",
|
|
1890
|
+
"UltraServerTypeDef",
|
|
1877
1891
|
"UnifiedStudioSettingsTypeDef",
|
|
1878
1892
|
"UpdateActionRequestTypeDef",
|
|
1879
1893
|
"UpdateActionResponseTypeDef",
|
|
@@ -2459,6 +2473,9 @@ class ClusterMetadataTypeDef(TypedDict):
|
|
|
2459
2473
|
EksRoleAccessEntries: NotRequired[List[str]]
|
|
2460
2474
|
SlrAccessEntry: NotRequired[str]
|
|
2461
2475
|
|
|
2476
|
+
class UltraServerInfoTypeDef(TypedDict):
|
|
2477
|
+
Id: NotRequired[str]
|
|
2478
|
+
|
|
2462
2479
|
class ClusterOrchestratorEksConfigTypeDef(TypedDict):
|
|
2463
2480
|
ClusterArn: str
|
|
2464
2481
|
|
|
@@ -3514,6 +3531,16 @@ class ServiceCatalogProvisionedProductDetailsTypeDef(TypedDict):
|
|
|
3514
3531
|
ProvisionedProductId: NotRequired[str]
|
|
3515
3532
|
ProvisionedProductStatusMessage: NotRequired[str]
|
|
3516
3533
|
|
|
3534
|
+
class DescribeReservedCapacityRequestTypeDef(TypedDict):
|
|
3535
|
+
ReservedCapacityArn: str
|
|
3536
|
+
|
|
3537
|
+
class UltraServerSummaryTypeDef(TypedDict):
|
|
3538
|
+
UltraServerType: str
|
|
3539
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
3540
|
+
UltraServerCount: NotRequired[int]
|
|
3541
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
3542
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
3543
|
+
|
|
3517
3544
|
class DescribeSpaceRequestTypeDef(TypedDict):
|
|
3518
3545
|
DomainId: str
|
|
3519
3546
|
SpaceName: str
|
|
@@ -3580,6 +3607,9 @@ class ReservedCapacitySummaryTypeDef(TypedDict):
|
|
|
3580
3607
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
3581
3608
|
TotalInstanceCount: int
|
|
3582
3609
|
Status: ReservedCapacityStatusType
|
|
3610
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
3611
|
+
UltraServerType: NotRequired[str]
|
|
3612
|
+
UltraServerCount: NotRequired[int]
|
|
3583
3613
|
AvailabilityZone: NotRequired[str]
|
|
3584
3614
|
DurationHours: NotRequired[int]
|
|
3585
3615
|
DurationMinutes: NotRequired[int]
|
|
@@ -4026,6 +4056,10 @@ class InstanceGroupTypeDef(TypedDict):
|
|
|
4026
4056
|
InstanceCount: int
|
|
4027
4057
|
InstanceGroupName: str
|
|
4028
4058
|
|
|
4059
|
+
class PlacementSpecificationTypeDef(TypedDict):
|
|
4060
|
+
InstanceCount: int
|
|
4061
|
+
UltraServerId: NotRequired[str]
|
|
4062
|
+
|
|
4029
4063
|
class IntegerParameterRangeSpecificationTypeDef(TypedDict):
|
|
4030
4064
|
MinValue: str
|
|
4031
4065
|
MaxValue: str
|
|
@@ -4341,6 +4375,24 @@ class TransformJobSummaryTypeDef(TypedDict):
|
|
|
4341
4375
|
LastModifiedTime: NotRequired[datetime]
|
|
4342
4376
|
FailureReason: NotRequired[str]
|
|
4343
4377
|
|
|
4378
|
+
class ListUltraServersByReservedCapacityRequestTypeDef(TypedDict):
|
|
4379
|
+
ReservedCapacityArn: str
|
|
4380
|
+
MaxResults: NotRequired[int]
|
|
4381
|
+
NextToken: NotRequired[str]
|
|
4382
|
+
|
|
4383
|
+
class UltraServerTypeDef(TypedDict):
|
|
4384
|
+
UltraServerId: str
|
|
4385
|
+
UltraServerType: str
|
|
4386
|
+
AvailabilityZone: str
|
|
4387
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
4388
|
+
TotalInstanceCount: int
|
|
4389
|
+
ConfiguredSpareInstanceCount: NotRequired[int]
|
|
4390
|
+
AvailableInstanceCount: NotRequired[int]
|
|
4391
|
+
InUseInstanceCount: NotRequired[int]
|
|
4392
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
4393
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
4394
|
+
HealthStatus: NotRequired[UltraServerHealthStatusType]
|
|
4395
|
+
|
|
4344
4396
|
class ListUserProfilesRequestTypeDef(TypedDict):
|
|
4345
4397
|
NextToken: NotRequired[str]
|
|
4346
4398
|
MaxResults: NotRequired[int]
|
|
@@ -4719,6 +4771,9 @@ class RenderingErrorTypeDef(TypedDict):
|
|
|
4719
4771
|
class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
4720
4772
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
4721
4773
|
InstanceCount: int
|
|
4774
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
4775
|
+
UltraServerType: NotRequired[str]
|
|
4776
|
+
UltraServerCount: NotRequired[int]
|
|
4722
4777
|
AvailabilityZone: NotRequired[str]
|
|
4723
4778
|
DurationHours: NotRequired[int]
|
|
4724
4779
|
DurationMinutes: NotRequired[int]
|
|
@@ -5654,6 +5709,7 @@ class CreateStudioLifecycleConfigRequestTypeDef(TypedDict):
|
|
|
5654
5709
|
class CreateTrainingPlanRequestTypeDef(TypedDict):
|
|
5655
5710
|
TrainingPlanName: str
|
|
5656
5711
|
TrainingPlanOfferingId: str
|
|
5712
|
+
SpareInstanceCountPerUltraServer: NotRequired[int]
|
|
5657
5713
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5658
5714
|
|
|
5659
5715
|
class ImportHubContentRequestTypeDef(TypedDict):
|
|
@@ -6059,6 +6115,7 @@ class ClusterNodeSummaryTypeDef(TypedDict):
|
|
|
6059
6115
|
InstanceStatus: ClusterInstanceStatusDetailsTypeDef
|
|
6060
6116
|
NodeLogicalId: NotRequired[str]
|
|
6061
6117
|
LastSoftwareUpdateTime: NotRequired[datetime]
|
|
6118
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
6062
6119
|
|
|
6063
6120
|
class ClusterOrchestratorTypeDef(TypedDict):
|
|
6064
6121
|
Eks: ClusterOrchestratorEksConfigTypeDef
|
|
@@ -6316,6 +6373,10 @@ class ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef(TypedDict
|
|
|
6316
6373
|
SortOrder: NotRequired[SortOrderType]
|
|
6317
6374
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
6318
6375
|
|
|
6376
|
+
class ListUltraServersByReservedCapacityRequestPaginateTypeDef(TypedDict):
|
|
6377
|
+
ReservedCapacityArn: str
|
|
6378
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
6379
|
+
|
|
6319
6380
|
class ListUserProfilesRequestPaginateTypeDef(TypedDict):
|
|
6320
6381
|
SortOrder: NotRequired[SortOrderType]
|
|
6321
6382
|
SortBy: NotRequired[UserProfileSortKeyType]
|
|
@@ -7838,6 +7899,8 @@ class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
|
|
|
7838
7899
|
TargetResources: Sequence[SageMakerResourceNameType]
|
|
7839
7900
|
InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
|
|
7840
7901
|
InstanceCount: NotRequired[int]
|
|
7902
|
+
UltraServerType: NotRequired[str]
|
|
7903
|
+
UltraServerCount: NotRequired[int]
|
|
7841
7904
|
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
7842
7905
|
EndTimeBefore: NotRequired[TimestampTypeDef]
|
|
7843
7906
|
|
|
@@ -8154,6 +8217,22 @@ DescribePartnerAppResponseTypeDef = TypedDict(
|
|
|
8154
8217
|
},
|
|
8155
8218
|
)
|
|
8156
8219
|
|
|
8220
|
+
class DescribeReservedCapacityResponseTypeDef(TypedDict):
|
|
8221
|
+
ReservedCapacityArn: str
|
|
8222
|
+
ReservedCapacityType: ReservedCapacityTypeType
|
|
8223
|
+
Status: ReservedCapacityStatusType
|
|
8224
|
+
AvailabilityZone: str
|
|
8225
|
+
DurationHours: int
|
|
8226
|
+
DurationMinutes: int
|
|
8227
|
+
StartTime: datetime
|
|
8228
|
+
EndTime: datetime
|
|
8229
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
8230
|
+
TotalInstanceCount: int
|
|
8231
|
+
AvailableInstanceCount: int
|
|
8232
|
+
InUseInstanceCount: int
|
|
8233
|
+
UltraServerSummary: UltraServerSummaryTypeDef
|
|
8234
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
8235
|
+
|
|
8157
8236
|
class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
8158
8237
|
SubscribedWorkteam: SubscribedWorkteamTypeDef
|
|
8159
8238
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8188,6 +8267,9 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
|
8188
8267
|
TotalInstanceCount: int
|
|
8189
8268
|
AvailableInstanceCount: int
|
|
8190
8269
|
InUseInstanceCount: int
|
|
8270
|
+
UnhealthyInstanceCount: int
|
|
8271
|
+
AvailableSpareInstanceCount: int
|
|
8272
|
+
TotalUltraServerCount: int
|
|
8191
8273
|
TargetResources: List[SageMakerResourceNameType]
|
|
8192
8274
|
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
8193
8275
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8206,6 +8288,7 @@ class TrainingPlanSummaryTypeDef(TypedDict):
|
|
|
8206
8288
|
TotalInstanceCount: NotRequired[int]
|
|
8207
8289
|
AvailableInstanceCount: NotRequired[int]
|
|
8208
8290
|
InUseInstanceCount: NotRequired[int]
|
|
8291
|
+
TotalUltraServerCount: NotRequired[int]
|
|
8209
8292
|
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
8210
8293
|
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
8211
8294
|
|
|
@@ -8504,23 +8587,13 @@ class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
|
|
|
8504
8587
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8505
8588
|
NextToken: NotRequired[str]
|
|
8506
8589
|
|
|
8507
|
-
class
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
InstanceCount: NotRequired[int]
|
|
8511
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
8512
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
8513
|
-
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
8514
|
-
TrainingPlanArn: NotRequired[str]
|
|
8590
|
+
class InstancePlacementConfigOutputTypeDef(TypedDict):
|
|
8591
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
8592
|
+
PlacementSpecifications: NotRequired[List[PlacementSpecificationTypeDef]]
|
|
8515
8593
|
|
|
8516
|
-
class
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
InstanceCount: NotRequired[int]
|
|
8520
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
8521
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
8522
|
-
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
8523
|
-
TrainingPlanArn: NotRequired[str]
|
|
8594
|
+
class InstancePlacementConfigTypeDef(TypedDict):
|
|
8595
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
8596
|
+
PlacementSpecifications: NotRequired[Sequence[PlacementSpecificationTypeDef]]
|
|
8524
8597
|
|
|
8525
8598
|
class ParameterRangeOutputTypeDef(TypedDict):
|
|
8526
8599
|
IntegerParameterRangeSpecification: NotRequired[IntegerParameterRangeSpecificationTypeDef]
|
|
@@ -8714,6 +8787,11 @@ class ListTransformJobsResponseTypeDef(TypedDict):
|
|
|
8714
8787
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8715
8788
|
NextToken: NotRequired[str]
|
|
8716
8789
|
|
|
8790
|
+
class ListUltraServersByReservedCapacityResponseTypeDef(TypedDict):
|
|
8791
|
+
UltraServers: List[UltraServerTypeDef]
|
|
8792
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
8793
|
+
NextToken: NotRequired[str]
|
|
8794
|
+
|
|
8717
8795
|
class ListUserProfilesResponseTypeDef(TypedDict):
|
|
8718
8796
|
UserProfiles: List[UserProfileDetailsTypeDef]
|
|
8719
8797
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9364,6 +9442,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
9364
9442
|
Placement: NotRequired[ClusterInstancePlacementTypeDef]
|
|
9365
9443
|
CurrentImageId: NotRequired[str]
|
|
9366
9444
|
DesiredImageId: NotRequired[str]
|
|
9445
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
9367
9446
|
|
|
9368
9447
|
class ListClusterNodesResponseTypeDef(TypedDict):
|
|
9369
9448
|
ClusterNodeSummaries: List[ClusterNodeSummaryTypeDef]
|
|
@@ -9896,7 +9975,19 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
|
9896
9975
|
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
9897
9976
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9898
9977
|
|
|
9899
|
-
|
|
9978
|
+
class ResourceConfigOutputTypeDef(TypedDict):
|
|
9979
|
+
VolumeSizeInGB: int
|
|
9980
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
9981
|
+
InstanceCount: NotRequired[int]
|
|
9982
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
9983
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
9984
|
+
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
9985
|
+
TrainingPlanArn: NotRequired[str]
|
|
9986
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigOutputTypeDef]
|
|
9987
|
+
|
|
9988
|
+
InstancePlacementConfigUnionTypeDef = Union[
|
|
9989
|
+
InstancePlacementConfigTypeDef, InstancePlacementConfigOutputTypeDef
|
|
9990
|
+
]
|
|
9900
9991
|
HyperParameterSpecificationOutputTypeDef = TypedDict(
|
|
9901
9992
|
"HyperParameterSpecificationOutputTypeDef",
|
|
9902
9993
|
{
|
|
@@ -10774,6 +10865,16 @@ InferenceComponentDeploymentConfigUnionTypeDef = Union[
|
|
|
10774
10865
|
InferenceComponentDeploymentConfigTypeDef, InferenceComponentDeploymentConfigOutputTypeDef
|
|
10775
10866
|
]
|
|
10776
10867
|
|
|
10868
|
+
class ResourceConfigTypeDef(TypedDict):
|
|
10869
|
+
VolumeSizeInGB: int
|
|
10870
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
10871
|
+
InstanceCount: NotRequired[int]
|
|
10872
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
10873
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
10874
|
+
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
10875
|
+
TrainingPlanArn: NotRequired[str]
|
|
10876
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigUnionTypeDef]
|
|
10877
|
+
|
|
10777
10878
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
10778
10879
|
TrainingImage: str
|
|
10779
10880
|
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
@@ -11511,6 +11612,7 @@ class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
|
11511
11612
|
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
11512
11613
|
DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
|
|
11513
11614
|
|
|
11615
|
+
ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
|
|
11514
11616
|
TrainingSpecificationUnionTypeDef = Union[
|
|
11515
11617
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
11516
11618
|
]
|
mypy_boto3_sagemaker/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.40.
|
|
3
|
+
Version: 1.40.6
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.40.6 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 SageMaker 1.40.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.40.6](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.6' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `SageMaker` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -430,6 +430,7 @@ from mypy_boto3_sagemaker.paginator import (
|
|
|
430
430
|
ListTransformJobsPaginator,
|
|
431
431
|
ListTrialComponentsPaginator,
|
|
432
432
|
ListTrialsPaginator,
|
|
433
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
433
434
|
ListUserProfilesPaginator,
|
|
434
435
|
ListWorkforcesPaginator,
|
|
435
436
|
ListWorkteamsPaginator,
|
|
@@ -619,6 +620,9 @@ list_trial_components_paginator: ListTrialComponentsPaginator = client.get_pagin
|
|
|
619
620
|
"list_trial_components"
|
|
620
621
|
)
|
|
621
622
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
623
|
+
list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = (
|
|
624
|
+
client.get_paginator("list_ultra_servers_by_reserved_capacity")
|
|
625
|
+
)
|
|
622
626
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
623
627
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
624
628
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=8u1GoCuYZL3XnYrn9wOzROItqTTiuPlw5sf0_gSkS8M,21904
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=U5FxNumwWVegSjatfeS1b91q5XdHYIpWK6LMpwX7tm8,21903
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=Oh3TE8AsAhjckvcUNPoWaxc2JzhJvyliJ8Nnq9KHJYY,989
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=WToZFdhC7Wt5_LYM2mf6njFcflnQ2Yr9pW9SnnA5fHo,279028
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=pTVBeGJHBzypeZskLqfg02PVHfxyVsRbc3BscqByYo8,279025
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=wpRBWYwErAf5AhKFygp9m_Ck8RMPuwg-QvXsiXdNDzo,85495
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=Cvz7lM-5HhuwuS1SGv5wneKzOzLlvwwE5_u-XuGwtRg,85493
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=1fUjKHghqFE04mdXf0-FmZ4wBf-xX55GGpT-Pl-fqKU,120255
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=vGQCLe7DjQ93tq2SzKgEpW8M90mp74xVWeBB03Bklck,120008
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=lmZIIRFcK9a26wt70CFgaroTI8FNsnauL6uOUks92_I,481725
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=BCCIWMfOAd8ICPrxJs7DVY6B-OzYm-F0oX3Q_glPfMs,480083
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=VNQBT6aQNszUcr85DV1qb_G-WS-X9TA2In_GQ9Xv7cQ,92
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/METADATA,sha256=ov8GqdTyz9Szrqp3tpT2Fyx8jqvQOK7_ZqHea_OPoSk,29604
|
|
18
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=Mu_JJX9Q2vMD-MP2RcTjMEfhsBUoiyjHt6564iwutjo,21586
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=N-YC1wMclcq-joidhaY0DQfNKvHjTlmS1M9hZG4A0N8,21585
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=S9Qk5_YEJ2FQEXbBSbjGSpy8h2KfpS0aie-vb_CW-PI,989
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=SAwL-q2dJpKl6EXIW_28d2LV-tUXA35W1DFBCuK2MtA,277052
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=qcMGKcUTJzfVCIheTDCuKQTv5apP9K7cQAQchk8rxAw,277049
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=C2IkvoNylJr9_W5CeZeK_TVM1mMX5Br8nr8Sr8YWsV8,85028
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=s3NSAiYQlJnXIDozbpIXsfwFSfD-DMsqhXZCMIabkAg,85026
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=TdsEWzAa34x49Jse7TkrCt-wcQ5cL2YoiZACKsqLQPQ,118492
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=4QBcLVG1_XsBg7_nTp72VcsXHo1kvkIqJiM4wxT7XTY,118248
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=Rl-J5JSTnUFKUxcW9aGGcu2IIQRwk4g5ic6BavMjkOA,477784
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=brNd8CGZVLmy_se6CQFkLsx371r253_x82utJSdIOhI,476153
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=ZaA0naREa9WFnH-K5V-P-k3aAPEqNIuS6J9mLa1hDFk,92
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
-
mypy_boto3_sagemaker-1.40.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.40.3.dist-info/METADATA,sha256=nn-etNzQyUSqFJW4zyTumJI-PCRjuz7d5B9nS6V3jtA,29386
|
|
18
|
-
mypy_boto3_sagemaker-1.40.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_sagemaker-1.40.3.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.40.3.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.40.3.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/top_level.txt
RENAMED
|
File without changes
|