mypy-boto3-sagemaker 1.40.2__py3-none-any.whl → 1.40.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +8 -0
- mypy_boto3_sagemaker/__init__.pyi +8 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +88 -2
- mypy_boto3_sagemaker/client.pyi +88 -2
- mypy_boto3_sagemaker/literals.py +29 -1
- mypy_boto3_sagemaker/literals.pyi +29 -1
- mypy_boto3_sagemaker/paginator.py +54 -0
- mypy_boto3_sagemaker/paginator.pyi +48 -0
- mypy_boto3_sagemaker/type_defs.py +322 -17
- mypy_boto3_sagemaker/type_defs.pyi +291 -17
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/METADATA +12 -4
- mypy_boto3_sagemaker-1.40.6.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -59,6 +59,7 @@ __all__ = (
|
|
|
59
59
|
"AutoMountHomeEFSType",
|
|
60
60
|
"AutotuneModeType",
|
|
61
61
|
"AwsManagedHumanLoopRequestSourceType",
|
|
62
|
+
"BatchAddClusterNodesErrorCodeType",
|
|
62
63
|
"BatchDeleteClusterNodesErrorCodeType",
|
|
63
64
|
"BatchStrategyType",
|
|
64
65
|
"BooleanOperatorType",
|
|
@@ -66,14 +67,17 @@ __all__ = (
|
|
|
66
67
|
"CandidateStatusType",
|
|
67
68
|
"CandidateStepTypeType",
|
|
68
69
|
"CapacityReservationPreferenceType",
|
|
70
|
+
"CapacityReservationTypeType",
|
|
69
71
|
"CapacitySizeTypeType",
|
|
70
72
|
"CaptureModeType",
|
|
71
73
|
"CaptureStatusType",
|
|
72
74
|
"ClarifyFeatureTypeType",
|
|
73
75
|
"ClarifyTextGranularityType",
|
|
74
76
|
"ClarifyTextLanguageType",
|
|
77
|
+
"ClusterEventResourceTypeType",
|
|
75
78
|
"ClusterInstanceStatusType",
|
|
76
79
|
"ClusterInstanceTypeType",
|
|
80
|
+
"ClusterNodeProvisioningModeType",
|
|
77
81
|
"ClusterNodeRecoveryType",
|
|
78
82
|
"ClusterSortByType",
|
|
79
83
|
"ClusterStatusType",
|
|
@@ -107,6 +111,7 @@ __all__ = (
|
|
|
107
111
|
"EndpointInServiceWaiterName",
|
|
108
112
|
"EndpointSortKeyType",
|
|
109
113
|
"EndpointStatusType",
|
|
114
|
+
"EventSortByType",
|
|
110
115
|
"ExecutionRoleIdentityConfigType",
|
|
111
116
|
"ExecutionStatusType",
|
|
112
117
|
"FailureHandlingPolicyType",
|
|
@@ -173,6 +178,7 @@ __all__ = (
|
|
|
173
178
|
"ListAssociationsPaginatorName",
|
|
174
179
|
"ListAutoMLJobsPaginatorName",
|
|
175
180
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
181
|
+
"ListClusterEventsPaginatorName",
|
|
176
182
|
"ListClusterNodesPaginatorName",
|
|
177
183
|
"ListClusterSchedulerConfigsPaginatorName",
|
|
178
184
|
"ListClustersPaginatorName",
|
|
@@ -246,6 +252,7 @@ __all__ = (
|
|
|
246
252
|
"ListTransformJobsPaginatorName",
|
|
247
253
|
"ListTrialComponentsPaginatorName",
|
|
248
254
|
"ListTrialsPaginatorName",
|
|
255
|
+
"ListUltraServersByReservedCapacityPaginatorName",
|
|
249
256
|
"ListUserProfilesPaginatorName",
|
|
250
257
|
"ListWorkforcesPaginatorName",
|
|
251
258
|
"ListWorkforcesSortByOptionsType",
|
|
@@ -340,6 +347,7 @@ __all__ = (
|
|
|
340
347
|
"RepositoryAccessModeType",
|
|
341
348
|
"ReservedCapacityInstanceTypeType",
|
|
342
349
|
"ReservedCapacityStatusType",
|
|
350
|
+
"ReservedCapacityTypeType",
|
|
343
351
|
"ResourceCatalogSortByType",
|
|
344
352
|
"ResourceCatalogSortOrderType",
|
|
345
353
|
"ResourceServiceName",
|
|
@@ -418,6 +426,7 @@ __all__ = (
|
|
|
418
426
|
"TransformJobStatusType",
|
|
419
427
|
"TrialComponentPrimaryStatusType",
|
|
420
428
|
"TtlDurationUnitType",
|
|
429
|
+
"UltraServerHealthStatusType",
|
|
421
430
|
"UserProfileSortKeyType",
|
|
422
431
|
"UserProfileStatusType",
|
|
423
432
|
"VariantPropertyTypeType",
|
|
@@ -731,6 +740,7 @@ AutotuneModeType = Literal["Enabled"]
|
|
|
731
740
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
732
741
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
733
742
|
]
|
|
743
|
+
BatchAddClusterNodesErrorCodeType = Literal["InstanceGroupNotFound", "InvalidInstanceGroupStatus"]
|
|
734
744
|
BatchDeleteClusterNodesErrorCodeType = Literal["InvalidNodeStatus", "NodeIdInUse", "NodeIdNotFound"]
|
|
735
745
|
BatchStrategyType = Literal["MultiRecord", "SingleRecord"]
|
|
736
746
|
BooleanOperatorType = Literal["And", "Or"]
|
|
@@ -740,6 +750,7 @@ CandidateStepTypeType = Literal[
|
|
|
740
750
|
"AWS::SageMaker::ProcessingJob", "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob"
|
|
741
751
|
]
|
|
742
752
|
CapacityReservationPreferenceType = Literal["capacity-reservations-only"]
|
|
753
|
+
CapacityReservationTypeType = Literal["CRG", "ODCR"]
|
|
743
754
|
CapacitySizeTypeType = Literal["CAPACITY_PERCENT", "INSTANCE_COUNT"]
|
|
744
755
|
CaptureModeType = Literal["Input", "InputAndOutput", "Output"]
|
|
745
756
|
CaptureStatusType = Literal["Started", "Stopped"]
|
|
@@ -807,8 +818,15 @@ ClarifyTextLanguageType = Literal[
|
|
|
807
818
|
"yo",
|
|
808
819
|
"zh",
|
|
809
820
|
]
|
|
821
|
+
ClusterEventResourceTypeType = Literal["Cluster", "Instance", "InstanceGroup"]
|
|
810
822
|
ClusterInstanceStatusType = Literal[
|
|
811
|
-
"DeepHealthCheckInProgress",
|
|
823
|
+
"DeepHealthCheckInProgress",
|
|
824
|
+
"Failure",
|
|
825
|
+
"NotFound",
|
|
826
|
+
"Pending",
|
|
827
|
+
"Running",
|
|
828
|
+
"ShuttingDown",
|
|
829
|
+
"SystemUpdating",
|
|
812
830
|
]
|
|
813
831
|
ClusterInstanceTypeType = Literal[
|
|
814
832
|
"ml.c5.12xlarge",
|
|
@@ -924,6 +942,7 @@ ClusterInstanceTypeType = Literal[
|
|
|
924
942
|
"ml.trn1n.32xlarge",
|
|
925
943
|
"ml.trn2.48xlarge",
|
|
926
944
|
]
|
|
945
|
+
ClusterNodeProvisioningModeType = Literal["Continuous"]
|
|
927
946
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
928
947
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
929
948
|
ClusterStatusType = Literal[
|
|
@@ -977,6 +996,7 @@ EndpointStatusType = Literal[
|
|
|
977
996
|
"UpdateRollbackFailed",
|
|
978
997
|
"Updating",
|
|
979
998
|
]
|
|
999
|
+
EventSortByType = Literal["EventTime"]
|
|
980
1000
|
ExecutionRoleIdentityConfigType = Literal["DISABLED", "USER_PROFILE_NAME"]
|
|
981
1001
|
ExecutionStatusType = Literal[
|
|
982
1002
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
@@ -1243,6 +1263,7 @@ ListArtifactsPaginatorName = Literal["list_artifacts"]
|
|
|
1243
1263
|
ListAssociationsPaginatorName = Literal["list_associations"]
|
|
1244
1264
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1245
1265
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1266
|
+
ListClusterEventsPaginatorName = Literal["list_cluster_events"]
|
|
1246
1267
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1247
1268
|
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1248
1269
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
@@ -1328,6 +1349,7 @@ ListTrainingPlansPaginatorName = Literal["list_training_plans"]
|
|
|
1328
1349
|
ListTransformJobsPaginatorName = Literal["list_transform_jobs"]
|
|
1329
1350
|
ListTrialComponentsPaginatorName = Literal["list_trial_components"]
|
|
1330
1351
|
ListTrialsPaginatorName = Literal["list_trials"]
|
|
1352
|
+
ListUltraServersByReservedCapacityPaginatorName = Literal["list_ultra_servers_by_reserved_capacity"]
|
|
1331
1353
|
ListUserProfilesPaginatorName = Literal["list_user_profiles"]
|
|
1332
1354
|
ListWorkforcesPaginatorName = Literal["list_workforces"]
|
|
1333
1355
|
ListWorkforcesSortByOptionsType = Literal["CreateDate", "Name"]
|
|
@@ -1926,10 +1948,12 @@ ReservedCapacityInstanceTypeType = Literal[
|
|
|
1926
1948
|
"ml.p5e.48xlarge",
|
|
1927
1949
|
"ml.p5en.48xlarge",
|
|
1928
1950
|
"ml.p6-b200.48xlarge",
|
|
1951
|
+
"ml.p6e-gb200.36xlarge",
|
|
1929
1952
|
"ml.trn1.32xlarge",
|
|
1930
1953
|
"ml.trn2.48xlarge",
|
|
1931
1954
|
]
|
|
1932
1955
|
ReservedCapacityStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1956
|
+
ReservedCapacityTypeType = Literal["Instance", "UltraServer"]
|
|
1933
1957
|
ResourceCatalogSortByType = Literal["CreationTime"]
|
|
1934
1958
|
ResourceCatalogSortOrderType = Literal["Ascending", "Descending"]
|
|
1935
1959
|
ResourceSharingStrategyType = Literal["DontLend", "Lend", "LendAndBorrow"]
|
|
@@ -2219,6 +2243,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
2219
2243
|
"ml.p5e.48xlarge",
|
|
2220
2244
|
"ml.p5en.48xlarge",
|
|
2221
2245
|
"ml.p6-b200.48xlarge",
|
|
2246
|
+
"ml.p6e-gb200.36xlarge",
|
|
2222
2247
|
"ml.r5.12xlarge",
|
|
2223
2248
|
"ml.r5.16xlarge",
|
|
2224
2249
|
"ml.r5.24xlarge",
|
|
@@ -2372,6 +2397,7 @@ TrialComponentPrimaryStatusType = Literal[
|
|
|
2372
2397
|
"Completed", "Failed", "InProgress", "Stopped", "Stopping"
|
|
2373
2398
|
]
|
|
2374
2399
|
TtlDurationUnitType = Literal["Days", "Hours", "Minutes", "Seconds", "Weeks"]
|
|
2400
|
+
UltraServerHealthStatusType = Literal["Impaired", "Insufficient-Data", "OK"]
|
|
2375
2401
|
UserProfileSortKeyType = Literal["CreationTime", "LastModifiedTime"]
|
|
2376
2402
|
UserProfileStatusType = Literal[
|
|
2377
2403
|
"Delete_Failed", "Deleting", "Failed", "InService", "Pending", "Update_Failed", "Updating"
|
|
@@ -2822,6 +2848,7 @@ PaginatorName = Literal[
|
|
|
2822
2848
|
"list_associations",
|
|
2823
2849
|
"list_auto_ml_jobs",
|
|
2824
2850
|
"list_candidates_for_auto_ml_job",
|
|
2851
|
+
"list_cluster_events",
|
|
2825
2852
|
"list_cluster_nodes",
|
|
2826
2853
|
"list_cluster_scheduler_configs",
|
|
2827
2854
|
"list_clusters",
|
|
@@ -2888,6 +2915,7 @@ PaginatorName = Literal[
|
|
|
2888
2915
|
"list_transform_jobs",
|
|
2889
2916
|
"list_trial_components",
|
|
2890
2917
|
"list_trials",
|
|
2918
|
+
"list_ultra_servers_by_reserved_capacity",
|
|
2891
2919
|
"list_user_profiles",
|
|
2892
2920
|
"list_workforces",
|
|
2893
2921
|
"list_workteams",
|
|
@@ -58,6 +58,7 @@ __all__ = (
|
|
|
58
58
|
"AutoMountHomeEFSType",
|
|
59
59
|
"AutotuneModeType",
|
|
60
60
|
"AwsManagedHumanLoopRequestSourceType",
|
|
61
|
+
"BatchAddClusterNodesErrorCodeType",
|
|
61
62
|
"BatchDeleteClusterNodesErrorCodeType",
|
|
62
63
|
"BatchStrategyType",
|
|
63
64
|
"BooleanOperatorType",
|
|
@@ -65,14 +66,17 @@ __all__ = (
|
|
|
65
66
|
"CandidateStatusType",
|
|
66
67
|
"CandidateStepTypeType",
|
|
67
68
|
"CapacityReservationPreferenceType",
|
|
69
|
+
"CapacityReservationTypeType",
|
|
68
70
|
"CapacitySizeTypeType",
|
|
69
71
|
"CaptureModeType",
|
|
70
72
|
"CaptureStatusType",
|
|
71
73
|
"ClarifyFeatureTypeType",
|
|
72
74
|
"ClarifyTextGranularityType",
|
|
73
75
|
"ClarifyTextLanguageType",
|
|
76
|
+
"ClusterEventResourceTypeType",
|
|
74
77
|
"ClusterInstanceStatusType",
|
|
75
78
|
"ClusterInstanceTypeType",
|
|
79
|
+
"ClusterNodeProvisioningModeType",
|
|
76
80
|
"ClusterNodeRecoveryType",
|
|
77
81
|
"ClusterSortByType",
|
|
78
82
|
"ClusterStatusType",
|
|
@@ -106,6 +110,7 @@ __all__ = (
|
|
|
106
110
|
"EndpointInServiceWaiterName",
|
|
107
111
|
"EndpointSortKeyType",
|
|
108
112
|
"EndpointStatusType",
|
|
113
|
+
"EventSortByType",
|
|
109
114
|
"ExecutionRoleIdentityConfigType",
|
|
110
115
|
"ExecutionStatusType",
|
|
111
116
|
"FailureHandlingPolicyType",
|
|
@@ -172,6 +177,7 @@ __all__ = (
|
|
|
172
177
|
"ListAssociationsPaginatorName",
|
|
173
178
|
"ListAutoMLJobsPaginatorName",
|
|
174
179
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
180
|
+
"ListClusterEventsPaginatorName",
|
|
175
181
|
"ListClusterNodesPaginatorName",
|
|
176
182
|
"ListClusterSchedulerConfigsPaginatorName",
|
|
177
183
|
"ListClustersPaginatorName",
|
|
@@ -245,6 +251,7 @@ __all__ = (
|
|
|
245
251
|
"ListTransformJobsPaginatorName",
|
|
246
252
|
"ListTrialComponentsPaginatorName",
|
|
247
253
|
"ListTrialsPaginatorName",
|
|
254
|
+
"ListUltraServersByReservedCapacityPaginatorName",
|
|
248
255
|
"ListUserProfilesPaginatorName",
|
|
249
256
|
"ListWorkforcesPaginatorName",
|
|
250
257
|
"ListWorkforcesSortByOptionsType",
|
|
@@ -339,6 +346,7 @@ __all__ = (
|
|
|
339
346
|
"RepositoryAccessModeType",
|
|
340
347
|
"ReservedCapacityInstanceTypeType",
|
|
341
348
|
"ReservedCapacityStatusType",
|
|
349
|
+
"ReservedCapacityTypeType",
|
|
342
350
|
"ResourceCatalogSortByType",
|
|
343
351
|
"ResourceCatalogSortOrderType",
|
|
344
352
|
"ResourceServiceName",
|
|
@@ -417,6 +425,7 @@ __all__ = (
|
|
|
417
425
|
"TransformJobStatusType",
|
|
418
426
|
"TrialComponentPrimaryStatusType",
|
|
419
427
|
"TtlDurationUnitType",
|
|
428
|
+
"UltraServerHealthStatusType",
|
|
420
429
|
"UserProfileSortKeyType",
|
|
421
430
|
"UserProfileStatusType",
|
|
422
431
|
"VariantPropertyTypeType",
|
|
@@ -729,6 +738,7 @@ AutotuneModeType = Literal["Enabled"]
|
|
|
729
738
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
730
739
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
731
740
|
]
|
|
741
|
+
BatchAddClusterNodesErrorCodeType = Literal["InstanceGroupNotFound", "InvalidInstanceGroupStatus"]
|
|
732
742
|
BatchDeleteClusterNodesErrorCodeType = Literal["InvalidNodeStatus", "NodeIdInUse", "NodeIdNotFound"]
|
|
733
743
|
BatchStrategyType = Literal["MultiRecord", "SingleRecord"]
|
|
734
744
|
BooleanOperatorType = Literal["And", "Or"]
|
|
@@ -738,6 +748,7 @@ CandidateStepTypeType = Literal[
|
|
|
738
748
|
"AWS::SageMaker::ProcessingJob", "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob"
|
|
739
749
|
]
|
|
740
750
|
CapacityReservationPreferenceType = Literal["capacity-reservations-only"]
|
|
751
|
+
CapacityReservationTypeType = Literal["CRG", "ODCR"]
|
|
741
752
|
CapacitySizeTypeType = Literal["CAPACITY_PERCENT", "INSTANCE_COUNT"]
|
|
742
753
|
CaptureModeType = Literal["Input", "InputAndOutput", "Output"]
|
|
743
754
|
CaptureStatusType = Literal["Started", "Stopped"]
|
|
@@ -805,8 +816,15 @@ ClarifyTextLanguageType = Literal[
|
|
|
805
816
|
"yo",
|
|
806
817
|
"zh",
|
|
807
818
|
]
|
|
819
|
+
ClusterEventResourceTypeType = Literal["Cluster", "Instance", "InstanceGroup"]
|
|
808
820
|
ClusterInstanceStatusType = Literal[
|
|
809
|
-
"DeepHealthCheckInProgress",
|
|
821
|
+
"DeepHealthCheckInProgress",
|
|
822
|
+
"Failure",
|
|
823
|
+
"NotFound",
|
|
824
|
+
"Pending",
|
|
825
|
+
"Running",
|
|
826
|
+
"ShuttingDown",
|
|
827
|
+
"SystemUpdating",
|
|
810
828
|
]
|
|
811
829
|
ClusterInstanceTypeType = Literal[
|
|
812
830
|
"ml.c5.12xlarge",
|
|
@@ -922,6 +940,7 @@ ClusterInstanceTypeType = Literal[
|
|
|
922
940
|
"ml.trn1n.32xlarge",
|
|
923
941
|
"ml.trn2.48xlarge",
|
|
924
942
|
]
|
|
943
|
+
ClusterNodeProvisioningModeType = Literal["Continuous"]
|
|
925
944
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
926
945
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
927
946
|
ClusterStatusType = Literal[
|
|
@@ -975,6 +994,7 @@ EndpointStatusType = Literal[
|
|
|
975
994
|
"UpdateRollbackFailed",
|
|
976
995
|
"Updating",
|
|
977
996
|
]
|
|
997
|
+
EventSortByType = Literal["EventTime"]
|
|
978
998
|
ExecutionRoleIdentityConfigType = Literal["DISABLED", "USER_PROFILE_NAME"]
|
|
979
999
|
ExecutionStatusType = Literal[
|
|
980
1000
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
@@ -1241,6 +1261,7 @@ ListArtifactsPaginatorName = Literal["list_artifacts"]
|
|
|
1241
1261
|
ListAssociationsPaginatorName = Literal["list_associations"]
|
|
1242
1262
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1243
1263
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1264
|
+
ListClusterEventsPaginatorName = Literal["list_cluster_events"]
|
|
1244
1265
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1245
1266
|
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1246
1267
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
@@ -1326,6 +1347,7 @@ ListTrainingPlansPaginatorName = Literal["list_training_plans"]
|
|
|
1326
1347
|
ListTransformJobsPaginatorName = Literal["list_transform_jobs"]
|
|
1327
1348
|
ListTrialComponentsPaginatorName = Literal["list_trial_components"]
|
|
1328
1349
|
ListTrialsPaginatorName = Literal["list_trials"]
|
|
1350
|
+
ListUltraServersByReservedCapacityPaginatorName = Literal["list_ultra_servers_by_reserved_capacity"]
|
|
1329
1351
|
ListUserProfilesPaginatorName = Literal["list_user_profiles"]
|
|
1330
1352
|
ListWorkforcesPaginatorName = Literal["list_workforces"]
|
|
1331
1353
|
ListWorkforcesSortByOptionsType = Literal["CreateDate", "Name"]
|
|
@@ -1924,10 +1946,12 @@ ReservedCapacityInstanceTypeType = Literal[
|
|
|
1924
1946
|
"ml.p5e.48xlarge",
|
|
1925
1947
|
"ml.p5en.48xlarge",
|
|
1926
1948
|
"ml.p6-b200.48xlarge",
|
|
1949
|
+
"ml.p6e-gb200.36xlarge",
|
|
1927
1950
|
"ml.trn1.32xlarge",
|
|
1928
1951
|
"ml.trn2.48xlarge",
|
|
1929
1952
|
]
|
|
1930
1953
|
ReservedCapacityStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1954
|
+
ReservedCapacityTypeType = Literal["Instance", "UltraServer"]
|
|
1931
1955
|
ResourceCatalogSortByType = Literal["CreationTime"]
|
|
1932
1956
|
ResourceCatalogSortOrderType = Literal["Ascending", "Descending"]
|
|
1933
1957
|
ResourceSharingStrategyType = Literal["DontLend", "Lend", "LendAndBorrow"]
|
|
@@ -2217,6 +2241,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
2217
2241
|
"ml.p5e.48xlarge",
|
|
2218
2242
|
"ml.p5en.48xlarge",
|
|
2219
2243
|
"ml.p6-b200.48xlarge",
|
|
2244
|
+
"ml.p6e-gb200.36xlarge",
|
|
2220
2245
|
"ml.r5.12xlarge",
|
|
2221
2246
|
"ml.r5.16xlarge",
|
|
2222
2247
|
"ml.r5.24xlarge",
|
|
@@ -2370,6 +2395,7 @@ TrialComponentPrimaryStatusType = Literal[
|
|
|
2370
2395
|
"Completed", "Failed", "InProgress", "Stopped", "Stopping"
|
|
2371
2396
|
]
|
|
2372
2397
|
TtlDurationUnitType = Literal["Days", "Hours", "Minutes", "Seconds", "Weeks"]
|
|
2398
|
+
UltraServerHealthStatusType = Literal["Impaired", "Insufficient-Data", "OK"]
|
|
2373
2399
|
UserProfileSortKeyType = Literal["CreationTime", "LastModifiedTime"]
|
|
2374
2400
|
UserProfileStatusType = Literal[
|
|
2375
2401
|
"Delete_Failed", "Deleting", "Failed", "InService", "Pending", "Update_Failed", "Updating"
|
|
@@ -2820,6 +2846,7 @@ PaginatorName = Literal[
|
|
|
2820
2846
|
"list_associations",
|
|
2821
2847
|
"list_auto_ml_jobs",
|
|
2822
2848
|
"list_candidates_for_auto_ml_job",
|
|
2849
|
+
"list_cluster_events",
|
|
2823
2850
|
"list_cluster_nodes",
|
|
2824
2851
|
"list_cluster_scheduler_configs",
|
|
2825
2852
|
"list_clusters",
|
|
@@ -2886,6 +2913,7 @@ PaginatorName = Literal[
|
|
|
2886
2913
|
"list_transform_jobs",
|
|
2887
2914
|
"list_trial_components",
|
|
2888
2915
|
"list_trials",
|
|
2916
|
+
"list_ultra_servers_by_reserved_capacity",
|
|
2889
2917
|
"list_user_profiles",
|
|
2890
2918
|
"list_workforces",
|
|
2891
2919
|
"list_workteams",
|
|
@@ -22,6 +22,7 @@ Usage::
|
|
|
22
22
|
ListAssociationsPaginator,
|
|
23
23
|
ListAutoMLJobsPaginator,
|
|
24
24
|
ListCandidatesForAutoMLJobPaginator,
|
|
25
|
+
ListClusterEventsPaginator,
|
|
25
26
|
ListClusterNodesPaginator,
|
|
26
27
|
ListClusterSchedulerConfigsPaginator,
|
|
27
28
|
ListClustersPaginator,
|
|
@@ -88,6 +89,7 @@ Usage::
|
|
|
88
89
|
ListTransformJobsPaginator,
|
|
89
90
|
ListTrialComponentsPaginator,
|
|
90
91
|
ListTrialsPaginator,
|
|
92
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
91
93
|
ListUserProfilesPaginator,
|
|
92
94
|
ListWorkforcesPaginator,
|
|
93
95
|
ListWorkteamsPaginator,
|
|
@@ -107,6 +109,7 @@ Usage::
|
|
|
107
109
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
108
110
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
109
111
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
112
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
110
113
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
111
114
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
112
115
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -173,6 +176,7 @@ Usage::
|
|
|
173
176
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
174
177
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
175
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")
|
|
176
180
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
177
181
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
178
182
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -208,6 +212,8 @@ from .type_defs import (
|
|
|
208
212
|
ListAutoMLJobsResponseTypeDef,
|
|
209
213
|
ListCandidatesForAutoMLJobRequestPaginateTypeDef,
|
|
210
214
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
215
|
+
ListClusterEventsRequestPaginateTypeDef,
|
|
216
|
+
ListClusterEventsResponseTypeDef,
|
|
211
217
|
ListClusterNodesRequestPaginateTypeDef,
|
|
212
218
|
ListClusterNodesResponseTypeDef,
|
|
213
219
|
ListClusterSchedulerConfigsRequestPaginateTypeDef,
|
|
@@ -340,6 +346,8 @@ from .type_defs import (
|
|
|
340
346
|
ListTrialComponentsResponseTypeDef,
|
|
341
347
|
ListTrialsRequestPaginateTypeDef,
|
|
342
348
|
ListTrialsResponseTypeDef,
|
|
349
|
+
ListUltraServersByReservedCapacityRequestPaginateTypeDef,
|
|
350
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
343
351
|
ListUserProfilesRequestPaginateTypeDef,
|
|
344
352
|
ListUserProfilesResponseTypeDef,
|
|
345
353
|
ListWorkforcesRequestPaginateTypeDef,
|
|
@@ -367,6 +375,7 @@ __all__ = (
|
|
|
367
375
|
"ListAssociationsPaginator",
|
|
368
376
|
"ListAutoMLJobsPaginator",
|
|
369
377
|
"ListCandidatesForAutoMLJobPaginator",
|
|
378
|
+
"ListClusterEventsPaginator",
|
|
370
379
|
"ListClusterNodesPaginator",
|
|
371
380
|
"ListClusterSchedulerConfigsPaginator",
|
|
372
381
|
"ListClustersPaginator",
|
|
@@ -433,6 +442,7 @@ __all__ = (
|
|
|
433
442
|
"ListTransformJobsPaginator",
|
|
434
443
|
"ListTrialComponentsPaginator",
|
|
435
444
|
"ListTrialsPaginator",
|
|
445
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
436
446
|
"ListUserProfilesPaginator",
|
|
437
447
|
"ListWorkforcesPaginator",
|
|
438
448
|
"ListWorkteamsPaginator",
|
|
@@ -652,6 +662,27 @@ class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBa
|
|
|
652
662
|
"""
|
|
653
663
|
|
|
654
664
|
|
|
665
|
+
if TYPE_CHECKING:
|
|
666
|
+
_ListClusterEventsPaginatorBase = Paginator[ListClusterEventsResponseTypeDef]
|
|
667
|
+
else:
|
|
668
|
+
_ListClusterEventsPaginatorBase = Paginator # type: ignore[assignment]
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
class ListClusterEventsPaginator(_ListClusterEventsPaginatorBase):
|
|
672
|
+
"""
|
|
673
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents)
|
|
674
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
675
|
+
"""
|
|
676
|
+
|
|
677
|
+
def paginate( # type: ignore[override]
|
|
678
|
+
self, **kwargs: Unpack[ListClusterEventsRequestPaginateTypeDef]
|
|
679
|
+
) -> PageIterator[ListClusterEventsResponseTypeDef]:
|
|
680
|
+
"""
|
|
681
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents.paginate)
|
|
682
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
683
|
+
"""
|
|
684
|
+
|
|
685
|
+
|
|
655
686
|
if TYPE_CHECKING:
|
|
656
687
|
_ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
|
|
657
688
|
else:
|
|
@@ -2070,6 +2101,29 @@ class ListTrialsPaginator(_ListTrialsPaginatorBase):
|
|
|
2070
2101
|
"""
|
|
2071
2102
|
|
|
2072
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
|
+
|
|
2073
2127
|
if TYPE_CHECKING:
|
|
2074
2128
|
_ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
|
|
2075
2129
|
else:
|
|
@@ -22,6 +22,7 @@ Usage::
|
|
|
22
22
|
ListAssociationsPaginator,
|
|
23
23
|
ListAutoMLJobsPaginator,
|
|
24
24
|
ListCandidatesForAutoMLJobPaginator,
|
|
25
|
+
ListClusterEventsPaginator,
|
|
25
26
|
ListClusterNodesPaginator,
|
|
26
27
|
ListClusterSchedulerConfigsPaginator,
|
|
27
28
|
ListClustersPaginator,
|
|
@@ -88,6 +89,7 @@ Usage::
|
|
|
88
89
|
ListTransformJobsPaginator,
|
|
89
90
|
ListTrialComponentsPaginator,
|
|
90
91
|
ListTrialsPaginator,
|
|
92
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
91
93
|
ListUserProfilesPaginator,
|
|
92
94
|
ListWorkforcesPaginator,
|
|
93
95
|
ListWorkteamsPaginator,
|
|
@@ -107,6 +109,7 @@ Usage::
|
|
|
107
109
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
108
110
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
109
111
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
112
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
110
113
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
111
114
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
112
115
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -173,6 +176,7 @@ Usage::
|
|
|
173
176
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
174
177
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
175
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")
|
|
176
180
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
177
181
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
178
182
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -208,6 +212,8 @@ from .type_defs import (
|
|
|
208
212
|
ListAutoMLJobsResponseTypeDef,
|
|
209
213
|
ListCandidatesForAutoMLJobRequestPaginateTypeDef,
|
|
210
214
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
215
|
+
ListClusterEventsRequestPaginateTypeDef,
|
|
216
|
+
ListClusterEventsResponseTypeDef,
|
|
211
217
|
ListClusterNodesRequestPaginateTypeDef,
|
|
212
218
|
ListClusterNodesResponseTypeDef,
|
|
213
219
|
ListClusterSchedulerConfigsRequestPaginateTypeDef,
|
|
@@ -340,6 +346,8 @@ from .type_defs import (
|
|
|
340
346
|
ListTrialComponentsResponseTypeDef,
|
|
341
347
|
ListTrialsRequestPaginateTypeDef,
|
|
342
348
|
ListTrialsResponseTypeDef,
|
|
349
|
+
ListUltraServersByReservedCapacityRequestPaginateTypeDef,
|
|
350
|
+
ListUltraServersByReservedCapacityResponseTypeDef,
|
|
343
351
|
ListUserProfilesRequestPaginateTypeDef,
|
|
344
352
|
ListUserProfilesResponseTypeDef,
|
|
345
353
|
ListWorkforcesRequestPaginateTypeDef,
|
|
@@ -366,6 +374,7 @@ __all__ = (
|
|
|
366
374
|
"ListAssociationsPaginator",
|
|
367
375
|
"ListAutoMLJobsPaginator",
|
|
368
376
|
"ListCandidatesForAutoMLJobPaginator",
|
|
377
|
+
"ListClusterEventsPaginator",
|
|
369
378
|
"ListClusterNodesPaginator",
|
|
370
379
|
"ListClusterSchedulerConfigsPaginator",
|
|
371
380
|
"ListClustersPaginator",
|
|
@@ -432,6 +441,7 @@ __all__ = (
|
|
|
432
441
|
"ListTransformJobsPaginator",
|
|
433
442
|
"ListTrialComponentsPaginator",
|
|
434
443
|
"ListTrialsPaginator",
|
|
444
|
+
"ListUltraServersByReservedCapacityPaginator",
|
|
435
445
|
"ListUserProfilesPaginator",
|
|
436
446
|
"ListWorkforcesPaginator",
|
|
437
447
|
"ListWorkteamsPaginator",
|
|
@@ -620,6 +630,24 @@ class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBa
|
|
|
620
630
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
|
|
621
631
|
"""
|
|
622
632
|
|
|
633
|
+
if TYPE_CHECKING:
|
|
634
|
+
_ListClusterEventsPaginatorBase = Paginator[ListClusterEventsResponseTypeDef]
|
|
635
|
+
else:
|
|
636
|
+
_ListClusterEventsPaginatorBase = Paginator # type: ignore[assignment]
|
|
637
|
+
|
|
638
|
+
class ListClusterEventsPaginator(_ListClusterEventsPaginatorBase):
|
|
639
|
+
"""
|
|
640
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents)
|
|
641
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
642
|
+
"""
|
|
643
|
+
def paginate( # type: ignore[override]
|
|
644
|
+
self, **kwargs: Unpack[ListClusterEventsRequestPaginateTypeDef]
|
|
645
|
+
) -> PageIterator[ListClusterEventsResponseTypeDef]:
|
|
646
|
+
"""
|
|
647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents.paginate)
|
|
648
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
649
|
+
"""
|
|
650
|
+
|
|
623
651
|
if TYPE_CHECKING:
|
|
624
652
|
_ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
|
|
625
653
|
else:
|
|
@@ -1840,6 +1868,26 @@ class ListTrialsPaginator(_ListTrialsPaginatorBase):
|
|
|
1840
1868
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
|
|
1841
1869
|
"""
|
|
1842
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
|
+
|
|
1843
1891
|
if TYPE_CHECKING:
|
|
1844
1892
|
_ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
|
|
1845
1893
|
else:
|