mypy-boto3-sagemaker 1.35.68__py3-none-any.whl → 1.35.75__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 +16 -0
- mypy_boto3_sagemaker/__init__.pyi +16 -0
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +525 -72
- mypy_boto3_sagemaker/client.pyi +525 -72
- mypy_boto3_sagemaker/literals.py +84 -0
- mypy_boto3_sagemaker/literals.pyi +84 -0
- mypy_boto3_sagemaker/paginator.py +83 -0
- mypy_boto3_sagemaker/paginator.pyi +75 -0
- mypy_boto3_sagemaker/type_defs.py +600 -0
- mypy_boto3_sagemaker/type_defs.pyi +536 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/METADATA +46 -6
- mypy_boto3_sagemaker-1.35.75.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.35.68.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -32,9 +32,11 @@ from .paginator import (
|
|
|
32
32
|
ListAutoMLJobsPaginator,
|
|
33
33
|
ListCandidatesForAutoMLJobPaginator,
|
|
34
34
|
ListClusterNodesPaginator,
|
|
35
|
+
ListClusterSchedulerConfigsPaginator,
|
|
35
36
|
ListClustersPaginator,
|
|
36
37
|
ListCodeRepositoriesPaginator,
|
|
37
38
|
ListCompilationJobsPaginator,
|
|
39
|
+
ListComputeQuotasPaginator,
|
|
38
40
|
ListContextsPaginator,
|
|
39
41
|
ListDataQualityJobDefinitionsPaginator,
|
|
40
42
|
ListDeviceFleetsPaginator,
|
|
@@ -76,6 +78,7 @@ from .paginator import (
|
|
|
76
78
|
ListNotebookInstanceLifecycleConfigsPaginator,
|
|
77
79
|
ListNotebookInstancesPaginator,
|
|
78
80
|
ListOptimizationJobsPaginator,
|
|
81
|
+
ListPartnerAppsPaginator,
|
|
79
82
|
ListPipelineExecutionsPaginator,
|
|
80
83
|
ListPipelineExecutionStepsPaginator,
|
|
81
84
|
ListPipelineParametersForExecutionPaginator,
|
|
@@ -89,6 +92,7 @@ from .paginator import (
|
|
|
89
92
|
ListTagsPaginator,
|
|
90
93
|
ListTrainingJobsForHyperParameterTuningJobPaginator,
|
|
91
94
|
ListTrainingJobsPaginator,
|
|
95
|
+
ListTrainingPlansPaginator,
|
|
92
96
|
ListTransformJobsPaginator,
|
|
93
97
|
ListTrialComponentsPaginator,
|
|
94
98
|
ListTrialsPaginator,
|
|
@@ -124,10 +128,14 @@ from .type_defs import (
|
|
|
124
128
|
CreateAutoMLJobV2ResponseTypeDef,
|
|
125
129
|
CreateClusterRequestRequestTypeDef,
|
|
126
130
|
CreateClusterResponseTypeDef,
|
|
131
|
+
CreateClusterSchedulerConfigRequestRequestTypeDef,
|
|
132
|
+
CreateClusterSchedulerConfigResponseTypeDef,
|
|
127
133
|
CreateCodeRepositoryInputRequestTypeDef,
|
|
128
134
|
CreateCodeRepositoryOutputTypeDef,
|
|
129
135
|
CreateCompilationJobRequestRequestTypeDef,
|
|
130
136
|
CreateCompilationJobResponseTypeDef,
|
|
137
|
+
CreateComputeQuotaRequestRequestTypeDef,
|
|
138
|
+
CreateComputeQuotaResponseTypeDef,
|
|
131
139
|
CreateContextRequestRequestTypeDef,
|
|
132
140
|
CreateContextResponseTypeDef,
|
|
133
141
|
CreateDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -195,6 +203,10 @@ from .type_defs import (
|
|
|
195
203
|
CreateNotebookInstanceOutputTypeDef,
|
|
196
204
|
CreateOptimizationJobRequestRequestTypeDef,
|
|
197
205
|
CreateOptimizationJobResponseTypeDef,
|
|
206
|
+
CreatePartnerAppPresignedUrlRequestRequestTypeDef,
|
|
207
|
+
CreatePartnerAppPresignedUrlResponseTypeDef,
|
|
208
|
+
CreatePartnerAppRequestRequestTypeDef,
|
|
209
|
+
CreatePartnerAppResponseTypeDef,
|
|
198
210
|
CreatePipelineRequestRequestTypeDef,
|
|
199
211
|
CreatePipelineResponseTypeDef,
|
|
200
212
|
CreatePresignedDomainUrlRequestRequestTypeDef,
|
|
@@ -213,6 +225,8 @@ from .type_defs import (
|
|
|
213
225
|
CreateStudioLifecycleConfigResponseTypeDef,
|
|
214
226
|
CreateTrainingJobRequestRequestTypeDef,
|
|
215
227
|
CreateTrainingJobResponseTypeDef,
|
|
228
|
+
CreateTrainingPlanRequestRequestTypeDef,
|
|
229
|
+
CreateTrainingPlanResponseTypeDef,
|
|
216
230
|
CreateTransformJobRequestRequestTypeDef,
|
|
217
231
|
CreateTransformJobResponseTypeDef,
|
|
218
232
|
CreateTrialComponentRequestRequestTypeDef,
|
|
@@ -236,8 +250,10 @@ from .type_defs import (
|
|
|
236
250
|
DeleteAssociationResponseTypeDef,
|
|
237
251
|
DeleteClusterRequestRequestTypeDef,
|
|
238
252
|
DeleteClusterResponseTypeDef,
|
|
253
|
+
DeleteClusterSchedulerConfigRequestRequestTypeDef,
|
|
239
254
|
DeleteCodeRepositoryInputRequestTypeDef,
|
|
240
255
|
DeleteCompilationJobRequestRequestTypeDef,
|
|
256
|
+
DeleteComputeQuotaRequestRequestTypeDef,
|
|
241
257
|
DeleteContextRequestRequestTypeDef,
|
|
242
258
|
DeleteContextResponseTypeDef,
|
|
243
259
|
DeleteDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -275,6 +291,8 @@ from .type_defs import (
|
|
|
275
291
|
DeleteNotebookInstanceInputRequestTypeDef,
|
|
276
292
|
DeleteNotebookInstanceLifecycleConfigInputRequestTypeDef,
|
|
277
293
|
DeleteOptimizationJobRequestRequestTypeDef,
|
|
294
|
+
DeletePartnerAppRequestRequestTypeDef,
|
|
295
|
+
DeletePartnerAppResponseTypeDef,
|
|
278
296
|
DeletePipelineRequestRequestTypeDef,
|
|
279
297
|
DeletePipelineResponseTypeDef,
|
|
280
298
|
DeleteProjectInputRequestTypeDef,
|
|
@@ -308,10 +326,14 @@ from .type_defs import (
|
|
|
308
326
|
DescribeClusterNodeResponseTypeDef,
|
|
309
327
|
DescribeClusterRequestRequestTypeDef,
|
|
310
328
|
DescribeClusterResponseTypeDef,
|
|
329
|
+
DescribeClusterSchedulerConfigRequestRequestTypeDef,
|
|
330
|
+
DescribeClusterSchedulerConfigResponseTypeDef,
|
|
311
331
|
DescribeCodeRepositoryInputRequestTypeDef,
|
|
312
332
|
DescribeCodeRepositoryOutputTypeDef,
|
|
313
333
|
DescribeCompilationJobRequestRequestTypeDef,
|
|
314
334
|
DescribeCompilationJobResponseTypeDef,
|
|
335
|
+
DescribeComputeQuotaRequestRequestTypeDef,
|
|
336
|
+
DescribeComputeQuotaResponseTypeDef,
|
|
315
337
|
DescribeContextRequestRequestTypeDef,
|
|
316
338
|
DescribeContextResponseTypeDef,
|
|
317
339
|
DescribeDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -386,6 +408,8 @@ from .type_defs import (
|
|
|
386
408
|
DescribeNotebookInstanceOutputTypeDef,
|
|
387
409
|
DescribeOptimizationJobRequestRequestTypeDef,
|
|
388
410
|
DescribeOptimizationJobResponseTypeDef,
|
|
411
|
+
DescribePartnerAppRequestRequestTypeDef,
|
|
412
|
+
DescribePartnerAppResponseTypeDef,
|
|
389
413
|
DescribePipelineDefinitionForExecutionRequestRequestTypeDef,
|
|
390
414
|
DescribePipelineDefinitionForExecutionResponseTypeDef,
|
|
391
415
|
DescribePipelineExecutionRequestRequestTypeDef,
|
|
@@ -404,6 +428,8 @@ from .type_defs import (
|
|
|
404
428
|
DescribeSubscribedWorkteamResponseTypeDef,
|
|
405
429
|
DescribeTrainingJobRequestRequestTypeDef,
|
|
406
430
|
DescribeTrainingJobResponseTypeDef,
|
|
431
|
+
DescribeTrainingPlanRequestRequestTypeDef,
|
|
432
|
+
DescribeTrainingPlanResponseTypeDef,
|
|
407
433
|
DescribeTransformJobRequestRequestTypeDef,
|
|
408
434
|
DescribeTransformJobResponseTypeDef,
|
|
409
435
|
DescribeTrialComponentRequestRequestTypeDef,
|
|
@@ -452,12 +478,16 @@ from .type_defs import (
|
|
|
452
478
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
453
479
|
ListClusterNodesRequestRequestTypeDef,
|
|
454
480
|
ListClusterNodesResponseTypeDef,
|
|
481
|
+
ListClusterSchedulerConfigsRequestRequestTypeDef,
|
|
482
|
+
ListClusterSchedulerConfigsResponseTypeDef,
|
|
455
483
|
ListClustersRequestRequestTypeDef,
|
|
456
484
|
ListClustersResponseTypeDef,
|
|
457
485
|
ListCodeRepositoriesInputRequestTypeDef,
|
|
458
486
|
ListCodeRepositoriesOutputTypeDef,
|
|
459
487
|
ListCompilationJobsRequestRequestTypeDef,
|
|
460
488
|
ListCompilationJobsResponseTypeDef,
|
|
489
|
+
ListComputeQuotasRequestRequestTypeDef,
|
|
490
|
+
ListComputeQuotasResponseTypeDef,
|
|
461
491
|
ListContextsRequestRequestTypeDef,
|
|
462
492
|
ListContextsResponseTypeDef,
|
|
463
493
|
ListDataQualityJobDefinitionsRequestRequestTypeDef,
|
|
@@ -546,6 +576,8 @@ from .type_defs import (
|
|
|
546
576
|
ListNotebookInstancesOutputTypeDef,
|
|
547
577
|
ListOptimizationJobsRequestRequestTypeDef,
|
|
548
578
|
ListOptimizationJobsResponseTypeDef,
|
|
579
|
+
ListPartnerAppsRequestRequestTypeDef,
|
|
580
|
+
ListPartnerAppsResponseTypeDef,
|
|
549
581
|
ListPipelineExecutionsRequestRequestTypeDef,
|
|
550
582
|
ListPipelineExecutionsResponseTypeDef,
|
|
551
583
|
ListPipelineExecutionStepsRequestRequestTypeDef,
|
|
@@ -574,6 +606,8 @@ from .type_defs import (
|
|
|
574
606
|
ListTrainingJobsForHyperParameterTuningJobResponseTypeDef,
|
|
575
607
|
ListTrainingJobsRequestRequestTypeDef,
|
|
576
608
|
ListTrainingJobsResponseTypeDef,
|
|
609
|
+
ListTrainingPlansRequestRequestTypeDef,
|
|
610
|
+
ListTrainingPlansResponseTypeDef,
|
|
577
611
|
ListTransformJobsRequestRequestTypeDef,
|
|
578
612
|
ListTransformJobsResponseTypeDef,
|
|
579
613
|
ListTrialComponentsRequestRequestTypeDef,
|
|
@@ -597,6 +631,8 @@ from .type_defs import (
|
|
|
597
631
|
RetryPipelineExecutionResponseTypeDef,
|
|
598
632
|
SearchRequestRequestTypeDef,
|
|
599
633
|
SearchResponseTypeDef,
|
|
634
|
+
SearchTrainingPlanOfferingsRequestRequestTypeDef,
|
|
635
|
+
SearchTrainingPlanOfferingsResponseTypeDef,
|
|
600
636
|
SendPipelineExecutionStepFailureRequestRequestTypeDef,
|
|
601
637
|
SendPipelineExecutionStepFailureResponseTypeDef,
|
|
602
638
|
SendPipelineExecutionStepSuccessRequestRequestTypeDef,
|
|
@@ -637,10 +673,14 @@ from .type_defs import (
|
|
|
637
673
|
UpdateArtifactResponseTypeDef,
|
|
638
674
|
UpdateClusterRequestRequestTypeDef,
|
|
639
675
|
UpdateClusterResponseTypeDef,
|
|
676
|
+
UpdateClusterSchedulerConfigRequestRequestTypeDef,
|
|
677
|
+
UpdateClusterSchedulerConfigResponseTypeDef,
|
|
640
678
|
UpdateClusterSoftwareRequestRequestTypeDef,
|
|
641
679
|
UpdateClusterSoftwareResponseTypeDef,
|
|
642
680
|
UpdateCodeRepositoryInputRequestTypeDef,
|
|
643
681
|
UpdateCodeRepositoryOutputTypeDef,
|
|
682
|
+
UpdateComputeQuotaRequestRequestTypeDef,
|
|
683
|
+
UpdateComputeQuotaResponseTypeDef,
|
|
644
684
|
UpdateContextRequestRequestTypeDef,
|
|
645
685
|
UpdateContextResponseTypeDef,
|
|
646
686
|
UpdateDeviceFleetRequestRequestTypeDef,
|
|
@@ -680,6 +720,8 @@ from .type_defs import (
|
|
|
680
720
|
UpdateMonitoringScheduleResponseTypeDef,
|
|
681
721
|
UpdateNotebookInstanceInputRequestTypeDef,
|
|
682
722
|
UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef,
|
|
723
|
+
UpdatePartnerAppRequestRequestTypeDef,
|
|
724
|
+
UpdatePartnerAppResponseTypeDef,
|
|
683
725
|
UpdatePipelineExecutionRequestRequestTypeDef,
|
|
684
726
|
UpdatePipelineExecutionResponseTypeDef,
|
|
685
727
|
UpdatePipelineRequestRequestTypeDef,
|
|
@@ -759,11 +801,35 @@ class SageMakerClient(BaseClient):
|
|
|
759
801
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#exceptions)
|
|
760
802
|
"""
|
|
761
803
|
|
|
804
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
805
|
+
"""
|
|
806
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
807
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
808
|
+
"""
|
|
809
|
+
|
|
810
|
+
def generate_presigned_url(
|
|
811
|
+
self,
|
|
812
|
+
ClientMethod: str,
|
|
813
|
+
Params: Mapping[str, Any] = ...,
|
|
814
|
+
ExpiresIn: int = 3600,
|
|
815
|
+
HttpMethod: str = ...,
|
|
816
|
+
) -> str:
|
|
817
|
+
"""
|
|
818
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
819
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
820
|
+
"""
|
|
821
|
+
|
|
822
|
+
def close(self) -> None:
|
|
823
|
+
"""
|
|
824
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/close.html)
|
|
825
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#close)
|
|
826
|
+
"""
|
|
827
|
+
|
|
762
828
|
def add_association(
|
|
763
829
|
self, **kwargs: Unpack[AddAssociationRequestRequestTypeDef]
|
|
764
830
|
) -> AddAssociationResponseTypeDef:
|
|
765
831
|
"""
|
|
766
|
-
Creates an
|
|
832
|
+
Creates an <i>association</i> between the source and the destination.
|
|
767
833
|
|
|
768
834
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/add_association.html)
|
|
769
835
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#add_association)
|
|
@@ -801,35 +867,17 @@ class SageMakerClient(BaseClient):
|
|
|
801
867
|
self, **kwargs: Unpack[BatchDescribeModelPackageInputRequestTypeDef]
|
|
802
868
|
) -> BatchDescribeModelPackageOutputTypeDef:
|
|
803
869
|
"""
|
|
804
|
-
This action batch describes a list of versioned model packages
|
|
805
|
-
API
|
|
806
|
-
Documentation](https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackage).
|
|
870
|
+
This action batch describes a list of versioned model packages.
|
|
807
871
|
|
|
808
872
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_describe_model_package.html)
|
|
809
873
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_describe_model_package)
|
|
810
874
|
"""
|
|
811
875
|
|
|
812
|
-
def can_paginate(self, operation_name: str) -> bool:
|
|
813
|
-
"""
|
|
814
|
-
Check if an operation can be paginated.
|
|
815
|
-
|
|
816
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
817
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
818
|
-
"""
|
|
819
|
-
|
|
820
|
-
def close(self) -> None:
|
|
821
|
-
"""
|
|
822
|
-
Closes underlying endpoint connections.
|
|
823
|
-
|
|
824
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/close.html)
|
|
825
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#close)
|
|
826
|
-
"""
|
|
827
|
-
|
|
828
876
|
def create_action(
|
|
829
877
|
self, **kwargs: Unpack[CreateActionRequestRequestTypeDef]
|
|
830
878
|
) -> CreateActionResponseTypeDef:
|
|
831
879
|
"""
|
|
832
|
-
Creates an
|
|
880
|
+
Creates an <i>action</i>.
|
|
833
881
|
|
|
834
882
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_action.html)
|
|
835
883
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_action)
|
|
@@ -870,7 +918,7 @@ class SageMakerClient(BaseClient):
|
|
|
870
918
|
self, **kwargs: Unpack[CreateArtifactRequestRequestTypeDef]
|
|
871
919
|
) -> CreateArtifactResponseTypeDef:
|
|
872
920
|
"""
|
|
873
|
-
Creates an
|
|
921
|
+
Creates an <i>artifact</i>.
|
|
874
922
|
|
|
875
923
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_artifact.html)
|
|
876
924
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_artifact)
|
|
@@ -907,6 +955,16 @@ class SageMakerClient(BaseClient):
|
|
|
907
955
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster)
|
|
908
956
|
"""
|
|
909
957
|
|
|
958
|
+
def create_cluster_scheduler_config(
|
|
959
|
+
self, **kwargs: Unpack[CreateClusterSchedulerConfigRequestRequestTypeDef]
|
|
960
|
+
) -> CreateClusterSchedulerConfigResponseTypeDef:
|
|
961
|
+
"""
|
|
962
|
+
Create cluster policy configuration.
|
|
963
|
+
|
|
964
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_cluster_scheduler_config.html)
|
|
965
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster_scheduler_config)
|
|
966
|
+
"""
|
|
967
|
+
|
|
910
968
|
def create_code_repository(
|
|
911
969
|
self, **kwargs: Unpack[CreateCodeRepositoryInputRequestTypeDef]
|
|
912
970
|
) -> CreateCodeRepositoryOutputTypeDef:
|
|
@@ -927,11 +985,21 @@ class SageMakerClient(BaseClient):
|
|
|
927
985
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compilation_job)
|
|
928
986
|
"""
|
|
929
987
|
|
|
988
|
+
def create_compute_quota(
|
|
989
|
+
self, **kwargs: Unpack[CreateComputeQuotaRequestRequestTypeDef]
|
|
990
|
+
) -> CreateComputeQuotaResponseTypeDef:
|
|
991
|
+
"""
|
|
992
|
+
Create compute allocation definition.
|
|
993
|
+
|
|
994
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_compute_quota.html)
|
|
995
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compute_quota)
|
|
996
|
+
"""
|
|
997
|
+
|
|
930
998
|
def create_context(
|
|
931
999
|
self, **kwargs: Unpack[CreateContextRequestRequestTypeDef]
|
|
932
1000
|
) -> CreateContextResponseTypeDef:
|
|
933
1001
|
"""
|
|
934
|
-
Creates a
|
|
1002
|
+
Creates a <i>context</i>.
|
|
935
1003
|
|
|
936
1004
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_context.html)
|
|
937
1005
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_context)
|
|
@@ -961,7 +1029,7 @@ class SageMakerClient(BaseClient):
|
|
|
961
1029
|
self, **kwargs: Unpack[CreateDomainRequestRequestTypeDef]
|
|
962
1030
|
) -> CreateDomainResponseTypeDef:
|
|
963
1031
|
"""
|
|
964
|
-
Creates a
|
|
1032
|
+
Creates a <code>Domain</code>.
|
|
965
1033
|
|
|
966
1034
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_domain.html)
|
|
967
1035
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_domain)
|
|
@@ -1022,7 +1090,7 @@ class SageMakerClient(BaseClient):
|
|
|
1022
1090
|
self, **kwargs: Unpack[CreateExperimentRequestRequestTypeDef]
|
|
1023
1091
|
) -> CreateExperimentResponseTypeDef:
|
|
1024
1092
|
"""
|
|
1025
|
-
Creates a SageMaker
|
|
1093
|
+
Creates a SageMaker <i>experiment</i>.
|
|
1026
1094
|
|
|
1027
1095
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_experiment.html)
|
|
1028
1096
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_experiment)
|
|
@@ -1032,7 +1100,7 @@ class SageMakerClient(BaseClient):
|
|
|
1032
1100
|
self, **kwargs: Unpack[CreateFeatureGroupRequestRequestTypeDef]
|
|
1033
1101
|
) -> CreateFeatureGroupResponseTypeDef:
|
|
1034
1102
|
"""
|
|
1035
|
-
Create a new
|
|
1103
|
+
Create a new <code>FeatureGroup</code>.
|
|
1036
1104
|
|
|
1037
1105
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_feature_group.html)
|
|
1038
1106
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_feature_group)
|
|
@@ -1103,7 +1171,7 @@ class SageMakerClient(BaseClient):
|
|
|
1103
1171
|
self, **kwargs: Unpack[CreateImageVersionRequestRequestTypeDef]
|
|
1104
1172
|
) -> CreateImageVersionResponseTypeDef:
|
|
1105
1173
|
"""
|
|
1106
|
-
Creates a version of the SageMaker image specified by
|
|
1174
|
+
Creates a version of the SageMaker image specified by <code>ImageName</code>.
|
|
1107
1175
|
|
|
1108
1176
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image_version.html)
|
|
1109
1177
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image_version)
|
|
@@ -1286,6 +1354,26 @@ class SageMakerClient(BaseClient):
|
|
|
1286
1354
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_optimization_job)
|
|
1287
1355
|
"""
|
|
1288
1356
|
|
|
1357
|
+
def create_partner_app(
|
|
1358
|
+
self, **kwargs: Unpack[CreatePartnerAppRequestRequestTypeDef]
|
|
1359
|
+
) -> CreatePartnerAppResponseTypeDef:
|
|
1360
|
+
"""
|
|
1361
|
+
Creates an Amazon SageMaker Partner AI App.
|
|
1362
|
+
|
|
1363
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app.html)
|
|
1364
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app)
|
|
1365
|
+
"""
|
|
1366
|
+
|
|
1367
|
+
def create_partner_app_presigned_url(
|
|
1368
|
+
self, **kwargs: Unpack[CreatePartnerAppPresignedUrlRequestRequestTypeDef]
|
|
1369
|
+
) -> CreatePartnerAppPresignedUrlResponseTypeDef:
|
|
1370
|
+
"""
|
|
1371
|
+
Creates a presigned URL to access an Amazon SageMaker Partner AI App.
|
|
1372
|
+
|
|
1373
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app_presigned_url.html)
|
|
1374
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app_presigned_url)
|
|
1375
|
+
"""
|
|
1376
|
+
|
|
1289
1377
|
def create_pipeline(
|
|
1290
1378
|
self, **kwargs: Unpack[CreatePipelineRequestRequestTypeDef]
|
|
1291
1379
|
) -> CreatePipelineResponseTypeDef:
|
|
@@ -1379,6 +1467,16 @@ class SageMakerClient(BaseClient):
|
|
|
1379
1467
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_job)
|
|
1380
1468
|
"""
|
|
1381
1469
|
|
|
1470
|
+
def create_training_plan(
|
|
1471
|
+
self, **kwargs: Unpack[CreateTrainingPlanRequestRequestTypeDef]
|
|
1472
|
+
) -> CreateTrainingPlanResponseTypeDef:
|
|
1473
|
+
"""
|
|
1474
|
+
Creates a new training plan in SageMaker to reserve compute capacity.
|
|
1475
|
+
|
|
1476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_training_plan.html)
|
|
1477
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_plan)
|
|
1478
|
+
"""
|
|
1479
|
+
|
|
1382
1480
|
def create_transform_job(
|
|
1383
1481
|
self, **kwargs: Unpack[CreateTransformJobRequestRequestTypeDef]
|
|
1384
1482
|
) -> CreateTransformJobResponseTypeDef:
|
|
@@ -1393,7 +1491,7 @@ class SageMakerClient(BaseClient):
|
|
|
1393
1491
|
self, **kwargs: Unpack[CreateTrialRequestRequestTypeDef]
|
|
1394
1492
|
) -> CreateTrialResponseTypeDef:
|
|
1395
1493
|
"""
|
|
1396
|
-
Creates an SageMaker
|
|
1494
|
+
Creates an SageMaker <i>trial</i>.
|
|
1397
1495
|
|
|
1398
1496
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial.html)
|
|
1399
1497
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial)
|
|
@@ -1403,7 +1501,8 @@ class SageMakerClient(BaseClient):
|
|
|
1403
1501
|
self, **kwargs: Unpack[CreateTrialComponentRequestRequestTypeDef]
|
|
1404
1502
|
) -> CreateTrialComponentResponseTypeDef:
|
|
1405
1503
|
"""
|
|
1406
|
-
Creates a
|
|
1504
|
+
Creates a <i>trial component</i>, which is a stage of a machine learning
|
|
1505
|
+
<i>trial</i>.
|
|
1407
1506
|
|
|
1408
1507
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial_component.html)
|
|
1409
1508
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial_component)
|
|
@@ -1509,6 +1608,16 @@ class SageMakerClient(BaseClient):
|
|
|
1509
1608
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster)
|
|
1510
1609
|
"""
|
|
1511
1610
|
|
|
1611
|
+
def delete_cluster_scheduler_config(
|
|
1612
|
+
self, **kwargs: Unpack[DeleteClusterSchedulerConfigRequestRequestTypeDef]
|
|
1613
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1614
|
+
"""
|
|
1615
|
+
Deletes the cluster policy of the cluster.
|
|
1616
|
+
|
|
1617
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_cluster_scheduler_config.html)
|
|
1618
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster_scheduler_config)
|
|
1619
|
+
"""
|
|
1620
|
+
|
|
1512
1621
|
def delete_code_repository(
|
|
1513
1622
|
self, **kwargs: Unpack[DeleteCodeRepositoryInputRequestTypeDef]
|
|
1514
1623
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -1529,6 +1638,16 @@ class SageMakerClient(BaseClient):
|
|
|
1529
1638
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compilation_job)
|
|
1530
1639
|
"""
|
|
1531
1640
|
|
|
1641
|
+
def delete_compute_quota(
|
|
1642
|
+
self, **kwargs: Unpack[DeleteComputeQuotaRequestRequestTypeDef]
|
|
1643
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1644
|
+
"""
|
|
1645
|
+
Deletes the compute allocation from the cluster.
|
|
1646
|
+
|
|
1647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_compute_quota.html)
|
|
1648
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compute_quota)
|
|
1649
|
+
"""
|
|
1650
|
+
|
|
1532
1651
|
def delete_context(
|
|
1533
1652
|
self, **kwargs: Unpack[DeleteContextRequestRequestTypeDef]
|
|
1534
1653
|
) -> DeleteContextResponseTypeDef:
|
|
@@ -1625,8 +1744,8 @@ class SageMakerClient(BaseClient):
|
|
|
1625
1744
|
self, **kwargs: Unpack[DeleteFeatureGroupRequestRequestTypeDef]
|
|
1626
1745
|
) -> EmptyResponseMetadataTypeDef:
|
|
1627
1746
|
"""
|
|
1628
|
-
Delete the
|
|
1629
|
-
the
|
|
1747
|
+
Delete the <code>FeatureGroup</code> and any data that was written to the
|
|
1748
|
+
<code>OnlineStore</code> of the <code>FeatureGroup</code>.
|
|
1630
1749
|
|
|
1631
1750
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_feature_group.html)
|
|
1632
1751
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_feature_group)
|
|
@@ -1860,6 +1979,16 @@ class SageMakerClient(BaseClient):
|
|
|
1860
1979
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_optimization_job)
|
|
1861
1980
|
"""
|
|
1862
1981
|
|
|
1982
|
+
def delete_partner_app(
|
|
1983
|
+
self, **kwargs: Unpack[DeletePartnerAppRequestRequestTypeDef]
|
|
1984
|
+
) -> DeletePartnerAppResponseTypeDef:
|
|
1985
|
+
"""
|
|
1986
|
+
Deletes a SageMaker Partner AI App.
|
|
1987
|
+
|
|
1988
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_partner_app.html)
|
|
1989
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_partner_app)
|
|
1990
|
+
"""
|
|
1991
|
+
|
|
1863
1992
|
def delete_pipeline(
|
|
1864
1993
|
self, **kwargs: Unpack[DeletePipelineRequestRequestTypeDef]
|
|
1865
1994
|
) -> DeletePipelineResponseTypeDef:
|
|
@@ -2022,8 +2151,8 @@ class SageMakerClient(BaseClient):
|
|
|
2022
2151
|
self, **kwargs: Unpack[DescribeAutoMLJobRequestRequestTypeDef]
|
|
2023
2152
|
) -> DescribeAutoMLJobResponseTypeDef:
|
|
2024
2153
|
"""
|
|
2025
|
-
Returns information about an AutoML job created by calling
|
|
2026
|
-
|
|
2154
|
+
Returns information about an AutoML job created by calling <a
|
|
2155
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2027
2156
|
|
|
2028
2157
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job.html)
|
|
2029
2158
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job)
|
|
@@ -2033,10 +2162,10 @@ class SageMakerClient(BaseClient):
|
|
|
2033
2162
|
self, **kwargs: Unpack[DescribeAutoMLJobV2RequestRequestTypeDef]
|
|
2034
2163
|
) -> DescribeAutoMLJobV2ResponseTypeDef:
|
|
2035
2164
|
"""
|
|
2036
|
-
Returns information about an AutoML job created by calling
|
|
2037
|
-
|
|
2038
|
-
or
|
|
2039
|
-
|
|
2165
|
+
Returns information about an AutoML job created by calling <a
|
|
2166
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>
|
|
2167
|
+
or <a
|
|
2168
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2040
2169
|
|
|
2041
2170
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job_v2.html)
|
|
2042
2171
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job_v2)
|
|
@@ -2056,13 +2185,23 @@ class SageMakerClient(BaseClient):
|
|
|
2056
2185
|
self, **kwargs: Unpack[DescribeClusterNodeRequestRequestTypeDef]
|
|
2057
2186
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
2058
2187
|
"""
|
|
2059
|
-
Retrieves information of a node (also called a
|
|
2060
|
-
SageMaker HyperPod cluster.
|
|
2188
|
+
Retrieves information of a node (also called a <i>instance</i> interchangeably)
|
|
2189
|
+
of a SageMaker HyperPod cluster.
|
|
2061
2190
|
|
|
2062
2191
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_node.html)
|
|
2063
2192
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_node)
|
|
2064
2193
|
"""
|
|
2065
2194
|
|
|
2195
|
+
def describe_cluster_scheduler_config(
|
|
2196
|
+
self, **kwargs: Unpack[DescribeClusterSchedulerConfigRequestRequestTypeDef]
|
|
2197
|
+
) -> DescribeClusterSchedulerConfigResponseTypeDef:
|
|
2198
|
+
"""
|
|
2199
|
+
Description of the cluster policy.
|
|
2200
|
+
|
|
2201
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_scheduler_config.html)
|
|
2202
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_scheduler_config)
|
|
2203
|
+
"""
|
|
2204
|
+
|
|
2066
2205
|
def describe_code_repository(
|
|
2067
2206
|
self, **kwargs: Unpack[DescribeCodeRepositoryInputRequestTypeDef]
|
|
2068
2207
|
) -> DescribeCodeRepositoryOutputTypeDef:
|
|
@@ -2083,6 +2222,16 @@ class SageMakerClient(BaseClient):
|
|
|
2083
2222
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compilation_job)
|
|
2084
2223
|
"""
|
|
2085
2224
|
|
|
2225
|
+
def describe_compute_quota(
|
|
2226
|
+
self, **kwargs: Unpack[DescribeComputeQuotaRequestRequestTypeDef]
|
|
2227
|
+
) -> DescribeComputeQuotaResponseTypeDef:
|
|
2228
|
+
"""
|
|
2229
|
+
Description of the compute allocation definition.
|
|
2230
|
+
|
|
2231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_compute_quota.html)
|
|
2232
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compute_quota)
|
|
2233
|
+
"""
|
|
2234
|
+
|
|
2086
2235
|
def describe_context(
|
|
2087
2236
|
self, **kwargs: Unpack[DescribeContextRequestRequestTypeDef]
|
|
2088
2237
|
) -> DescribeContextResponseTypeDef:
|
|
@@ -2168,7 +2317,7 @@ class SageMakerClient(BaseClient):
|
|
|
2168
2317
|
) -> DescribeEndpointConfigOutputTypeDef:
|
|
2169
2318
|
"""
|
|
2170
2319
|
Returns the description of an endpoint configuration created using the
|
|
2171
|
-
|
|
2320
|
+
<code>CreateEndpointConfig</code> API.
|
|
2172
2321
|
|
|
2173
2322
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_endpoint_config.html)
|
|
2174
2323
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_endpoint_config)
|
|
@@ -2188,7 +2337,7 @@ class SageMakerClient(BaseClient):
|
|
|
2188
2337
|
self, **kwargs: Unpack[DescribeFeatureGroupRequestRequestTypeDef]
|
|
2189
2338
|
) -> DescribeFeatureGroupResponseTypeDef:
|
|
2190
2339
|
"""
|
|
2191
|
-
Use this operation to describe a
|
|
2340
|
+
Use this operation to describe a <code>FeatureGroup</code>.
|
|
2192
2341
|
|
|
2193
2342
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_feature_group.html)
|
|
2194
2343
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_feature_group)
|
|
@@ -2340,7 +2489,7 @@ class SageMakerClient(BaseClient):
|
|
|
2340
2489
|
self, **kwargs: Unpack[DescribeModelInputRequestTypeDef]
|
|
2341
2490
|
) -> DescribeModelOutputTypeDef:
|
|
2342
2491
|
"""
|
|
2343
|
-
Describes a model that you created using the
|
|
2492
|
+
Describes a model that you created using the <code>CreateModel</code> API.
|
|
2344
2493
|
|
|
2345
2494
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model.html)
|
|
2346
2495
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model)
|
|
@@ -2458,6 +2607,16 @@ class SageMakerClient(BaseClient):
|
|
|
2458
2607
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_optimization_job)
|
|
2459
2608
|
"""
|
|
2460
2609
|
|
|
2610
|
+
def describe_partner_app(
|
|
2611
|
+
self, **kwargs: Unpack[DescribePartnerAppRequestRequestTypeDef]
|
|
2612
|
+
) -> DescribePartnerAppResponseTypeDef:
|
|
2613
|
+
"""
|
|
2614
|
+
Gets information about a SageMaker Partner AI App.
|
|
2615
|
+
|
|
2616
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_partner_app.html)
|
|
2617
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_partner_app)
|
|
2618
|
+
"""
|
|
2619
|
+
|
|
2461
2620
|
def describe_pipeline(
|
|
2462
2621
|
self, **kwargs: Unpack[DescribePipelineRequestRequestTypeDef]
|
|
2463
2622
|
) -> DescribePipelineResponseTypeDef:
|
|
@@ -2548,6 +2707,16 @@ class SageMakerClient(BaseClient):
|
|
|
2548
2707
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_job)
|
|
2549
2708
|
"""
|
|
2550
2709
|
|
|
2710
|
+
def describe_training_plan(
|
|
2711
|
+
self, **kwargs: Unpack[DescribeTrainingPlanRequestRequestTypeDef]
|
|
2712
|
+
) -> DescribeTrainingPlanResponseTypeDef:
|
|
2713
|
+
"""
|
|
2714
|
+
Retrieves detailed information about a specific training plan.
|
|
2715
|
+
|
|
2716
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_training_plan.html)
|
|
2717
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_plan)
|
|
2718
|
+
"""
|
|
2719
|
+
|
|
2551
2720
|
def describe_transform_job(
|
|
2552
2721
|
self, **kwargs: Unpack[DescribeTransformJobRequestRequestTypeDef]
|
|
2553
2722
|
) -> DescribeTransformJobResponseTypeDef:
|
|
@@ -2593,8 +2762,8 @@ class SageMakerClient(BaseClient):
|
|
|
2593
2762
|
) -> DescribeWorkforceResponseTypeDef:
|
|
2594
2763
|
"""
|
|
2595
2764
|
Lists private workforce information, including workforce name, Amazon Resource
|
|
2596
|
-
Name (ARN), and, if applicable, allowed IP address ranges (
|
|
2597
|
-
|
|
2765
|
+
Name (ARN), and, if applicable, allowed IP address ranges (<a
|
|
2766
|
+
href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>).
|
|
2598
2767
|
|
|
2599
2768
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_workforce.html)
|
|
2600
2769
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workforce)
|
|
@@ -2636,20 +2805,6 @@ class SageMakerClient(BaseClient):
|
|
|
2636
2805
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#enable_sagemaker_servicecatalog_portfolio)
|
|
2637
2806
|
"""
|
|
2638
2807
|
|
|
2639
|
-
def generate_presigned_url(
|
|
2640
|
-
self,
|
|
2641
|
-
ClientMethod: str,
|
|
2642
|
-
Params: Mapping[str, Any] = ...,
|
|
2643
|
-
ExpiresIn: int = 3600,
|
|
2644
|
-
HttpMethod: str = ...,
|
|
2645
|
-
) -> str:
|
|
2646
|
-
"""
|
|
2647
|
-
Generate a presigned url given a client, its method, and arguments.
|
|
2648
|
-
|
|
2649
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
2650
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
2651
|
-
"""
|
|
2652
|
-
|
|
2653
2808
|
def get_device_fleet_report(
|
|
2654
2809
|
self, **kwargs: Unpack[GetDeviceFleetReportRequestRequestTypeDef]
|
|
2655
2810
|
) -> GetDeviceFleetReportResponseTypeDef:
|
|
@@ -2812,13 +2967,23 @@ class SageMakerClient(BaseClient):
|
|
|
2812
2967
|
self, **kwargs: Unpack[ListClusterNodesRequestRequestTypeDef]
|
|
2813
2968
|
) -> ListClusterNodesResponseTypeDef:
|
|
2814
2969
|
"""
|
|
2815
|
-
Retrieves the list of instances (also called
|
|
2970
|
+
Retrieves the list of instances (also called <i>nodes</i> interchangeably) in a
|
|
2816
2971
|
SageMaker HyperPod cluster.
|
|
2817
2972
|
|
|
2818
2973
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_nodes.html)
|
|
2819
2974
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_nodes)
|
|
2820
2975
|
"""
|
|
2821
2976
|
|
|
2977
|
+
def list_cluster_scheduler_configs(
|
|
2978
|
+
self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestRequestTypeDef]
|
|
2979
|
+
) -> ListClusterSchedulerConfigsResponseTypeDef:
|
|
2980
|
+
"""
|
|
2981
|
+
List the cluster policy configurations.
|
|
2982
|
+
|
|
2983
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_scheduler_configs.html)
|
|
2984
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_scheduler_configs)
|
|
2985
|
+
"""
|
|
2986
|
+
|
|
2822
2987
|
def list_clusters(
|
|
2823
2988
|
self, **kwargs: Unpack[ListClustersRequestRequestTypeDef]
|
|
2824
2989
|
) -> ListClustersResponseTypeDef:
|
|
@@ -2849,6 +3014,16 @@ class SageMakerClient(BaseClient):
|
|
|
2849
3014
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compilation_jobs)
|
|
2850
3015
|
"""
|
|
2851
3016
|
|
|
3017
|
+
def list_compute_quotas(
|
|
3018
|
+
self, **kwargs: Unpack[ListComputeQuotasRequestRequestTypeDef]
|
|
3019
|
+
) -> ListComputeQuotasResponseTypeDef:
|
|
3020
|
+
"""
|
|
3021
|
+
List the resource allocation definitions.
|
|
3022
|
+
|
|
3023
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_compute_quotas.html)
|
|
3024
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compute_quotas)
|
|
3025
|
+
"""
|
|
3026
|
+
|
|
2852
3027
|
def list_contexts(
|
|
2853
3028
|
self, **kwargs: Unpack[ListContextsRequestRequestTypeDef]
|
|
2854
3029
|
) -> ListContextsResponseTypeDef:
|
|
@@ -2953,7 +3128,7 @@ class SageMakerClient(BaseClient):
|
|
|
2953
3128
|
self, **kwargs: Unpack[ListFeatureGroupsRequestRequestTypeDef]
|
|
2954
3129
|
) -> ListFeatureGroupsResponseTypeDef:
|
|
2955
3130
|
"""
|
|
2956
|
-
List
|
|
3131
|
+
List <code>FeatureGroup</code>s based on given filter and order.
|
|
2957
3132
|
|
|
2958
3133
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_feature_groups.html)
|
|
2959
3134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_feature_groups)
|
|
@@ -3011,8 +3186,8 @@ class SageMakerClient(BaseClient):
|
|
|
3011
3186
|
self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestRequestTypeDef]
|
|
3012
3187
|
) -> ListHyperParameterTuningJobsResponseTypeDef:
|
|
3013
3188
|
"""
|
|
3014
|
-
Gets a list of
|
|
3015
|
-
|
|
3189
|
+
Gets a list of <a
|
|
3190
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobSummary.html">HyperParameterTuningJobSummary</a>
|
|
3016
3191
|
objects that describe the hyperparameter tuning jobs launched in your account.
|
|
3017
3192
|
|
|
3018
3193
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hyper_parameter_tuning_jobs.html)
|
|
@@ -3214,7 +3389,7 @@ class SageMakerClient(BaseClient):
|
|
|
3214
3389
|
self, **kwargs: Unpack[ListModelsInputRequestTypeDef]
|
|
3215
3390
|
) -> ListModelsOutputTypeDef:
|
|
3216
3391
|
"""
|
|
3217
|
-
Lists models created with the
|
|
3392
|
+
Lists models created with the <code>CreateModel</code> API.
|
|
3218
3393
|
|
|
3219
3394
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_models.html)
|
|
3220
3395
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_models)
|
|
@@ -3264,8 +3439,8 @@ class SageMakerClient(BaseClient):
|
|
|
3264
3439
|
self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputRequestTypeDef]
|
|
3265
3440
|
) -> ListNotebookInstanceLifecycleConfigsOutputTypeDef:
|
|
3266
3441
|
"""
|
|
3267
|
-
Lists notebook instance lifestyle configurations created with the
|
|
3268
|
-
|
|
3442
|
+
Lists notebook instance lifestyle configurations created with the <a
|
|
3443
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
3269
3444
|
API.
|
|
3270
3445
|
|
|
3271
3446
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instance_lifecycle_configs.html)
|
|
@@ -3293,11 +3468,21 @@ class SageMakerClient(BaseClient):
|
|
|
3293
3468
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_optimization_jobs)
|
|
3294
3469
|
"""
|
|
3295
3470
|
|
|
3471
|
+
def list_partner_apps(
|
|
3472
|
+
self, **kwargs: Unpack[ListPartnerAppsRequestRequestTypeDef]
|
|
3473
|
+
) -> ListPartnerAppsResponseTypeDef:
|
|
3474
|
+
"""
|
|
3475
|
+
Lists all of the SageMaker Partner AI Apps in an account.
|
|
3476
|
+
|
|
3477
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_partner_apps.html)
|
|
3478
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_partner_apps)
|
|
3479
|
+
"""
|
|
3480
|
+
|
|
3296
3481
|
def list_pipeline_execution_steps(
|
|
3297
3482
|
self, **kwargs: Unpack[ListPipelineExecutionStepsRequestRequestTypeDef]
|
|
3298
3483
|
) -> ListPipelineExecutionStepsResponseTypeDef:
|
|
3299
3484
|
"""
|
|
3300
|
-
Gets a list of
|
|
3485
|
+
Gets a list of <code>PipeLineExecutionStep</code> objects.
|
|
3301
3486
|
|
|
3302
3487
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipeline_execution_steps.html)
|
|
3303
3488
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipeline_execution_steps)
|
|
@@ -3428,8 +3613,8 @@ class SageMakerClient(BaseClient):
|
|
|
3428
3613
|
self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestRequestTypeDef]
|
|
3429
3614
|
) -> ListTrainingJobsForHyperParameterTuningJobResponseTypeDef:
|
|
3430
3615
|
"""
|
|
3431
|
-
Gets a list of
|
|
3432
|
-
|
|
3616
|
+
Gets a list of <a
|
|
3617
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobSummary.html">TrainingJobSummary</a>
|
|
3433
3618
|
objects that describe the training jobs that a hyperparameter tuning job
|
|
3434
3619
|
launched.
|
|
3435
3620
|
|
|
@@ -3437,6 +3622,16 @@ class SageMakerClient(BaseClient):
|
|
|
3437
3622
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_jobs_for_hyper_parameter_tuning_job)
|
|
3438
3623
|
"""
|
|
3439
3624
|
|
|
3625
|
+
def list_training_plans(
|
|
3626
|
+
self, **kwargs: Unpack[ListTrainingPlansRequestRequestTypeDef]
|
|
3627
|
+
) -> ListTrainingPlansResponseTypeDef:
|
|
3628
|
+
"""
|
|
3629
|
+
Retrieves a list of training plans for the current account.
|
|
3630
|
+
|
|
3631
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_training_plans.html)
|
|
3632
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_plans)
|
|
3633
|
+
"""
|
|
3634
|
+
|
|
3440
3635
|
def list_transform_jobs(
|
|
3441
3636
|
self, **kwargs: Unpack[ListTransformJobsRequestRequestTypeDef]
|
|
3442
3637
|
) -> ListTransformJobsResponseTypeDef:
|
|
@@ -3557,6 +3752,16 @@ class SageMakerClient(BaseClient):
|
|
|
3557
3752
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search)
|
|
3558
3753
|
"""
|
|
3559
3754
|
|
|
3755
|
+
def search_training_plan_offerings(
|
|
3756
|
+
self, **kwargs: Unpack[SearchTrainingPlanOfferingsRequestRequestTypeDef]
|
|
3757
|
+
) -> SearchTrainingPlanOfferingsResponseTypeDef:
|
|
3758
|
+
"""
|
|
3759
|
+
Searches for available training plan offerings based on specified criteria.
|
|
3760
|
+
|
|
3761
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/search_training_plan_offerings.html)
|
|
3762
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search_training_plan_offerings)
|
|
3763
|
+
"""
|
|
3764
|
+
|
|
3560
3765
|
def send_pipeline_execution_step_failure(
|
|
3561
3766
|
self, **kwargs: Unpack[SendPipelineExecutionStepFailureRequestRequestTypeDef]
|
|
3562
3767
|
) -> SendPipelineExecutionStepFailureResponseTypeDef:
|
|
@@ -3841,6 +4046,16 @@ class SageMakerClient(BaseClient):
|
|
|
3841
4046
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster)
|
|
3842
4047
|
"""
|
|
3843
4048
|
|
|
4049
|
+
def update_cluster_scheduler_config(
|
|
4050
|
+
self, **kwargs: Unpack[UpdateClusterSchedulerConfigRequestRequestTypeDef]
|
|
4051
|
+
) -> UpdateClusterSchedulerConfigResponseTypeDef:
|
|
4052
|
+
"""
|
|
4053
|
+
Update the cluster policy configuration.
|
|
4054
|
+
|
|
4055
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_cluster_scheduler_config.html)
|
|
4056
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster_scheduler_config)
|
|
4057
|
+
"""
|
|
4058
|
+
|
|
3844
4059
|
def update_cluster_software(
|
|
3845
4060
|
self, **kwargs: Unpack[UpdateClusterSoftwareRequestRequestTypeDef]
|
|
3846
4061
|
) -> UpdateClusterSoftwareResponseTypeDef:
|
|
@@ -3862,6 +4077,16 @@ class SageMakerClient(BaseClient):
|
|
|
3862
4077
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_code_repository)
|
|
3863
4078
|
"""
|
|
3864
4079
|
|
|
4080
|
+
def update_compute_quota(
|
|
4081
|
+
self, **kwargs: Unpack[UpdateComputeQuotaRequestRequestTypeDef]
|
|
4082
|
+
) -> UpdateComputeQuotaResponseTypeDef:
|
|
4083
|
+
"""
|
|
4084
|
+
Update the compute allocation definition.
|
|
4085
|
+
|
|
4086
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_compute_quota.html)
|
|
4087
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_compute_quota)
|
|
4088
|
+
"""
|
|
4089
|
+
|
|
3865
4090
|
def update_context(
|
|
3866
4091
|
self, **kwargs: Unpack[UpdateContextRequestRequestTypeDef]
|
|
3867
4092
|
) -> UpdateContextResponseTypeDef:
|
|
@@ -3906,8 +4131,8 @@ class SageMakerClient(BaseClient):
|
|
|
3906
4131
|
self, **kwargs: Unpack[UpdateEndpointInputRequestTypeDef]
|
|
3907
4132
|
) -> UpdateEndpointOutputTypeDef:
|
|
3908
4133
|
"""
|
|
3909
|
-
Deploys the
|
|
3910
|
-
instances.
|
|
4134
|
+
Deploys the <code>EndpointConfig</code> specified in the request to a new fleet
|
|
4135
|
+
of instances.
|
|
3911
4136
|
|
|
3912
4137
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_endpoint.html)
|
|
3913
4138
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_endpoint)
|
|
@@ -4079,14 +4304,24 @@ class SageMakerClient(BaseClient):
|
|
|
4079
4304
|
self, **kwargs: Unpack[UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef]
|
|
4080
4305
|
) -> Dict[str, Any]:
|
|
4081
4306
|
"""
|
|
4082
|
-
Updates a notebook instance lifecycle configuration created with the
|
|
4083
|
-
|
|
4307
|
+
Updates a notebook instance lifecycle configuration created with the <a
|
|
4308
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
4084
4309
|
API.
|
|
4085
4310
|
|
|
4086
4311
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_notebook_instance_lifecycle_config.html)
|
|
4087
4312
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_notebook_instance_lifecycle_config)
|
|
4088
4313
|
"""
|
|
4089
4314
|
|
|
4315
|
+
def update_partner_app(
|
|
4316
|
+
self, **kwargs: Unpack[UpdatePartnerAppRequestRequestTypeDef]
|
|
4317
|
+
) -> UpdatePartnerAppResponseTypeDef:
|
|
4318
|
+
"""
|
|
4319
|
+
Updates all of the SageMaker Partner AI Apps in an account.
|
|
4320
|
+
|
|
4321
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_partner_app.html)
|
|
4322
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_partner_app)
|
|
4323
|
+
"""
|
|
4324
|
+
|
|
4090
4325
|
def update_pipeline(
|
|
4091
4326
|
self, **kwargs: Unpack[UpdatePipelineRequestRequestTypeDef]
|
|
4092
4327
|
) -> UpdatePipelineResponseTypeDef:
|
|
@@ -4192,6 +4427,8 @@ class SageMakerClient(BaseClient):
|
|
|
4192
4427
|
@overload
|
|
4193
4428
|
def get_paginator(self, operation_name: Literal["list_actions"]) -> ListActionsPaginator:
|
|
4194
4429
|
"""
|
|
4430
|
+
Create a paginator for an operation.
|
|
4431
|
+
|
|
4195
4432
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4196
4433
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4197
4434
|
"""
|
|
@@ -4199,6 +4436,8 @@ class SageMakerClient(BaseClient):
|
|
|
4199
4436
|
@overload
|
|
4200
4437
|
def get_paginator(self, operation_name: Literal["list_algorithms"]) -> ListAlgorithmsPaginator:
|
|
4201
4438
|
"""
|
|
4439
|
+
Create a paginator for an operation.
|
|
4440
|
+
|
|
4202
4441
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4203
4442
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4204
4443
|
"""
|
|
@@ -4206,6 +4445,8 @@ class SageMakerClient(BaseClient):
|
|
|
4206
4445
|
@overload
|
|
4207
4446
|
def get_paginator(self, operation_name: Literal["list_aliases"]) -> ListAliasesPaginator:
|
|
4208
4447
|
"""
|
|
4448
|
+
Create a paginator for an operation.
|
|
4449
|
+
|
|
4209
4450
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4210
4451
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4211
4452
|
"""
|
|
@@ -4215,6 +4456,8 @@ class SageMakerClient(BaseClient):
|
|
|
4215
4456
|
self, operation_name: Literal["list_app_image_configs"]
|
|
4216
4457
|
) -> ListAppImageConfigsPaginator:
|
|
4217
4458
|
"""
|
|
4459
|
+
Create a paginator for an operation.
|
|
4460
|
+
|
|
4218
4461
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4219
4462
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4220
4463
|
"""
|
|
@@ -4222,6 +4465,8 @@ class SageMakerClient(BaseClient):
|
|
|
4222
4465
|
@overload
|
|
4223
4466
|
def get_paginator(self, operation_name: Literal["list_apps"]) -> ListAppsPaginator:
|
|
4224
4467
|
"""
|
|
4468
|
+
Create a paginator for an operation.
|
|
4469
|
+
|
|
4225
4470
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4226
4471
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4227
4472
|
"""
|
|
@@ -4229,6 +4474,8 @@ class SageMakerClient(BaseClient):
|
|
|
4229
4474
|
@overload
|
|
4230
4475
|
def get_paginator(self, operation_name: Literal["list_artifacts"]) -> ListArtifactsPaginator:
|
|
4231
4476
|
"""
|
|
4477
|
+
Create a paginator for an operation.
|
|
4478
|
+
|
|
4232
4479
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4233
4480
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4234
4481
|
"""
|
|
@@ -4238,6 +4485,8 @@ class SageMakerClient(BaseClient):
|
|
|
4238
4485
|
self, operation_name: Literal["list_associations"]
|
|
4239
4486
|
) -> ListAssociationsPaginator:
|
|
4240
4487
|
"""
|
|
4488
|
+
Create a paginator for an operation.
|
|
4489
|
+
|
|
4241
4490
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4242
4491
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4243
4492
|
"""
|
|
@@ -4247,6 +4496,8 @@ class SageMakerClient(BaseClient):
|
|
|
4247
4496
|
self, operation_name: Literal["list_auto_ml_jobs"]
|
|
4248
4497
|
) -> ListAutoMLJobsPaginator:
|
|
4249
4498
|
"""
|
|
4499
|
+
Create a paginator for an operation.
|
|
4500
|
+
|
|
4250
4501
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4251
4502
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4252
4503
|
"""
|
|
@@ -4256,6 +4507,8 @@ class SageMakerClient(BaseClient):
|
|
|
4256
4507
|
self, operation_name: Literal["list_candidates_for_auto_ml_job"]
|
|
4257
4508
|
) -> ListCandidatesForAutoMLJobPaginator:
|
|
4258
4509
|
"""
|
|
4510
|
+
Create a paginator for an operation.
|
|
4511
|
+
|
|
4259
4512
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4260
4513
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4261
4514
|
"""
|
|
@@ -4265,6 +4518,19 @@ class SageMakerClient(BaseClient):
|
|
|
4265
4518
|
self, operation_name: Literal["list_cluster_nodes"]
|
|
4266
4519
|
) -> ListClusterNodesPaginator:
|
|
4267
4520
|
"""
|
|
4521
|
+
Create a paginator for an operation.
|
|
4522
|
+
|
|
4523
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4524
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4525
|
+
"""
|
|
4526
|
+
|
|
4527
|
+
@overload
|
|
4528
|
+
def get_paginator(
|
|
4529
|
+
self, operation_name: Literal["list_cluster_scheduler_configs"]
|
|
4530
|
+
) -> ListClusterSchedulerConfigsPaginator:
|
|
4531
|
+
"""
|
|
4532
|
+
Create a paginator for an operation.
|
|
4533
|
+
|
|
4268
4534
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4269
4535
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4270
4536
|
"""
|
|
@@ -4272,6 +4538,8 @@ class SageMakerClient(BaseClient):
|
|
|
4272
4538
|
@overload
|
|
4273
4539
|
def get_paginator(self, operation_name: Literal["list_clusters"]) -> ListClustersPaginator:
|
|
4274
4540
|
"""
|
|
4541
|
+
Create a paginator for an operation.
|
|
4542
|
+
|
|
4275
4543
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4276
4544
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4277
4545
|
"""
|
|
@@ -4281,6 +4549,8 @@ class SageMakerClient(BaseClient):
|
|
|
4281
4549
|
self, operation_name: Literal["list_code_repositories"]
|
|
4282
4550
|
) -> ListCodeRepositoriesPaginator:
|
|
4283
4551
|
"""
|
|
4552
|
+
Create a paginator for an operation.
|
|
4553
|
+
|
|
4284
4554
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4285
4555
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4286
4556
|
"""
|
|
@@ -4290,6 +4560,19 @@ class SageMakerClient(BaseClient):
|
|
|
4290
4560
|
self, operation_name: Literal["list_compilation_jobs"]
|
|
4291
4561
|
) -> ListCompilationJobsPaginator:
|
|
4292
4562
|
"""
|
|
4563
|
+
Create a paginator for an operation.
|
|
4564
|
+
|
|
4565
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4566
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4567
|
+
"""
|
|
4568
|
+
|
|
4569
|
+
@overload
|
|
4570
|
+
def get_paginator(
|
|
4571
|
+
self, operation_name: Literal["list_compute_quotas"]
|
|
4572
|
+
) -> ListComputeQuotasPaginator:
|
|
4573
|
+
"""
|
|
4574
|
+
Create a paginator for an operation.
|
|
4575
|
+
|
|
4293
4576
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4294
4577
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4295
4578
|
"""
|
|
@@ -4297,6 +4580,8 @@ class SageMakerClient(BaseClient):
|
|
|
4297
4580
|
@overload
|
|
4298
4581
|
def get_paginator(self, operation_name: Literal["list_contexts"]) -> ListContextsPaginator:
|
|
4299
4582
|
"""
|
|
4583
|
+
Create a paginator for an operation.
|
|
4584
|
+
|
|
4300
4585
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4301
4586
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4302
4587
|
"""
|
|
@@ -4306,6 +4591,8 @@ class SageMakerClient(BaseClient):
|
|
|
4306
4591
|
self, operation_name: Literal["list_data_quality_job_definitions"]
|
|
4307
4592
|
) -> ListDataQualityJobDefinitionsPaginator:
|
|
4308
4593
|
"""
|
|
4594
|
+
Create a paginator for an operation.
|
|
4595
|
+
|
|
4309
4596
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4310
4597
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4311
4598
|
"""
|
|
@@ -4315,6 +4602,8 @@ class SageMakerClient(BaseClient):
|
|
|
4315
4602
|
self, operation_name: Literal["list_device_fleets"]
|
|
4316
4603
|
) -> ListDeviceFleetsPaginator:
|
|
4317
4604
|
"""
|
|
4605
|
+
Create a paginator for an operation.
|
|
4606
|
+
|
|
4318
4607
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4319
4608
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4320
4609
|
"""
|
|
@@ -4322,6 +4611,8 @@ class SageMakerClient(BaseClient):
|
|
|
4322
4611
|
@overload
|
|
4323
4612
|
def get_paginator(self, operation_name: Literal["list_devices"]) -> ListDevicesPaginator:
|
|
4324
4613
|
"""
|
|
4614
|
+
Create a paginator for an operation.
|
|
4615
|
+
|
|
4325
4616
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4326
4617
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4327
4618
|
"""
|
|
@@ -4329,6 +4620,8 @@ class SageMakerClient(BaseClient):
|
|
|
4329
4620
|
@overload
|
|
4330
4621
|
def get_paginator(self, operation_name: Literal["list_domains"]) -> ListDomainsPaginator:
|
|
4331
4622
|
"""
|
|
4623
|
+
Create a paginator for an operation.
|
|
4624
|
+
|
|
4332
4625
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4333
4626
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4334
4627
|
"""
|
|
@@ -4338,6 +4631,8 @@ class SageMakerClient(BaseClient):
|
|
|
4338
4631
|
self, operation_name: Literal["list_edge_deployment_plans"]
|
|
4339
4632
|
) -> ListEdgeDeploymentPlansPaginator:
|
|
4340
4633
|
"""
|
|
4634
|
+
Create a paginator for an operation.
|
|
4635
|
+
|
|
4341
4636
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4342
4637
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4343
4638
|
"""
|
|
@@ -4347,6 +4642,8 @@ class SageMakerClient(BaseClient):
|
|
|
4347
4642
|
self, operation_name: Literal["list_edge_packaging_jobs"]
|
|
4348
4643
|
) -> ListEdgePackagingJobsPaginator:
|
|
4349
4644
|
"""
|
|
4645
|
+
Create a paginator for an operation.
|
|
4646
|
+
|
|
4350
4647
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4351
4648
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4352
4649
|
"""
|
|
@@ -4356,6 +4653,8 @@ class SageMakerClient(BaseClient):
|
|
|
4356
4653
|
self, operation_name: Literal["list_endpoint_configs"]
|
|
4357
4654
|
) -> ListEndpointConfigsPaginator:
|
|
4358
4655
|
"""
|
|
4656
|
+
Create a paginator for an operation.
|
|
4657
|
+
|
|
4359
4658
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4360
4659
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4361
4660
|
"""
|
|
@@ -4363,6 +4662,8 @@ class SageMakerClient(BaseClient):
|
|
|
4363
4662
|
@overload
|
|
4364
4663
|
def get_paginator(self, operation_name: Literal["list_endpoints"]) -> ListEndpointsPaginator:
|
|
4365
4664
|
"""
|
|
4665
|
+
Create a paginator for an operation.
|
|
4666
|
+
|
|
4366
4667
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4367
4668
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4368
4669
|
"""
|
|
@@ -4372,6 +4673,8 @@ class SageMakerClient(BaseClient):
|
|
|
4372
4673
|
self, operation_name: Literal["list_experiments"]
|
|
4373
4674
|
) -> ListExperimentsPaginator:
|
|
4374
4675
|
"""
|
|
4676
|
+
Create a paginator for an operation.
|
|
4677
|
+
|
|
4375
4678
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4376
4679
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4377
4680
|
"""
|
|
@@ -4381,6 +4684,8 @@ class SageMakerClient(BaseClient):
|
|
|
4381
4684
|
self, operation_name: Literal["list_feature_groups"]
|
|
4382
4685
|
) -> ListFeatureGroupsPaginator:
|
|
4383
4686
|
"""
|
|
4687
|
+
Create a paginator for an operation.
|
|
4688
|
+
|
|
4384
4689
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4385
4690
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4386
4691
|
"""
|
|
@@ -4390,6 +4695,8 @@ class SageMakerClient(BaseClient):
|
|
|
4390
4695
|
self, operation_name: Literal["list_flow_definitions"]
|
|
4391
4696
|
) -> ListFlowDefinitionsPaginator:
|
|
4392
4697
|
"""
|
|
4698
|
+
Create a paginator for an operation.
|
|
4699
|
+
|
|
4393
4700
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4394
4701
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4395
4702
|
"""
|
|
@@ -4399,6 +4706,8 @@ class SageMakerClient(BaseClient):
|
|
|
4399
4706
|
self, operation_name: Literal["list_human_task_uis"]
|
|
4400
4707
|
) -> ListHumanTaskUisPaginator:
|
|
4401
4708
|
"""
|
|
4709
|
+
Create a paginator for an operation.
|
|
4710
|
+
|
|
4402
4711
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4403
4712
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4404
4713
|
"""
|
|
@@ -4408,6 +4717,8 @@ class SageMakerClient(BaseClient):
|
|
|
4408
4717
|
self, operation_name: Literal["list_hyper_parameter_tuning_jobs"]
|
|
4409
4718
|
) -> ListHyperParameterTuningJobsPaginator:
|
|
4410
4719
|
"""
|
|
4720
|
+
Create a paginator for an operation.
|
|
4721
|
+
|
|
4411
4722
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4412
4723
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4413
4724
|
"""
|
|
@@ -4417,6 +4728,8 @@ class SageMakerClient(BaseClient):
|
|
|
4417
4728
|
self, operation_name: Literal["list_image_versions"]
|
|
4418
4729
|
) -> ListImageVersionsPaginator:
|
|
4419
4730
|
"""
|
|
4731
|
+
Create a paginator for an operation.
|
|
4732
|
+
|
|
4420
4733
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4421
4734
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4422
4735
|
"""
|
|
@@ -4424,6 +4737,8 @@ class SageMakerClient(BaseClient):
|
|
|
4424
4737
|
@overload
|
|
4425
4738
|
def get_paginator(self, operation_name: Literal["list_images"]) -> ListImagesPaginator:
|
|
4426
4739
|
"""
|
|
4740
|
+
Create a paginator for an operation.
|
|
4741
|
+
|
|
4427
4742
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4428
4743
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4429
4744
|
"""
|
|
@@ -4433,6 +4748,8 @@ class SageMakerClient(BaseClient):
|
|
|
4433
4748
|
self, operation_name: Literal["list_inference_components"]
|
|
4434
4749
|
) -> ListInferenceComponentsPaginator:
|
|
4435
4750
|
"""
|
|
4751
|
+
Create a paginator for an operation.
|
|
4752
|
+
|
|
4436
4753
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4437
4754
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4438
4755
|
"""
|
|
@@ -4442,6 +4759,8 @@ class SageMakerClient(BaseClient):
|
|
|
4442
4759
|
self, operation_name: Literal["list_inference_experiments"]
|
|
4443
4760
|
) -> ListInferenceExperimentsPaginator:
|
|
4444
4761
|
"""
|
|
4762
|
+
Create a paginator for an operation.
|
|
4763
|
+
|
|
4445
4764
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4446
4765
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4447
4766
|
"""
|
|
@@ -4451,6 +4770,8 @@ class SageMakerClient(BaseClient):
|
|
|
4451
4770
|
self, operation_name: Literal["list_inference_recommendations_job_steps"]
|
|
4452
4771
|
) -> ListInferenceRecommendationsJobStepsPaginator:
|
|
4453
4772
|
"""
|
|
4773
|
+
Create a paginator for an operation.
|
|
4774
|
+
|
|
4454
4775
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4455
4776
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4456
4777
|
"""
|
|
@@ -4460,6 +4781,8 @@ class SageMakerClient(BaseClient):
|
|
|
4460
4781
|
self, operation_name: Literal["list_inference_recommendations_jobs"]
|
|
4461
4782
|
) -> ListInferenceRecommendationsJobsPaginator:
|
|
4462
4783
|
"""
|
|
4784
|
+
Create a paginator for an operation.
|
|
4785
|
+
|
|
4463
4786
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4464
4787
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4465
4788
|
"""
|
|
@@ -4469,6 +4792,8 @@ class SageMakerClient(BaseClient):
|
|
|
4469
4792
|
self, operation_name: Literal["list_labeling_jobs_for_workteam"]
|
|
4470
4793
|
) -> ListLabelingJobsForWorkteamPaginator:
|
|
4471
4794
|
"""
|
|
4795
|
+
Create a paginator for an operation.
|
|
4796
|
+
|
|
4472
4797
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4473
4798
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4474
4799
|
"""
|
|
@@ -4478,6 +4803,8 @@ class SageMakerClient(BaseClient):
|
|
|
4478
4803
|
self, operation_name: Literal["list_labeling_jobs"]
|
|
4479
4804
|
) -> ListLabelingJobsPaginator:
|
|
4480
4805
|
"""
|
|
4806
|
+
Create a paginator for an operation.
|
|
4807
|
+
|
|
4481
4808
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4482
4809
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4483
4810
|
"""
|
|
@@ -4487,6 +4814,8 @@ class SageMakerClient(BaseClient):
|
|
|
4487
4814
|
self, operation_name: Literal["list_lineage_groups"]
|
|
4488
4815
|
) -> ListLineageGroupsPaginator:
|
|
4489
4816
|
"""
|
|
4817
|
+
Create a paginator for an operation.
|
|
4818
|
+
|
|
4490
4819
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4491
4820
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4492
4821
|
"""
|
|
@@ -4496,6 +4825,8 @@ class SageMakerClient(BaseClient):
|
|
|
4496
4825
|
self, operation_name: Literal["list_mlflow_tracking_servers"]
|
|
4497
4826
|
) -> ListMlflowTrackingServersPaginator:
|
|
4498
4827
|
"""
|
|
4828
|
+
Create a paginator for an operation.
|
|
4829
|
+
|
|
4499
4830
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4500
4831
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4501
4832
|
"""
|
|
@@ -4505,6 +4836,8 @@ class SageMakerClient(BaseClient):
|
|
|
4505
4836
|
self, operation_name: Literal["list_model_bias_job_definitions"]
|
|
4506
4837
|
) -> ListModelBiasJobDefinitionsPaginator:
|
|
4507
4838
|
"""
|
|
4839
|
+
Create a paginator for an operation.
|
|
4840
|
+
|
|
4508
4841
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4509
4842
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4510
4843
|
"""
|
|
@@ -4514,6 +4847,8 @@ class SageMakerClient(BaseClient):
|
|
|
4514
4847
|
self, operation_name: Literal["list_model_card_export_jobs"]
|
|
4515
4848
|
) -> ListModelCardExportJobsPaginator:
|
|
4516
4849
|
"""
|
|
4850
|
+
Create a paginator for an operation.
|
|
4851
|
+
|
|
4517
4852
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4518
4853
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4519
4854
|
"""
|
|
@@ -4523,6 +4858,8 @@ class SageMakerClient(BaseClient):
|
|
|
4523
4858
|
self, operation_name: Literal["list_model_card_versions"]
|
|
4524
4859
|
) -> ListModelCardVersionsPaginator:
|
|
4525
4860
|
"""
|
|
4861
|
+
Create a paginator for an operation.
|
|
4862
|
+
|
|
4526
4863
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4527
4864
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4528
4865
|
"""
|
|
@@ -4530,6 +4867,8 @@ class SageMakerClient(BaseClient):
|
|
|
4530
4867
|
@overload
|
|
4531
4868
|
def get_paginator(self, operation_name: Literal["list_model_cards"]) -> ListModelCardsPaginator:
|
|
4532
4869
|
"""
|
|
4870
|
+
Create a paginator for an operation.
|
|
4871
|
+
|
|
4533
4872
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4534
4873
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4535
4874
|
"""
|
|
@@ -4539,6 +4878,8 @@ class SageMakerClient(BaseClient):
|
|
|
4539
4878
|
self, operation_name: Literal["list_model_explainability_job_definitions"]
|
|
4540
4879
|
) -> ListModelExplainabilityJobDefinitionsPaginator:
|
|
4541
4880
|
"""
|
|
4881
|
+
Create a paginator for an operation.
|
|
4882
|
+
|
|
4542
4883
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4543
4884
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4544
4885
|
"""
|
|
@@ -4548,6 +4889,8 @@ class SageMakerClient(BaseClient):
|
|
|
4548
4889
|
self, operation_name: Literal["list_model_metadata"]
|
|
4549
4890
|
) -> ListModelMetadataPaginator:
|
|
4550
4891
|
"""
|
|
4892
|
+
Create a paginator for an operation.
|
|
4893
|
+
|
|
4551
4894
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4552
4895
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4553
4896
|
"""
|
|
@@ -4557,6 +4900,8 @@ class SageMakerClient(BaseClient):
|
|
|
4557
4900
|
self, operation_name: Literal["list_model_package_groups"]
|
|
4558
4901
|
) -> ListModelPackageGroupsPaginator:
|
|
4559
4902
|
"""
|
|
4903
|
+
Create a paginator for an operation.
|
|
4904
|
+
|
|
4560
4905
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4561
4906
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4562
4907
|
"""
|
|
@@ -4566,6 +4911,8 @@ class SageMakerClient(BaseClient):
|
|
|
4566
4911
|
self, operation_name: Literal["list_model_packages"]
|
|
4567
4912
|
) -> ListModelPackagesPaginator:
|
|
4568
4913
|
"""
|
|
4914
|
+
Create a paginator for an operation.
|
|
4915
|
+
|
|
4569
4916
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4570
4917
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4571
4918
|
"""
|
|
@@ -4575,6 +4922,8 @@ class SageMakerClient(BaseClient):
|
|
|
4575
4922
|
self, operation_name: Literal["list_model_quality_job_definitions"]
|
|
4576
4923
|
) -> ListModelQualityJobDefinitionsPaginator:
|
|
4577
4924
|
"""
|
|
4925
|
+
Create a paginator for an operation.
|
|
4926
|
+
|
|
4578
4927
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4579
4928
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4580
4929
|
"""
|
|
@@ -4582,6 +4931,8 @@ class SageMakerClient(BaseClient):
|
|
|
4582
4931
|
@overload
|
|
4583
4932
|
def get_paginator(self, operation_name: Literal["list_models"]) -> ListModelsPaginator:
|
|
4584
4933
|
"""
|
|
4934
|
+
Create a paginator for an operation.
|
|
4935
|
+
|
|
4585
4936
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4586
4937
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4587
4938
|
"""
|
|
@@ -4591,6 +4942,8 @@ class SageMakerClient(BaseClient):
|
|
|
4591
4942
|
self, operation_name: Literal["list_monitoring_alert_history"]
|
|
4592
4943
|
) -> ListMonitoringAlertHistoryPaginator:
|
|
4593
4944
|
"""
|
|
4945
|
+
Create a paginator for an operation.
|
|
4946
|
+
|
|
4594
4947
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4595
4948
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4596
4949
|
"""
|
|
@@ -4600,6 +4953,8 @@ class SageMakerClient(BaseClient):
|
|
|
4600
4953
|
self, operation_name: Literal["list_monitoring_alerts"]
|
|
4601
4954
|
) -> ListMonitoringAlertsPaginator:
|
|
4602
4955
|
"""
|
|
4956
|
+
Create a paginator for an operation.
|
|
4957
|
+
|
|
4603
4958
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4604
4959
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4605
4960
|
"""
|
|
@@ -4609,6 +4964,8 @@ class SageMakerClient(BaseClient):
|
|
|
4609
4964
|
self, operation_name: Literal["list_monitoring_executions"]
|
|
4610
4965
|
) -> ListMonitoringExecutionsPaginator:
|
|
4611
4966
|
"""
|
|
4967
|
+
Create a paginator for an operation.
|
|
4968
|
+
|
|
4612
4969
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4613
4970
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4614
4971
|
"""
|
|
@@ -4618,6 +4975,8 @@ class SageMakerClient(BaseClient):
|
|
|
4618
4975
|
self, operation_name: Literal["list_monitoring_schedules"]
|
|
4619
4976
|
) -> ListMonitoringSchedulesPaginator:
|
|
4620
4977
|
"""
|
|
4978
|
+
Create a paginator for an operation.
|
|
4979
|
+
|
|
4621
4980
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4622
4981
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4623
4982
|
"""
|
|
@@ -4627,6 +4986,8 @@ class SageMakerClient(BaseClient):
|
|
|
4627
4986
|
self, operation_name: Literal["list_notebook_instance_lifecycle_configs"]
|
|
4628
4987
|
) -> ListNotebookInstanceLifecycleConfigsPaginator:
|
|
4629
4988
|
"""
|
|
4989
|
+
Create a paginator for an operation.
|
|
4990
|
+
|
|
4630
4991
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4631
4992
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4632
4993
|
"""
|
|
@@ -4636,6 +4997,8 @@ class SageMakerClient(BaseClient):
|
|
|
4636
4997
|
self, operation_name: Literal["list_notebook_instances"]
|
|
4637
4998
|
) -> ListNotebookInstancesPaginator:
|
|
4638
4999
|
"""
|
|
5000
|
+
Create a paginator for an operation.
|
|
5001
|
+
|
|
4639
5002
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4640
5003
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4641
5004
|
"""
|
|
@@ -4645,6 +5008,19 @@ class SageMakerClient(BaseClient):
|
|
|
4645
5008
|
self, operation_name: Literal["list_optimization_jobs"]
|
|
4646
5009
|
) -> ListOptimizationJobsPaginator:
|
|
4647
5010
|
"""
|
|
5011
|
+
Create a paginator for an operation.
|
|
5012
|
+
|
|
5013
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5014
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5015
|
+
"""
|
|
5016
|
+
|
|
5017
|
+
@overload
|
|
5018
|
+
def get_paginator(
|
|
5019
|
+
self, operation_name: Literal["list_partner_apps"]
|
|
5020
|
+
) -> ListPartnerAppsPaginator:
|
|
5021
|
+
"""
|
|
5022
|
+
Create a paginator for an operation.
|
|
5023
|
+
|
|
4648
5024
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4649
5025
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4650
5026
|
"""
|
|
@@ -4654,6 +5030,8 @@ class SageMakerClient(BaseClient):
|
|
|
4654
5030
|
self, operation_name: Literal["list_pipeline_execution_steps"]
|
|
4655
5031
|
) -> ListPipelineExecutionStepsPaginator:
|
|
4656
5032
|
"""
|
|
5033
|
+
Create a paginator for an operation.
|
|
5034
|
+
|
|
4657
5035
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4658
5036
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4659
5037
|
"""
|
|
@@ -4663,6 +5041,8 @@ class SageMakerClient(BaseClient):
|
|
|
4663
5041
|
self, operation_name: Literal["list_pipeline_executions"]
|
|
4664
5042
|
) -> ListPipelineExecutionsPaginator:
|
|
4665
5043
|
"""
|
|
5044
|
+
Create a paginator for an operation.
|
|
5045
|
+
|
|
4666
5046
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4667
5047
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4668
5048
|
"""
|
|
@@ -4672,6 +5052,8 @@ class SageMakerClient(BaseClient):
|
|
|
4672
5052
|
self, operation_name: Literal["list_pipeline_parameters_for_execution"]
|
|
4673
5053
|
) -> ListPipelineParametersForExecutionPaginator:
|
|
4674
5054
|
"""
|
|
5055
|
+
Create a paginator for an operation.
|
|
5056
|
+
|
|
4675
5057
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4676
5058
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4677
5059
|
"""
|
|
@@ -4679,6 +5061,8 @@ class SageMakerClient(BaseClient):
|
|
|
4679
5061
|
@overload
|
|
4680
5062
|
def get_paginator(self, operation_name: Literal["list_pipelines"]) -> ListPipelinesPaginator:
|
|
4681
5063
|
"""
|
|
5064
|
+
Create a paginator for an operation.
|
|
5065
|
+
|
|
4682
5066
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4683
5067
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4684
5068
|
"""
|
|
@@ -4688,6 +5072,8 @@ class SageMakerClient(BaseClient):
|
|
|
4688
5072
|
self, operation_name: Literal["list_processing_jobs"]
|
|
4689
5073
|
) -> ListProcessingJobsPaginator:
|
|
4690
5074
|
"""
|
|
5075
|
+
Create a paginator for an operation.
|
|
5076
|
+
|
|
4691
5077
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4692
5078
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4693
5079
|
"""
|
|
@@ -4697,6 +5083,8 @@ class SageMakerClient(BaseClient):
|
|
|
4697
5083
|
self, operation_name: Literal["list_resource_catalogs"]
|
|
4698
5084
|
) -> ListResourceCatalogsPaginator:
|
|
4699
5085
|
"""
|
|
5086
|
+
Create a paginator for an operation.
|
|
5087
|
+
|
|
4700
5088
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4701
5089
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4702
5090
|
"""
|
|
@@ -4704,6 +5092,8 @@ class SageMakerClient(BaseClient):
|
|
|
4704
5092
|
@overload
|
|
4705
5093
|
def get_paginator(self, operation_name: Literal["list_spaces"]) -> ListSpacesPaginator:
|
|
4706
5094
|
"""
|
|
5095
|
+
Create a paginator for an operation.
|
|
5096
|
+
|
|
4707
5097
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4708
5098
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4709
5099
|
"""
|
|
@@ -4713,6 +5103,8 @@ class SageMakerClient(BaseClient):
|
|
|
4713
5103
|
self, operation_name: Literal["list_stage_devices"]
|
|
4714
5104
|
) -> ListStageDevicesPaginator:
|
|
4715
5105
|
"""
|
|
5106
|
+
Create a paginator for an operation.
|
|
5107
|
+
|
|
4716
5108
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4717
5109
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4718
5110
|
"""
|
|
@@ -4722,6 +5114,8 @@ class SageMakerClient(BaseClient):
|
|
|
4722
5114
|
self, operation_name: Literal["list_studio_lifecycle_configs"]
|
|
4723
5115
|
) -> ListStudioLifecycleConfigsPaginator:
|
|
4724
5116
|
"""
|
|
5117
|
+
Create a paginator for an operation.
|
|
5118
|
+
|
|
4725
5119
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4726
5120
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4727
5121
|
"""
|
|
@@ -4731,6 +5125,8 @@ class SageMakerClient(BaseClient):
|
|
|
4731
5125
|
self, operation_name: Literal["list_subscribed_workteams"]
|
|
4732
5126
|
) -> ListSubscribedWorkteamsPaginator:
|
|
4733
5127
|
"""
|
|
5128
|
+
Create a paginator for an operation.
|
|
5129
|
+
|
|
4734
5130
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4735
5131
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4736
5132
|
"""
|
|
@@ -4738,6 +5134,8 @@ class SageMakerClient(BaseClient):
|
|
|
4738
5134
|
@overload
|
|
4739
5135
|
def get_paginator(self, operation_name: Literal["list_tags"]) -> ListTagsPaginator:
|
|
4740
5136
|
"""
|
|
5137
|
+
Create a paginator for an operation.
|
|
5138
|
+
|
|
4741
5139
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4742
5140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4743
5141
|
"""
|
|
@@ -4747,6 +5145,8 @@ class SageMakerClient(BaseClient):
|
|
|
4747
5145
|
self, operation_name: Literal["list_training_jobs_for_hyper_parameter_tuning_job"]
|
|
4748
5146
|
) -> ListTrainingJobsForHyperParameterTuningJobPaginator:
|
|
4749
5147
|
"""
|
|
5148
|
+
Create a paginator for an operation.
|
|
5149
|
+
|
|
4750
5150
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4751
5151
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4752
5152
|
"""
|
|
@@ -4756,6 +5156,19 @@ class SageMakerClient(BaseClient):
|
|
|
4756
5156
|
self, operation_name: Literal["list_training_jobs"]
|
|
4757
5157
|
) -> ListTrainingJobsPaginator:
|
|
4758
5158
|
"""
|
|
5159
|
+
Create a paginator for an operation.
|
|
5160
|
+
|
|
5161
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5162
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5163
|
+
"""
|
|
5164
|
+
|
|
5165
|
+
@overload
|
|
5166
|
+
def get_paginator(
|
|
5167
|
+
self, operation_name: Literal["list_training_plans"]
|
|
5168
|
+
) -> ListTrainingPlansPaginator:
|
|
5169
|
+
"""
|
|
5170
|
+
Create a paginator for an operation.
|
|
5171
|
+
|
|
4759
5172
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4760
5173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4761
5174
|
"""
|
|
@@ -4765,6 +5178,8 @@ class SageMakerClient(BaseClient):
|
|
|
4765
5178
|
self, operation_name: Literal["list_transform_jobs"]
|
|
4766
5179
|
) -> ListTransformJobsPaginator:
|
|
4767
5180
|
"""
|
|
5181
|
+
Create a paginator for an operation.
|
|
5182
|
+
|
|
4768
5183
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4769
5184
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4770
5185
|
"""
|
|
@@ -4774,6 +5189,8 @@ class SageMakerClient(BaseClient):
|
|
|
4774
5189
|
self, operation_name: Literal["list_trial_components"]
|
|
4775
5190
|
) -> ListTrialComponentsPaginator:
|
|
4776
5191
|
"""
|
|
5192
|
+
Create a paginator for an operation.
|
|
5193
|
+
|
|
4777
5194
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4778
5195
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4779
5196
|
"""
|
|
@@ -4781,6 +5198,8 @@ class SageMakerClient(BaseClient):
|
|
|
4781
5198
|
@overload
|
|
4782
5199
|
def get_paginator(self, operation_name: Literal["list_trials"]) -> ListTrialsPaginator:
|
|
4783
5200
|
"""
|
|
5201
|
+
Create a paginator for an operation.
|
|
5202
|
+
|
|
4784
5203
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4785
5204
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4786
5205
|
"""
|
|
@@ -4790,6 +5209,8 @@ class SageMakerClient(BaseClient):
|
|
|
4790
5209
|
self, operation_name: Literal["list_user_profiles"]
|
|
4791
5210
|
) -> ListUserProfilesPaginator:
|
|
4792
5211
|
"""
|
|
5212
|
+
Create a paginator for an operation.
|
|
5213
|
+
|
|
4793
5214
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4794
5215
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4795
5216
|
"""
|
|
@@ -4797,6 +5218,8 @@ class SageMakerClient(BaseClient):
|
|
|
4797
5218
|
@overload
|
|
4798
5219
|
def get_paginator(self, operation_name: Literal["list_workforces"]) -> ListWorkforcesPaginator:
|
|
4799
5220
|
"""
|
|
5221
|
+
Create a paginator for an operation.
|
|
5222
|
+
|
|
4800
5223
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4801
5224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4802
5225
|
"""
|
|
@@ -4804,6 +5227,8 @@ class SageMakerClient(BaseClient):
|
|
|
4804
5227
|
@overload
|
|
4805
5228
|
def get_paginator(self, operation_name: Literal["list_workteams"]) -> ListWorkteamsPaginator:
|
|
4806
5229
|
"""
|
|
5230
|
+
Create a paginator for an operation.
|
|
5231
|
+
|
|
4807
5232
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4808
5233
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4809
5234
|
"""
|
|
@@ -4811,6 +5236,8 @@ class SageMakerClient(BaseClient):
|
|
|
4811
5236
|
@overload
|
|
4812
5237
|
def get_paginator(self, operation_name: Literal["search"]) -> SearchPaginator:
|
|
4813
5238
|
"""
|
|
5239
|
+
Create a paginator for an operation.
|
|
5240
|
+
|
|
4814
5241
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4815
5242
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4816
5243
|
"""
|
|
@@ -4818,6 +5245,8 @@ class SageMakerClient(BaseClient):
|
|
|
4818
5245
|
@overload
|
|
4819
5246
|
def get_waiter(self, waiter_name: Literal["endpoint_deleted"]) -> EndpointDeletedWaiter:
|
|
4820
5247
|
"""
|
|
5248
|
+
Returns an object that can wait for some condition.
|
|
5249
|
+
|
|
4821
5250
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4822
5251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4823
5252
|
"""
|
|
@@ -4825,6 +5254,8 @@ class SageMakerClient(BaseClient):
|
|
|
4825
5254
|
@overload
|
|
4826
5255
|
def get_waiter(self, waiter_name: Literal["endpoint_in_service"]) -> EndpointInServiceWaiter:
|
|
4827
5256
|
"""
|
|
5257
|
+
Returns an object that can wait for some condition.
|
|
5258
|
+
|
|
4828
5259
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4829
5260
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4830
5261
|
"""
|
|
@@ -4832,6 +5263,8 @@ class SageMakerClient(BaseClient):
|
|
|
4832
5263
|
@overload
|
|
4833
5264
|
def get_waiter(self, waiter_name: Literal["image_created"]) -> ImageCreatedWaiter:
|
|
4834
5265
|
"""
|
|
5266
|
+
Returns an object that can wait for some condition.
|
|
5267
|
+
|
|
4835
5268
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4836
5269
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4837
5270
|
"""
|
|
@@ -4839,6 +5272,8 @@ class SageMakerClient(BaseClient):
|
|
|
4839
5272
|
@overload
|
|
4840
5273
|
def get_waiter(self, waiter_name: Literal["image_deleted"]) -> ImageDeletedWaiter:
|
|
4841
5274
|
"""
|
|
5275
|
+
Returns an object that can wait for some condition.
|
|
5276
|
+
|
|
4842
5277
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4843
5278
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4844
5279
|
"""
|
|
@@ -4846,6 +5281,8 @@ class SageMakerClient(BaseClient):
|
|
|
4846
5281
|
@overload
|
|
4847
5282
|
def get_waiter(self, waiter_name: Literal["image_updated"]) -> ImageUpdatedWaiter:
|
|
4848
5283
|
"""
|
|
5284
|
+
Returns an object that can wait for some condition.
|
|
5285
|
+
|
|
4849
5286
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4850
5287
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4851
5288
|
"""
|
|
@@ -4855,6 +5292,8 @@ class SageMakerClient(BaseClient):
|
|
|
4855
5292
|
self, waiter_name: Literal["image_version_created"]
|
|
4856
5293
|
) -> ImageVersionCreatedWaiter:
|
|
4857
5294
|
"""
|
|
5295
|
+
Returns an object that can wait for some condition.
|
|
5296
|
+
|
|
4858
5297
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4859
5298
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4860
5299
|
"""
|
|
@@ -4864,6 +5303,8 @@ class SageMakerClient(BaseClient):
|
|
|
4864
5303
|
self, waiter_name: Literal["image_version_deleted"]
|
|
4865
5304
|
) -> ImageVersionDeletedWaiter:
|
|
4866
5305
|
"""
|
|
5306
|
+
Returns an object that can wait for some condition.
|
|
5307
|
+
|
|
4867
5308
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4868
5309
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4869
5310
|
"""
|
|
@@ -4873,6 +5314,8 @@ class SageMakerClient(BaseClient):
|
|
|
4873
5314
|
self, waiter_name: Literal["notebook_instance_deleted"]
|
|
4874
5315
|
) -> NotebookInstanceDeletedWaiter:
|
|
4875
5316
|
"""
|
|
5317
|
+
Returns an object that can wait for some condition.
|
|
5318
|
+
|
|
4876
5319
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4877
5320
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4878
5321
|
"""
|
|
@@ -4882,6 +5325,8 @@ class SageMakerClient(BaseClient):
|
|
|
4882
5325
|
self, waiter_name: Literal["notebook_instance_in_service"]
|
|
4883
5326
|
) -> NotebookInstanceInServiceWaiter:
|
|
4884
5327
|
"""
|
|
5328
|
+
Returns an object that can wait for some condition.
|
|
5329
|
+
|
|
4885
5330
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4886
5331
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4887
5332
|
"""
|
|
@@ -4891,6 +5336,8 @@ class SageMakerClient(BaseClient):
|
|
|
4891
5336
|
self, waiter_name: Literal["notebook_instance_stopped"]
|
|
4892
5337
|
) -> NotebookInstanceStoppedWaiter:
|
|
4893
5338
|
"""
|
|
5339
|
+
Returns an object that can wait for some condition.
|
|
5340
|
+
|
|
4894
5341
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4895
5342
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4896
5343
|
"""
|
|
@@ -4900,6 +5347,8 @@ class SageMakerClient(BaseClient):
|
|
|
4900
5347
|
self, waiter_name: Literal["processing_job_completed_or_stopped"]
|
|
4901
5348
|
) -> ProcessingJobCompletedOrStoppedWaiter:
|
|
4902
5349
|
"""
|
|
5350
|
+
Returns an object that can wait for some condition.
|
|
5351
|
+
|
|
4903
5352
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4904
5353
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4905
5354
|
"""
|
|
@@ -4909,6 +5358,8 @@ class SageMakerClient(BaseClient):
|
|
|
4909
5358
|
self, waiter_name: Literal["training_job_completed_or_stopped"]
|
|
4910
5359
|
) -> TrainingJobCompletedOrStoppedWaiter:
|
|
4911
5360
|
"""
|
|
5361
|
+
Returns an object that can wait for some condition.
|
|
5362
|
+
|
|
4912
5363
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4913
5364
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4914
5365
|
"""
|
|
@@ -4918,6 +5369,8 @@ class SageMakerClient(BaseClient):
|
|
|
4918
5369
|
self, waiter_name: Literal["transform_job_completed_or_stopped"]
|
|
4919
5370
|
) -> TransformJobCompletedOrStoppedWaiter:
|
|
4920
5371
|
"""
|
|
5372
|
+
Returns an object that can wait for some condition.
|
|
5373
|
+
|
|
4921
5374
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4922
5375
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4923
5376
|
"""
|