mypy-boto3-sagemaker 1.35.68__py3-none-any.whl → 1.35.86__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 +8 -7
- mypy_boto3_sagemaker/client.py +789 -296
- mypy_boto3_sagemaker/client.pyi +789 -295
- mypy_boto3_sagemaker/literals.py +115 -1
- mypy_boto3_sagemaker/literals.pyi +115 -1
- mypy_boto3_sagemaker/paginator.py +952 -428
- mypy_boto3_sagemaker/paginator.pyi +867 -427
- mypy_boto3_sagemaker/type_defs.py +1142 -590
- mypy_boto3_sagemaker/type_defs.pyi +1077 -583
- mypy_boto3_sagemaker/version.py +1 -1
- mypy_boto3_sagemaker/waiter.py +41 -36
- mypy_boto3_sagemaker/waiter.pyi +41 -36
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/METADATA +63 -9
- mypy_boto3_sagemaker-1.35.86.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.86.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for sagemaker service
|
|
2
|
+
Type annotations for sagemaker service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -16,10 +16,14 @@ Usage::
|
|
|
16
16
|
Copyright 2024 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, Mapping, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
ListActionsPaginator,
|
|
@@ -32,9 +36,11 @@ from .paginator import (
|
|
|
32
36
|
ListAutoMLJobsPaginator,
|
|
33
37
|
ListCandidatesForAutoMLJobPaginator,
|
|
34
38
|
ListClusterNodesPaginator,
|
|
39
|
+
ListClusterSchedulerConfigsPaginator,
|
|
35
40
|
ListClustersPaginator,
|
|
36
41
|
ListCodeRepositoriesPaginator,
|
|
37
42
|
ListCompilationJobsPaginator,
|
|
43
|
+
ListComputeQuotasPaginator,
|
|
38
44
|
ListContextsPaginator,
|
|
39
45
|
ListDataQualityJobDefinitionsPaginator,
|
|
40
46
|
ListDeviceFleetsPaginator,
|
|
@@ -76,6 +82,7 @@ from .paginator import (
|
|
|
76
82
|
ListNotebookInstanceLifecycleConfigsPaginator,
|
|
77
83
|
ListNotebookInstancesPaginator,
|
|
78
84
|
ListOptimizationJobsPaginator,
|
|
85
|
+
ListPartnerAppsPaginator,
|
|
79
86
|
ListPipelineExecutionsPaginator,
|
|
80
87
|
ListPipelineExecutionStepsPaginator,
|
|
81
88
|
ListPipelineParametersForExecutionPaginator,
|
|
@@ -89,6 +96,7 @@ from .paginator import (
|
|
|
89
96
|
ListTagsPaginator,
|
|
90
97
|
ListTrainingJobsForHyperParameterTuningJobPaginator,
|
|
91
98
|
ListTrainingJobsPaginator,
|
|
99
|
+
ListTrainingPlansPaginator,
|
|
92
100
|
ListTransformJobsPaginator,
|
|
93
101
|
ListTrialComponentsPaginator,
|
|
94
102
|
ListTrialsPaginator,
|
|
@@ -124,10 +132,14 @@ from .type_defs import (
|
|
|
124
132
|
CreateAutoMLJobV2ResponseTypeDef,
|
|
125
133
|
CreateClusterRequestRequestTypeDef,
|
|
126
134
|
CreateClusterResponseTypeDef,
|
|
135
|
+
CreateClusterSchedulerConfigRequestRequestTypeDef,
|
|
136
|
+
CreateClusterSchedulerConfigResponseTypeDef,
|
|
127
137
|
CreateCodeRepositoryInputRequestTypeDef,
|
|
128
138
|
CreateCodeRepositoryOutputTypeDef,
|
|
129
139
|
CreateCompilationJobRequestRequestTypeDef,
|
|
130
140
|
CreateCompilationJobResponseTypeDef,
|
|
141
|
+
CreateComputeQuotaRequestRequestTypeDef,
|
|
142
|
+
CreateComputeQuotaResponseTypeDef,
|
|
131
143
|
CreateContextRequestRequestTypeDef,
|
|
132
144
|
CreateContextResponseTypeDef,
|
|
133
145
|
CreateDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -195,6 +207,10 @@ from .type_defs import (
|
|
|
195
207
|
CreateNotebookInstanceOutputTypeDef,
|
|
196
208
|
CreateOptimizationJobRequestRequestTypeDef,
|
|
197
209
|
CreateOptimizationJobResponseTypeDef,
|
|
210
|
+
CreatePartnerAppPresignedUrlRequestRequestTypeDef,
|
|
211
|
+
CreatePartnerAppPresignedUrlResponseTypeDef,
|
|
212
|
+
CreatePartnerAppRequestRequestTypeDef,
|
|
213
|
+
CreatePartnerAppResponseTypeDef,
|
|
198
214
|
CreatePipelineRequestRequestTypeDef,
|
|
199
215
|
CreatePipelineResponseTypeDef,
|
|
200
216
|
CreatePresignedDomainUrlRequestRequestTypeDef,
|
|
@@ -213,6 +229,8 @@ from .type_defs import (
|
|
|
213
229
|
CreateStudioLifecycleConfigResponseTypeDef,
|
|
214
230
|
CreateTrainingJobRequestRequestTypeDef,
|
|
215
231
|
CreateTrainingJobResponseTypeDef,
|
|
232
|
+
CreateTrainingPlanRequestRequestTypeDef,
|
|
233
|
+
CreateTrainingPlanResponseTypeDef,
|
|
216
234
|
CreateTransformJobRequestRequestTypeDef,
|
|
217
235
|
CreateTransformJobResponseTypeDef,
|
|
218
236
|
CreateTrialComponentRequestRequestTypeDef,
|
|
@@ -236,8 +254,10 @@ from .type_defs import (
|
|
|
236
254
|
DeleteAssociationResponseTypeDef,
|
|
237
255
|
DeleteClusterRequestRequestTypeDef,
|
|
238
256
|
DeleteClusterResponseTypeDef,
|
|
257
|
+
DeleteClusterSchedulerConfigRequestRequestTypeDef,
|
|
239
258
|
DeleteCodeRepositoryInputRequestTypeDef,
|
|
240
259
|
DeleteCompilationJobRequestRequestTypeDef,
|
|
260
|
+
DeleteComputeQuotaRequestRequestTypeDef,
|
|
241
261
|
DeleteContextRequestRequestTypeDef,
|
|
242
262
|
DeleteContextResponseTypeDef,
|
|
243
263
|
DeleteDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -275,6 +295,8 @@ from .type_defs import (
|
|
|
275
295
|
DeleteNotebookInstanceInputRequestTypeDef,
|
|
276
296
|
DeleteNotebookInstanceLifecycleConfigInputRequestTypeDef,
|
|
277
297
|
DeleteOptimizationJobRequestRequestTypeDef,
|
|
298
|
+
DeletePartnerAppRequestRequestTypeDef,
|
|
299
|
+
DeletePartnerAppResponseTypeDef,
|
|
278
300
|
DeletePipelineRequestRequestTypeDef,
|
|
279
301
|
DeletePipelineResponseTypeDef,
|
|
280
302
|
DeleteProjectInputRequestTypeDef,
|
|
@@ -308,10 +330,14 @@ from .type_defs import (
|
|
|
308
330
|
DescribeClusterNodeResponseTypeDef,
|
|
309
331
|
DescribeClusterRequestRequestTypeDef,
|
|
310
332
|
DescribeClusterResponseTypeDef,
|
|
333
|
+
DescribeClusterSchedulerConfigRequestRequestTypeDef,
|
|
334
|
+
DescribeClusterSchedulerConfigResponseTypeDef,
|
|
311
335
|
DescribeCodeRepositoryInputRequestTypeDef,
|
|
312
336
|
DescribeCodeRepositoryOutputTypeDef,
|
|
313
337
|
DescribeCompilationJobRequestRequestTypeDef,
|
|
314
338
|
DescribeCompilationJobResponseTypeDef,
|
|
339
|
+
DescribeComputeQuotaRequestRequestTypeDef,
|
|
340
|
+
DescribeComputeQuotaResponseTypeDef,
|
|
315
341
|
DescribeContextRequestRequestTypeDef,
|
|
316
342
|
DescribeContextResponseTypeDef,
|
|
317
343
|
DescribeDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -386,6 +412,8 @@ from .type_defs import (
|
|
|
386
412
|
DescribeNotebookInstanceOutputTypeDef,
|
|
387
413
|
DescribeOptimizationJobRequestRequestTypeDef,
|
|
388
414
|
DescribeOptimizationJobResponseTypeDef,
|
|
415
|
+
DescribePartnerAppRequestRequestTypeDef,
|
|
416
|
+
DescribePartnerAppResponseTypeDef,
|
|
389
417
|
DescribePipelineDefinitionForExecutionRequestRequestTypeDef,
|
|
390
418
|
DescribePipelineDefinitionForExecutionResponseTypeDef,
|
|
391
419
|
DescribePipelineExecutionRequestRequestTypeDef,
|
|
@@ -404,6 +432,8 @@ from .type_defs import (
|
|
|
404
432
|
DescribeSubscribedWorkteamResponseTypeDef,
|
|
405
433
|
DescribeTrainingJobRequestRequestTypeDef,
|
|
406
434
|
DescribeTrainingJobResponseTypeDef,
|
|
435
|
+
DescribeTrainingPlanRequestRequestTypeDef,
|
|
436
|
+
DescribeTrainingPlanResponseTypeDef,
|
|
407
437
|
DescribeTransformJobRequestRequestTypeDef,
|
|
408
438
|
DescribeTransformJobResponseTypeDef,
|
|
409
439
|
DescribeTrialComponentRequestRequestTypeDef,
|
|
@@ -452,12 +482,16 @@ from .type_defs import (
|
|
|
452
482
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
453
483
|
ListClusterNodesRequestRequestTypeDef,
|
|
454
484
|
ListClusterNodesResponseTypeDef,
|
|
485
|
+
ListClusterSchedulerConfigsRequestRequestTypeDef,
|
|
486
|
+
ListClusterSchedulerConfigsResponseTypeDef,
|
|
455
487
|
ListClustersRequestRequestTypeDef,
|
|
456
488
|
ListClustersResponseTypeDef,
|
|
457
489
|
ListCodeRepositoriesInputRequestTypeDef,
|
|
458
490
|
ListCodeRepositoriesOutputTypeDef,
|
|
459
491
|
ListCompilationJobsRequestRequestTypeDef,
|
|
460
492
|
ListCompilationJobsResponseTypeDef,
|
|
493
|
+
ListComputeQuotasRequestRequestTypeDef,
|
|
494
|
+
ListComputeQuotasResponseTypeDef,
|
|
461
495
|
ListContextsRequestRequestTypeDef,
|
|
462
496
|
ListContextsResponseTypeDef,
|
|
463
497
|
ListDataQualityJobDefinitionsRequestRequestTypeDef,
|
|
@@ -546,6 +580,8 @@ from .type_defs import (
|
|
|
546
580
|
ListNotebookInstancesOutputTypeDef,
|
|
547
581
|
ListOptimizationJobsRequestRequestTypeDef,
|
|
548
582
|
ListOptimizationJobsResponseTypeDef,
|
|
583
|
+
ListPartnerAppsRequestRequestTypeDef,
|
|
584
|
+
ListPartnerAppsResponseTypeDef,
|
|
549
585
|
ListPipelineExecutionsRequestRequestTypeDef,
|
|
550
586
|
ListPipelineExecutionsResponseTypeDef,
|
|
551
587
|
ListPipelineExecutionStepsRequestRequestTypeDef,
|
|
@@ -574,6 +610,8 @@ from .type_defs import (
|
|
|
574
610
|
ListTrainingJobsForHyperParameterTuningJobResponseTypeDef,
|
|
575
611
|
ListTrainingJobsRequestRequestTypeDef,
|
|
576
612
|
ListTrainingJobsResponseTypeDef,
|
|
613
|
+
ListTrainingPlansRequestRequestTypeDef,
|
|
614
|
+
ListTrainingPlansResponseTypeDef,
|
|
577
615
|
ListTransformJobsRequestRequestTypeDef,
|
|
578
616
|
ListTransformJobsResponseTypeDef,
|
|
579
617
|
ListTrialComponentsRequestRequestTypeDef,
|
|
@@ -597,6 +635,8 @@ from .type_defs import (
|
|
|
597
635
|
RetryPipelineExecutionResponseTypeDef,
|
|
598
636
|
SearchRequestRequestTypeDef,
|
|
599
637
|
SearchResponseTypeDef,
|
|
638
|
+
SearchTrainingPlanOfferingsRequestRequestTypeDef,
|
|
639
|
+
SearchTrainingPlanOfferingsResponseTypeDef,
|
|
600
640
|
SendPipelineExecutionStepFailureRequestRequestTypeDef,
|
|
601
641
|
SendPipelineExecutionStepFailureResponseTypeDef,
|
|
602
642
|
SendPipelineExecutionStepSuccessRequestRequestTypeDef,
|
|
@@ -637,10 +677,14 @@ from .type_defs import (
|
|
|
637
677
|
UpdateArtifactResponseTypeDef,
|
|
638
678
|
UpdateClusterRequestRequestTypeDef,
|
|
639
679
|
UpdateClusterResponseTypeDef,
|
|
680
|
+
UpdateClusterSchedulerConfigRequestRequestTypeDef,
|
|
681
|
+
UpdateClusterSchedulerConfigResponseTypeDef,
|
|
640
682
|
UpdateClusterSoftwareRequestRequestTypeDef,
|
|
641
683
|
UpdateClusterSoftwareResponseTypeDef,
|
|
642
684
|
UpdateCodeRepositoryInputRequestTypeDef,
|
|
643
685
|
UpdateCodeRepositoryOutputTypeDef,
|
|
686
|
+
UpdateComputeQuotaRequestRequestTypeDef,
|
|
687
|
+
UpdateComputeQuotaResponseTypeDef,
|
|
644
688
|
UpdateContextRequestRequestTypeDef,
|
|
645
689
|
UpdateContextResponseTypeDef,
|
|
646
690
|
UpdateDeviceFleetRequestRequestTypeDef,
|
|
@@ -680,6 +724,8 @@ from .type_defs import (
|
|
|
680
724
|
UpdateMonitoringScheduleResponseTypeDef,
|
|
681
725
|
UpdateNotebookInstanceInputRequestTypeDef,
|
|
682
726
|
UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef,
|
|
727
|
+
UpdatePartnerAppRequestRequestTypeDef,
|
|
728
|
+
UpdatePartnerAppResponseTypeDef,
|
|
683
729
|
UpdatePipelineExecutionRequestRequestTypeDef,
|
|
684
730
|
UpdatePipelineExecutionResponseTypeDef,
|
|
685
731
|
UpdatePipelineRequestRequestTypeDef,
|
|
@@ -724,19 +770,12 @@ else:
|
|
|
724
770
|
|
|
725
771
|
__all__ = ("SageMakerClient",)
|
|
726
772
|
|
|
727
|
-
class
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
class Exceptions:
|
|
735
|
-
ClientError: Type[BotocoreClientError]
|
|
736
|
-
ConflictException: Type[BotocoreClientError]
|
|
737
|
-
ResourceInUse: Type[BotocoreClientError]
|
|
738
|
-
ResourceLimitExceeded: Type[BotocoreClientError]
|
|
739
|
-
ResourceNotFound: Type[BotocoreClientError]
|
|
773
|
+
class Exceptions(BaseClientExceptions):
|
|
774
|
+
ClientError: type[BotocoreClientError]
|
|
775
|
+
ConflictException: type[BotocoreClientError]
|
|
776
|
+
ResourceInUse: type[BotocoreClientError]
|
|
777
|
+
ResourceLimitExceeded: type[BotocoreClientError]
|
|
778
|
+
ResourceNotFound: type[BotocoreClientError]
|
|
740
779
|
|
|
741
780
|
class SageMakerClient(BaseClient):
|
|
742
781
|
"""
|
|
@@ -755,11 +794,29 @@ class SageMakerClient(BaseClient):
|
|
|
755
794
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#exceptions)
|
|
756
795
|
"""
|
|
757
796
|
|
|
797
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
798
|
+
"""
|
|
799
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
800
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
801
|
+
"""
|
|
802
|
+
|
|
803
|
+
def generate_presigned_url(
|
|
804
|
+
self,
|
|
805
|
+
ClientMethod: str,
|
|
806
|
+
Params: Mapping[str, Any] = ...,
|
|
807
|
+
ExpiresIn: int = 3600,
|
|
808
|
+
HttpMethod: str = ...,
|
|
809
|
+
) -> str:
|
|
810
|
+
"""
|
|
811
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
812
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
813
|
+
"""
|
|
814
|
+
|
|
758
815
|
def add_association(
|
|
759
816
|
self, **kwargs: Unpack[AddAssociationRequestRequestTypeDef]
|
|
760
817
|
) -> AddAssociationResponseTypeDef:
|
|
761
818
|
"""
|
|
762
|
-
Creates an
|
|
819
|
+
Creates an <i>association</i> between the source and the destination.
|
|
763
820
|
|
|
764
821
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/add_association.html)
|
|
765
822
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#add_association)
|
|
@@ -797,35 +854,17 @@ class SageMakerClient(BaseClient):
|
|
|
797
854
|
self, **kwargs: Unpack[BatchDescribeModelPackageInputRequestTypeDef]
|
|
798
855
|
) -> BatchDescribeModelPackageOutputTypeDef:
|
|
799
856
|
"""
|
|
800
|
-
This action batch describes a list of versioned model packages
|
|
801
|
-
API
|
|
802
|
-
Documentation](https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackage).
|
|
857
|
+
This action batch describes a list of versioned model packages.
|
|
803
858
|
|
|
804
859
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_describe_model_package.html)
|
|
805
860
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_describe_model_package)
|
|
806
861
|
"""
|
|
807
862
|
|
|
808
|
-
def can_paginate(self, operation_name: str) -> bool:
|
|
809
|
-
"""
|
|
810
|
-
Check if an operation can be paginated.
|
|
811
|
-
|
|
812
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
813
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
814
|
-
"""
|
|
815
|
-
|
|
816
|
-
def close(self) -> None:
|
|
817
|
-
"""
|
|
818
|
-
Closes underlying endpoint connections.
|
|
819
|
-
|
|
820
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/close.html)
|
|
821
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#close)
|
|
822
|
-
"""
|
|
823
|
-
|
|
824
863
|
def create_action(
|
|
825
864
|
self, **kwargs: Unpack[CreateActionRequestRequestTypeDef]
|
|
826
865
|
) -> CreateActionResponseTypeDef:
|
|
827
866
|
"""
|
|
828
|
-
Creates an
|
|
867
|
+
Creates an <i>action</i>.
|
|
829
868
|
|
|
830
869
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_action.html)
|
|
831
870
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_action)
|
|
@@ -856,7 +895,7 @@ class SageMakerClient(BaseClient):
|
|
|
856
895
|
self, **kwargs: Unpack[CreateAppImageConfigRequestRequestTypeDef]
|
|
857
896
|
) -> CreateAppImageConfigResponseTypeDef:
|
|
858
897
|
"""
|
|
859
|
-
Creates a configuration for running a SageMaker image as a KernelGateway app.
|
|
898
|
+
Creates a configuration for running a SageMaker AI image as a KernelGateway app.
|
|
860
899
|
|
|
861
900
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_app_image_config.html)
|
|
862
901
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_app_image_config)
|
|
@@ -866,7 +905,7 @@ class SageMakerClient(BaseClient):
|
|
|
866
905
|
self, **kwargs: Unpack[CreateArtifactRequestRequestTypeDef]
|
|
867
906
|
) -> CreateArtifactResponseTypeDef:
|
|
868
907
|
"""
|
|
869
|
-
Creates an
|
|
908
|
+
Creates an <i>artifact</i>.
|
|
870
909
|
|
|
871
910
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_artifact.html)
|
|
872
911
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_artifact)
|
|
@@ -903,11 +942,21 @@ class SageMakerClient(BaseClient):
|
|
|
903
942
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster)
|
|
904
943
|
"""
|
|
905
944
|
|
|
945
|
+
def create_cluster_scheduler_config(
|
|
946
|
+
self, **kwargs: Unpack[CreateClusterSchedulerConfigRequestRequestTypeDef]
|
|
947
|
+
) -> CreateClusterSchedulerConfigResponseTypeDef:
|
|
948
|
+
"""
|
|
949
|
+
Create cluster policy configuration.
|
|
950
|
+
|
|
951
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_cluster_scheduler_config.html)
|
|
952
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster_scheduler_config)
|
|
953
|
+
"""
|
|
954
|
+
|
|
906
955
|
def create_code_repository(
|
|
907
956
|
self, **kwargs: Unpack[CreateCodeRepositoryInputRequestTypeDef]
|
|
908
957
|
) -> CreateCodeRepositoryOutputTypeDef:
|
|
909
958
|
"""
|
|
910
|
-
Creates a Git repository as a resource in your SageMaker account.
|
|
959
|
+
Creates a Git repository as a resource in your SageMaker AI account.
|
|
911
960
|
|
|
912
961
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_code_repository.html)
|
|
913
962
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_code_repository)
|
|
@@ -923,11 +972,21 @@ class SageMakerClient(BaseClient):
|
|
|
923
972
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compilation_job)
|
|
924
973
|
"""
|
|
925
974
|
|
|
975
|
+
def create_compute_quota(
|
|
976
|
+
self, **kwargs: Unpack[CreateComputeQuotaRequestRequestTypeDef]
|
|
977
|
+
) -> CreateComputeQuotaResponseTypeDef:
|
|
978
|
+
"""
|
|
979
|
+
Create compute allocation definition.
|
|
980
|
+
|
|
981
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_compute_quota.html)
|
|
982
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compute_quota)
|
|
983
|
+
"""
|
|
984
|
+
|
|
926
985
|
def create_context(
|
|
927
986
|
self, **kwargs: Unpack[CreateContextRequestRequestTypeDef]
|
|
928
987
|
) -> CreateContextResponseTypeDef:
|
|
929
988
|
"""
|
|
930
|
-
Creates a
|
|
989
|
+
Creates a <i>context</i>.
|
|
931
990
|
|
|
932
991
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_context.html)
|
|
933
992
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_context)
|
|
@@ -957,7 +1016,7 @@ class SageMakerClient(BaseClient):
|
|
|
957
1016
|
self, **kwargs: Unpack[CreateDomainRequestRequestTypeDef]
|
|
958
1017
|
) -> CreateDomainResponseTypeDef:
|
|
959
1018
|
"""
|
|
960
|
-
Creates a
|
|
1019
|
+
Creates a <code>Domain</code>.
|
|
961
1020
|
|
|
962
1021
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_domain.html)
|
|
963
1022
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_domain)
|
|
@@ -1018,7 +1077,7 @@ class SageMakerClient(BaseClient):
|
|
|
1018
1077
|
self, **kwargs: Unpack[CreateExperimentRequestRequestTypeDef]
|
|
1019
1078
|
) -> CreateExperimentResponseTypeDef:
|
|
1020
1079
|
"""
|
|
1021
|
-
Creates a SageMaker
|
|
1080
|
+
Creates a SageMaker <i>experiment</i>.
|
|
1022
1081
|
|
|
1023
1082
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_experiment.html)
|
|
1024
1083
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_experiment)
|
|
@@ -1028,7 +1087,7 @@ class SageMakerClient(BaseClient):
|
|
|
1028
1087
|
self, **kwargs: Unpack[CreateFeatureGroupRequestRequestTypeDef]
|
|
1029
1088
|
) -> CreateFeatureGroupResponseTypeDef:
|
|
1030
1089
|
"""
|
|
1031
|
-
Create a new
|
|
1090
|
+
Create a new <code>FeatureGroup</code>.
|
|
1032
1091
|
|
|
1033
1092
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_feature_group.html)
|
|
1034
1093
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_feature_group)
|
|
@@ -1089,7 +1148,7 @@ class SageMakerClient(BaseClient):
|
|
|
1089
1148
|
self, **kwargs: Unpack[CreateImageRequestRequestTypeDef]
|
|
1090
1149
|
) -> CreateImageResponseTypeDef:
|
|
1091
1150
|
"""
|
|
1092
|
-
Creates a custom SageMaker image.
|
|
1151
|
+
Creates a custom SageMaker AI image.
|
|
1093
1152
|
|
|
1094
1153
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image.html)
|
|
1095
1154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image)
|
|
@@ -1099,7 +1158,7 @@ class SageMakerClient(BaseClient):
|
|
|
1099
1158
|
self, **kwargs: Unpack[CreateImageVersionRequestRequestTypeDef]
|
|
1100
1159
|
) -> CreateImageVersionResponseTypeDef:
|
|
1101
1160
|
"""
|
|
1102
|
-
Creates a version of the SageMaker image specified by
|
|
1161
|
+
Creates a version of the SageMaker AI image specified by <code>ImageName</code>.
|
|
1103
1162
|
|
|
1104
1163
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image_version.html)
|
|
1105
1164
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image_version)
|
|
@@ -1109,7 +1168,7 @@ class SageMakerClient(BaseClient):
|
|
|
1109
1168
|
self, **kwargs: Unpack[CreateInferenceComponentInputRequestTypeDef]
|
|
1110
1169
|
) -> CreateInferenceComponentOutputTypeDef:
|
|
1111
1170
|
"""
|
|
1112
|
-
Creates an inference component, which is a SageMaker hosting object that you
|
|
1171
|
+
Creates an inference component, which is a SageMaker AI hosting object that you
|
|
1113
1172
|
can use to deploy a model to an endpoint.
|
|
1114
1173
|
|
|
1115
1174
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_inference_component.html)
|
|
@@ -1244,8 +1303,8 @@ class SageMakerClient(BaseClient):
|
|
|
1244
1303
|
self, **kwargs: Unpack[CreateMonitoringScheduleRequestRequestTypeDef]
|
|
1245
1304
|
) -> CreateMonitoringScheduleResponseTypeDef:
|
|
1246
1305
|
"""
|
|
1247
|
-
Creates a schedule that regularly starts Amazon SageMaker Processing Jobs to
|
|
1248
|
-
monitor the data captured for an Amazon SageMaker Endpoint.
|
|
1306
|
+
Creates a schedule that regularly starts Amazon SageMaker AI Processing Jobs to
|
|
1307
|
+
monitor the data captured for an Amazon SageMaker AI Endpoint.
|
|
1249
1308
|
|
|
1250
1309
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_monitoring_schedule.html)
|
|
1251
1310
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_monitoring_schedule)
|
|
@@ -1255,7 +1314,7 @@ class SageMakerClient(BaseClient):
|
|
|
1255
1314
|
self, **kwargs: Unpack[CreateNotebookInstanceInputRequestTypeDef]
|
|
1256
1315
|
) -> CreateNotebookInstanceOutputTypeDef:
|
|
1257
1316
|
"""
|
|
1258
|
-
Creates an SageMaker notebook instance.
|
|
1317
|
+
Creates an SageMaker AI notebook instance.
|
|
1259
1318
|
|
|
1260
1319
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_notebook_instance.html)
|
|
1261
1320
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_notebook_instance)
|
|
@@ -1282,6 +1341,26 @@ class SageMakerClient(BaseClient):
|
|
|
1282
1341
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_optimization_job)
|
|
1283
1342
|
"""
|
|
1284
1343
|
|
|
1344
|
+
def create_partner_app(
|
|
1345
|
+
self, **kwargs: Unpack[CreatePartnerAppRequestRequestTypeDef]
|
|
1346
|
+
) -> CreatePartnerAppResponseTypeDef:
|
|
1347
|
+
"""
|
|
1348
|
+
Creates an Amazon SageMaker Partner AI App.
|
|
1349
|
+
|
|
1350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app.html)
|
|
1351
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app)
|
|
1352
|
+
"""
|
|
1353
|
+
|
|
1354
|
+
def create_partner_app_presigned_url(
|
|
1355
|
+
self, **kwargs: Unpack[CreatePartnerAppPresignedUrlRequestRequestTypeDef]
|
|
1356
|
+
) -> CreatePartnerAppPresignedUrlResponseTypeDef:
|
|
1357
|
+
"""
|
|
1358
|
+
Creates a presigned URL to access an Amazon SageMaker Partner AI App.
|
|
1359
|
+
|
|
1360
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app_presigned_url.html)
|
|
1361
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app_presigned_url)
|
|
1362
|
+
"""
|
|
1363
|
+
|
|
1285
1364
|
def create_pipeline(
|
|
1286
1365
|
self, **kwargs: Unpack[CreatePipelineRequestRequestTypeDef]
|
|
1287
1366
|
) -> CreatePipelineResponseTypeDef:
|
|
@@ -1359,7 +1438,7 @@ class SageMakerClient(BaseClient):
|
|
|
1359
1438
|
self, **kwargs: Unpack[CreateStudioLifecycleConfigRequestRequestTypeDef]
|
|
1360
1439
|
) -> CreateStudioLifecycleConfigResponseTypeDef:
|
|
1361
1440
|
"""
|
|
1362
|
-
Creates a new Amazon SageMaker Studio Lifecycle Configuration.
|
|
1441
|
+
Creates a new Amazon SageMaker AI Studio Lifecycle Configuration.
|
|
1363
1442
|
|
|
1364
1443
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_studio_lifecycle_config.html)
|
|
1365
1444
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_studio_lifecycle_config)
|
|
@@ -1375,6 +1454,16 @@ class SageMakerClient(BaseClient):
|
|
|
1375
1454
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_job)
|
|
1376
1455
|
"""
|
|
1377
1456
|
|
|
1457
|
+
def create_training_plan(
|
|
1458
|
+
self, **kwargs: Unpack[CreateTrainingPlanRequestRequestTypeDef]
|
|
1459
|
+
) -> CreateTrainingPlanResponseTypeDef:
|
|
1460
|
+
"""
|
|
1461
|
+
Creates a new training plan in SageMaker to reserve compute capacity.
|
|
1462
|
+
|
|
1463
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_training_plan.html)
|
|
1464
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_plan)
|
|
1465
|
+
"""
|
|
1466
|
+
|
|
1378
1467
|
def create_transform_job(
|
|
1379
1468
|
self, **kwargs: Unpack[CreateTransformJobRequestRequestTypeDef]
|
|
1380
1469
|
) -> CreateTransformJobResponseTypeDef:
|
|
@@ -1389,7 +1478,7 @@ class SageMakerClient(BaseClient):
|
|
|
1389
1478
|
self, **kwargs: Unpack[CreateTrialRequestRequestTypeDef]
|
|
1390
1479
|
) -> CreateTrialResponseTypeDef:
|
|
1391
1480
|
"""
|
|
1392
|
-
Creates an SageMaker
|
|
1481
|
+
Creates an SageMaker <i>trial</i>.
|
|
1393
1482
|
|
|
1394
1483
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial.html)
|
|
1395
1484
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial)
|
|
@@ -1399,7 +1488,8 @@ class SageMakerClient(BaseClient):
|
|
|
1399
1488
|
self, **kwargs: Unpack[CreateTrialComponentRequestRequestTypeDef]
|
|
1400
1489
|
) -> CreateTrialComponentResponseTypeDef:
|
|
1401
1490
|
"""
|
|
1402
|
-
Creates a
|
|
1491
|
+
Creates a <i>trial component</i>, which is a stage of a machine learning
|
|
1492
|
+
<i>trial</i>.
|
|
1403
1493
|
|
|
1404
1494
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial_component.html)
|
|
1405
1495
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial_component)
|
|
@@ -1505,6 +1595,16 @@ class SageMakerClient(BaseClient):
|
|
|
1505
1595
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster)
|
|
1506
1596
|
"""
|
|
1507
1597
|
|
|
1598
|
+
def delete_cluster_scheduler_config(
|
|
1599
|
+
self, **kwargs: Unpack[DeleteClusterSchedulerConfigRequestRequestTypeDef]
|
|
1600
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1601
|
+
"""
|
|
1602
|
+
Deletes the cluster policy of the cluster.
|
|
1603
|
+
|
|
1604
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_cluster_scheduler_config.html)
|
|
1605
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster_scheduler_config)
|
|
1606
|
+
"""
|
|
1607
|
+
|
|
1508
1608
|
def delete_code_repository(
|
|
1509
1609
|
self, **kwargs: Unpack[DeleteCodeRepositoryInputRequestTypeDef]
|
|
1510
1610
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -1525,6 +1625,16 @@ class SageMakerClient(BaseClient):
|
|
|
1525
1625
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compilation_job)
|
|
1526
1626
|
"""
|
|
1527
1627
|
|
|
1628
|
+
def delete_compute_quota(
|
|
1629
|
+
self, **kwargs: Unpack[DeleteComputeQuotaRequestRequestTypeDef]
|
|
1630
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1631
|
+
"""
|
|
1632
|
+
Deletes the compute allocation from the cluster.
|
|
1633
|
+
|
|
1634
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_compute_quota.html)
|
|
1635
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compute_quota)
|
|
1636
|
+
"""
|
|
1637
|
+
|
|
1528
1638
|
def delete_context(
|
|
1529
1639
|
self, **kwargs: Unpack[DeleteContextRequestRequestTypeDef]
|
|
1530
1640
|
) -> DeleteContextResponseTypeDef:
|
|
@@ -1621,8 +1731,8 @@ class SageMakerClient(BaseClient):
|
|
|
1621
1731
|
self, **kwargs: Unpack[DeleteFeatureGroupRequestRequestTypeDef]
|
|
1622
1732
|
) -> EmptyResponseMetadataTypeDef:
|
|
1623
1733
|
"""
|
|
1624
|
-
Delete the
|
|
1625
|
-
the
|
|
1734
|
+
Delete the <code>FeatureGroup</code> and any data that was written to the
|
|
1735
|
+
<code>OnlineStore</code> of the <code>FeatureGroup</code>.
|
|
1626
1736
|
|
|
1627
1737
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_feature_group.html)
|
|
1628
1738
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_feature_group)
|
|
@@ -1630,7 +1740,7 @@ class SageMakerClient(BaseClient):
|
|
|
1630
1740
|
|
|
1631
1741
|
def delete_flow_definition(
|
|
1632
1742
|
self, **kwargs: Unpack[DeleteFlowDefinitionRequestRequestTypeDef]
|
|
1633
|
-
) ->
|
|
1743
|
+
) -> dict[str, Any]:
|
|
1634
1744
|
"""
|
|
1635
1745
|
Deletes the specified flow definition.
|
|
1636
1746
|
|
|
@@ -1670,7 +1780,7 @@ class SageMakerClient(BaseClient):
|
|
|
1670
1780
|
|
|
1671
1781
|
def delete_human_task_ui(
|
|
1672
1782
|
self, **kwargs: Unpack[DeleteHumanTaskUiRequestRequestTypeDef]
|
|
1673
|
-
) ->
|
|
1783
|
+
) -> dict[str, Any]:
|
|
1674
1784
|
"""
|
|
1675
1785
|
Use this operation to delete a human task user interface (worker task template).
|
|
1676
1786
|
|
|
@@ -1688,9 +1798,9 @@ class SageMakerClient(BaseClient):
|
|
|
1688
1798
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hyper_parameter_tuning_job)
|
|
1689
1799
|
"""
|
|
1690
1800
|
|
|
1691
|
-
def delete_image(self, **kwargs: Unpack[DeleteImageRequestRequestTypeDef]) ->
|
|
1801
|
+
def delete_image(self, **kwargs: Unpack[DeleteImageRequestRequestTypeDef]) -> dict[str, Any]:
|
|
1692
1802
|
"""
|
|
1693
|
-
Deletes a SageMaker image and all versions of the image.
|
|
1803
|
+
Deletes a SageMaker AI image and all versions of the image.
|
|
1694
1804
|
|
|
1695
1805
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_image.html)
|
|
1696
1806
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_image)
|
|
@@ -1698,9 +1808,9 @@ class SageMakerClient(BaseClient):
|
|
|
1698
1808
|
|
|
1699
1809
|
def delete_image_version(
|
|
1700
1810
|
self, **kwargs: Unpack[DeleteImageVersionRequestRequestTypeDef]
|
|
1701
|
-
) ->
|
|
1811
|
+
) -> dict[str, Any]:
|
|
1702
1812
|
"""
|
|
1703
|
-
Deletes a version of a SageMaker image.
|
|
1813
|
+
Deletes a version of a SageMaker AI image.
|
|
1704
1814
|
|
|
1705
1815
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_image_version.html)
|
|
1706
1816
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_image_version)
|
|
@@ -1750,7 +1860,7 @@ class SageMakerClient(BaseClient):
|
|
|
1750
1860
|
self, **kwargs: Unpack[DeleteModelBiasJobDefinitionRequestRequestTypeDef]
|
|
1751
1861
|
) -> EmptyResponseMetadataTypeDef:
|
|
1752
1862
|
"""
|
|
1753
|
-
Deletes an Amazon SageMaker model bias job definition.
|
|
1863
|
+
Deletes an Amazon SageMaker AI model bias job definition.
|
|
1754
1864
|
|
|
1755
1865
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_bias_job_definition.html)
|
|
1756
1866
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_bias_job_definition)
|
|
@@ -1770,7 +1880,7 @@ class SageMakerClient(BaseClient):
|
|
|
1770
1880
|
self, **kwargs: Unpack[DeleteModelExplainabilityJobDefinitionRequestRequestTypeDef]
|
|
1771
1881
|
) -> EmptyResponseMetadataTypeDef:
|
|
1772
1882
|
"""
|
|
1773
|
-
Deletes an Amazon SageMaker model explainability job definition.
|
|
1883
|
+
Deletes an Amazon SageMaker AI model explainability job definition.
|
|
1774
1884
|
|
|
1775
1885
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_explainability_job_definition.html)
|
|
1776
1886
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_explainability_job_definition)
|
|
@@ -1830,7 +1940,7 @@ class SageMakerClient(BaseClient):
|
|
|
1830
1940
|
self, **kwargs: Unpack[DeleteNotebookInstanceInputRequestTypeDef]
|
|
1831
1941
|
) -> EmptyResponseMetadataTypeDef:
|
|
1832
1942
|
"""
|
|
1833
|
-
Deletes an SageMaker notebook instance.
|
|
1943
|
+
Deletes an SageMaker AI notebook instance.
|
|
1834
1944
|
|
|
1835
1945
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_notebook_instance.html)
|
|
1836
1946
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_notebook_instance)
|
|
@@ -1856,6 +1966,16 @@ class SageMakerClient(BaseClient):
|
|
|
1856
1966
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_optimization_job)
|
|
1857
1967
|
"""
|
|
1858
1968
|
|
|
1969
|
+
def delete_partner_app(
|
|
1970
|
+
self, **kwargs: Unpack[DeletePartnerAppRequestRequestTypeDef]
|
|
1971
|
+
) -> DeletePartnerAppResponseTypeDef:
|
|
1972
|
+
"""
|
|
1973
|
+
Deletes a SageMaker Partner AI App.
|
|
1974
|
+
|
|
1975
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_partner_app.html)
|
|
1976
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_partner_app)
|
|
1977
|
+
"""
|
|
1978
|
+
|
|
1859
1979
|
def delete_pipeline(
|
|
1860
1980
|
self, **kwargs: Unpack[DeletePipelineRequestRequestTypeDef]
|
|
1861
1981
|
) -> DeletePipelineResponseTypeDef:
|
|
@@ -1890,13 +2010,13 @@ class SageMakerClient(BaseClient):
|
|
|
1890
2010
|
self, **kwargs: Unpack[DeleteStudioLifecycleConfigRequestRequestTypeDef]
|
|
1891
2011
|
) -> EmptyResponseMetadataTypeDef:
|
|
1892
2012
|
"""
|
|
1893
|
-
Deletes the Amazon SageMaker Studio Lifecycle Configuration.
|
|
2013
|
+
Deletes the Amazon SageMaker AI Studio Lifecycle Configuration.
|
|
1894
2014
|
|
|
1895
2015
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_studio_lifecycle_config.html)
|
|
1896
2016
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_studio_lifecycle_config)
|
|
1897
2017
|
"""
|
|
1898
2018
|
|
|
1899
|
-
def delete_tags(self, **kwargs: Unpack[DeleteTagsInputRequestTypeDef]) ->
|
|
2019
|
+
def delete_tags(self, **kwargs: Unpack[DeleteTagsInputRequestTypeDef]) -> dict[str, Any]:
|
|
1900
2020
|
"""
|
|
1901
2021
|
Deletes the specified tags from an SageMaker resource.
|
|
1902
2022
|
|
|
@@ -1936,7 +2056,7 @@ class SageMakerClient(BaseClient):
|
|
|
1936
2056
|
|
|
1937
2057
|
def delete_workforce(
|
|
1938
2058
|
self, **kwargs: Unpack[DeleteWorkforceRequestRequestTypeDef]
|
|
1939
|
-
) ->
|
|
2059
|
+
) -> dict[str, Any]:
|
|
1940
2060
|
"""
|
|
1941
2061
|
Use this operation to delete a workforce.
|
|
1942
2062
|
|
|
@@ -2018,8 +2138,8 @@ class SageMakerClient(BaseClient):
|
|
|
2018
2138
|
self, **kwargs: Unpack[DescribeAutoMLJobRequestRequestTypeDef]
|
|
2019
2139
|
) -> DescribeAutoMLJobResponseTypeDef:
|
|
2020
2140
|
"""
|
|
2021
|
-
Returns information about an AutoML job created by calling
|
|
2022
|
-
|
|
2141
|
+
Returns information about an AutoML job created by calling <a
|
|
2142
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2023
2143
|
|
|
2024
2144
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job.html)
|
|
2025
2145
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job)
|
|
@@ -2029,10 +2149,10 @@ class SageMakerClient(BaseClient):
|
|
|
2029
2149
|
self, **kwargs: Unpack[DescribeAutoMLJobV2RequestRequestTypeDef]
|
|
2030
2150
|
) -> DescribeAutoMLJobV2ResponseTypeDef:
|
|
2031
2151
|
"""
|
|
2032
|
-
Returns information about an AutoML job created by calling
|
|
2033
|
-
|
|
2034
|
-
or
|
|
2035
|
-
|
|
2152
|
+
Returns information about an AutoML job created by calling <a
|
|
2153
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>
|
|
2154
|
+
or <a
|
|
2155
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2036
2156
|
|
|
2037
2157
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job_v2.html)
|
|
2038
2158
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job_v2)
|
|
@@ -2052,13 +2172,23 @@ class SageMakerClient(BaseClient):
|
|
|
2052
2172
|
self, **kwargs: Unpack[DescribeClusterNodeRequestRequestTypeDef]
|
|
2053
2173
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
2054
2174
|
"""
|
|
2055
|
-
Retrieves information of a node (also called a
|
|
2056
|
-
SageMaker HyperPod cluster.
|
|
2175
|
+
Retrieves information of a node (also called a <i>instance</i> interchangeably)
|
|
2176
|
+
of a SageMaker HyperPod cluster.
|
|
2057
2177
|
|
|
2058
2178
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_node.html)
|
|
2059
2179
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_node)
|
|
2060
2180
|
"""
|
|
2061
2181
|
|
|
2182
|
+
def describe_cluster_scheduler_config(
|
|
2183
|
+
self, **kwargs: Unpack[DescribeClusterSchedulerConfigRequestRequestTypeDef]
|
|
2184
|
+
) -> DescribeClusterSchedulerConfigResponseTypeDef:
|
|
2185
|
+
"""
|
|
2186
|
+
Description of the cluster policy.
|
|
2187
|
+
|
|
2188
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_scheduler_config.html)
|
|
2189
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_scheduler_config)
|
|
2190
|
+
"""
|
|
2191
|
+
|
|
2062
2192
|
def describe_code_repository(
|
|
2063
2193
|
self, **kwargs: Unpack[DescribeCodeRepositoryInputRequestTypeDef]
|
|
2064
2194
|
) -> DescribeCodeRepositoryOutputTypeDef:
|
|
@@ -2079,6 +2209,16 @@ class SageMakerClient(BaseClient):
|
|
|
2079
2209
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compilation_job)
|
|
2080
2210
|
"""
|
|
2081
2211
|
|
|
2212
|
+
def describe_compute_quota(
|
|
2213
|
+
self, **kwargs: Unpack[DescribeComputeQuotaRequestRequestTypeDef]
|
|
2214
|
+
) -> DescribeComputeQuotaResponseTypeDef:
|
|
2215
|
+
"""
|
|
2216
|
+
Description of the compute allocation definition.
|
|
2217
|
+
|
|
2218
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_compute_quota.html)
|
|
2219
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compute_quota)
|
|
2220
|
+
"""
|
|
2221
|
+
|
|
2082
2222
|
def describe_context(
|
|
2083
2223
|
self, **kwargs: Unpack[DescribeContextRequestRequestTypeDef]
|
|
2084
2224
|
) -> DescribeContextResponseTypeDef:
|
|
@@ -2164,7 +2304,7 @@ class SageMakerClient(BaseClient):
|
|
|
2164
2304
|
) -> DescribeEndpointConfigOutputTypeDef:
|
|
2165
2305
|
"""
|
|
2166
2306
|
Returns the description of an endpoint configuration created using the
|
|
2167
|
-
|
|
2307
|
+
<code>CreateEndpointConfig</code> API.
|
|
2168
2308
|
|
|
2169
2309
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_endpoint_config.html)
|
|
2170
2310
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_endpoint_config)
|
|
@@ -2184,7 +2324,7 @@ class SageMakerClient(BaseClient):
|
|
|
2184
2324
|
self, **kwargs: Unpack[DescribeFeatureGroupRequestRequestTypeDef]
|
|
2185
2325
|
) -> DescribeFeatureGroupResponseTypeDef:
|
|
2186
2326
|
"""
|
|
2187
|
-
Use this operation to describe a
|
|
2327
|
+
Use this operation to describe a <code>FeatureGroup</code>.
|
|
2188
2328
|
|
|
2189
2329
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_feature_group.html)
|
|
2190
2330
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_feature_group)
|
|
@@ -2256,7 +2396,7 @@ class SageMakerClient(BaseClient):
|
|
|
2256
2396
|
self, **kwargs: Unpack[DescribeImageRequestRequestTypeDef]
|
|
2257
2397
|
) -> DescribeImageResponseTypeDef:
|
|
2258
2398
|
"""
|
|
2259
|
-
Describes a SageMaker image.
|
|
2399
|
+
Describes a SageMaker AI image.
|
|
2260
2400
|
|
|
2261
2401
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_image.html)
|
|
2262
2402
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_image)
|
|
@@ -2266,7 +2406,7 @@ class SageMakerClient(BaseClient):
|
|
|
2266
2406
|
self, **kwargs: Unpack[DescribeImageVersionRequestRequestTypeDef]
|
|
2267
2407
|
) -> DescribeImageVersionResponseTypeDef:
|
|
2268
2408
|
"""
|
|
2269
|
-
Describes a version of a SageMaker image.
|
|
2409
|
+
Describes a version of a SageMaker AI image.
|
|
2270
2410
|
|
|
2271
2411
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_image_version.html)
|
|
2272
2412
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_image_version)
|
|
@@ -2336,7 +2476,7 @@ class SageMakerClient(BaseClient):
|
|
|
2336
2476
|
self, **kwargs: Unpack[DescribeModelInputRequestTypeDef]
|
|
2337
2477
|
) -> DescribeModelOutputTypeDef:
|
|
2338
2478
|
"""
|
|
2339
|
-
Describes a model that you created using the
|
|
2479
|
+
Describes a model that you created using the <code>CreateModel</code> API.
|
|
2340
2480
|
|
|
2341
2481
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model.html)
|
|
2342
2482
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model)
|
|
@@ -2454,6 +2594,16 @@ class SageMakerClient(BaseClient):
|
|
|
2454
2594
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_optimization_job)
|
|
2455
2595
|
"""
|
|
2456
2596
|
|
|
2597
|
+
def describe_partner_app(
|
|
2598
|
+
self, **kwargs: Unpack[DescribePartnerAppRequestRequestTypeDef]
|
|
2599
|
+
) -> DescribePartnerAppResponseTypeDef:
|
|
2600
|
+
"""
|
|
2601
|
+
Gets information about a SageMaker Partner AI App.
|
|
2602
|
+
|
|
2603
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_partner_app.html)
|
|
2604
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_partner_app)
|
|
2605
|
+
"""
|
|
2606
|
+
|
|
2457
2607
|
def describe_pipeline(
|
|
2458
2608
|
self, **kwargs: Unpack[DescribePipelineRequestRequestTypeDef]
|
|
2459
2609
|
) -> DescribePipelineResponseTypeDef:
|
|
@@ -2518,7 +2668,7 @@ class SageMakerClient(BaseClient):
|
|
|
2518
2668
|
self, **kwargs: Unpack[DescribeStudioLifecycleConfigRequestRequestTypeDef]
|
|
2519
2669
|
) -> DescribeStudioLifecycleConfigResponseTypeDef:
|
|
2520
2670
|
"""
|
|
2521
|
-
Describes the Amazon SageMaker Studio Lifecycle Configuration.
|
|
2671
|
+
Describes the Amazon SageMaker AI Studio Lifecycle Configuration.
|
|
2522
2672
|
|
|
2523
2673
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_studio_lifecycle_config.html)
|
|
2524
2674
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_studio_lifecycle_config)
|
|
@@ -2544,6 +2694,16 @@ class SageMakerClient(BaseClient):
|
|
|
2544
2694
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_job)
|
|
2545
2695
|
"""
|
|
2546
2696
|
|
|
2697
|
+
def describe_training_plan(
|
|
2698
|
+
self, **kwargs: Unpack[DescribeTrainingPlanRequestRequestTypeDef]
|
|
2699
|
+
) -> DescribeTrainingPlanResponseTypeDef:
|
|
2700
|
+
"""
|
|
2701
|
+
Retrieves detailed information about a specific training plan.
|
|
2702
|
+
|
|
2703
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_training_plan.html)
|
|
2704
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_plan)
|
|
2705
|
+
"""
|
|
2706
|
+
|
|
2547
2707
|
def describe_transform_job(
|
|
2548
2708
|
self, **kwargs: Unpack[DescribeTransformJobRequestRequestTypeDef]
|
|
2549
2709
|
) -> DescribeTransformJobResponseTypeDef:
|
|
@@ -2589,8 +2749,8 @@ class SageMakerClient(BaseClient):
|
|
|
2589
2749
|
) -> DescribeWorkforceResponseTypeDef:
|
|
2590
2750
|
"""
|
|
2591
2751
|
Lists private workforce information, including workforce name, Amazon Resource
|
|
2592
|
-
Name (ARN), and, if applicable, allowed IP address ranges (
|
|
2593
|
-
|
|
2752
|
+
Name (ARN), and, if applicable, allowed IP address ranges (<a
|
|
2753
|
+
href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>).
|
|
2594
2754
|
|
|
2595
2755
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_workforce.html)
|
|
2596
2756
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workforce)
|
|
@@ -2606,7 +2766,7 @@ class SageMakerClient(BaseClient):
|
|
|
2606
2766
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2607
2767
|
"""
|
|
2608
2768
|
|
|
2609
|
-
def disable_sagemaker_servicecatalog_portfolio(self) ->
|
|
2769
|
+
def disable_sagemaker_servicecatalog_portfolio(self) -> dict[str, Any]:
|
|
2610
2770
|
"""
|
|
2611
2771
|
Disables using Service Catalog in SageMaker.
|
|
2612
2772
|
|
|
@@ -2624,7 +2784,7 @@ class SageMakerClient(BaseClient):
|
|
|
2624
2784
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#disassociate_trial_component)
|
|
2625
2785
|
"""
|
|
2626
2786
|
|
|
2627
|
-
def enable_sagemaker_servicecatalog_portfolio(self) ->
|
|
2787
|
+
def enable_sagemaker_servicecatalog_portfolio(self) -> dict[str, Any]:
|
|
2628
2788
|
"""
|
|
2629
2789
|
Enables using Service Catalog in SageMaker.
|
|
2630
2790
|
|
|
@@ -2632,20 +2792,6 @@ class SageMakerClient(BaseClient):
|
|
|
2632
2792
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#enable_sagemaker_servicecatalog_portfolio)
|
|
2633
2793
|
"""
|
|
2634
2794
|
|
|
2635
|
-
def generate_presigned_url(
|
|
2636
|
-
self,
|
|
2637
|
-
ClientMethod: str,
|
|
2638
|
-
Params: Mapping[str, Any] = ...,
|
|
2639
|
-
ExpiresIn: int = 3600,
|
|
2640
|
-
HttpMethod: str = ...,
|
|
2641
|
-
) -> str:
|
|
2642
|
-
"""
|
|
2643
|
-
Generate a presigned url given a client, its method, and arguments.
|
|
2644
|
-
|
|
2645
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
2646
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
2647
|
-
"""
|
|
2648
|
-
|
|
2649
2795
|
def get_device_fleet_report(
|
|
2650
2796
|
self, **kwargs: Unpack[GetDeviceFleetReportRequestRequestTypeDef]
|
|
2651
2797
|
) -> GetDeviceFleetReportResponseTypeDef:
|
|
@@ -2808,13 +2954,23 @@ class SageMakerClient(BaseClient):
|
|
|
2808
2954
|
self, **kwargs: Unpack[ListClusterNodesRequestRequestTypeDef]
|
|
2809
2955
|
) -> ListClusterNodesResponseTypeDef:
|
|
2810
2956
|
"""
|
|
2811
|
-
Retrieves the list of instances (also called
|
|
2957
|
+
Retrieves the list of instances (also called <i>nodes</i> interchangeably) in a
|
|
2812
2958
|
SageMaker HyperPod cluster.
|
|
2813
2959
|
|
|
2814
2960
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_nodes.html)
|
|
2815
2961
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_nodes)
|
|
2816
2962
|
"""
|
|
2817
2963
|
|
|
2964
|
+
def list_cluster_scheduler_configs(
|
|
2965
|
+
self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestRequestTypeDef]
|
|
2966
|
+
) -> ListClusterSchedulerConfigsResponseTypeDef:
|
|
2967
|
+
"""
|
|
2968
|
+
List the cluster policy configurations.
|
|
2969
|
+
|
|
2970
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_scheduler_configs.html)
|
|
2971
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_scheduler_configs)
|
|
2972
|
+
"""
|
|
2973
|
+
|
|
2818
2974
|
def list_clusters(
|
|
2819
2975
|
self, **kwargs: Unpack[ListClustersRequestRequestTypeDef]
|
|
2820
2976
|
) -> ListClustersResponseTypeDef:
|
|
@@ -2845,6 +3001,16 @@ class SageMakerClient(BaseClient):
|
|
|
2845
3001
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compilation_jobs)
|
|
2846
3002
|
"""
|
|
2847
3003
|
|
|
3004
|
+
def list_compute_quotas(
|
|
3005
|
+
self, **kwargs: Unpack[ListComputeQuotasRequestRequestTypeDef]
|
|
3006
|
+
) -> ListComputeQuotasResponseTypeDef:
|
|
3007
|
+
"""
|
|
3008
|
+
List the resource allocation definitions.
|
|
3009
|
+
|
|
3010
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_compute_quotas.html)
|
|
3011
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compute_quotas)
|
|
3012
|
+
"""
|
|
3013
|
+
|
|
2848
3014
|
def list_contexts(
|
|
2849
3015
|
self, **kwargs: Unpack[ListContextsRequestRequestTypeDef]
|
|
2850
3016
|
) -> ListContextsResponseTypeDef:
|
|
@@ -2949,7 +3115,7 @@ class SageMakerClient(BaseClient):
|
|
|
2949
3115
|
self, **kwargs: Unpack[ListFeatureGroupsRequestRequestTypeDef]
|
|
2950
3116
|
) -> ListFeatureGroupsResponseTypeDef:
|
|
2951
3117
|
"""
|
|
2952
|
-
List
|
|
3118
|
+
List <code>FeatureGroup</code>s based on given filter and order.
|
|
2953
3119
|
|
|
2954
3120
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_feature_groups.html)
|
|
2955
3121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_feature_groups)
|
|
@@ -3007,8 +3173,8 @@ class SageMakerClient(BaseClient):
|
|
|
3007
3173
|
self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestRequestTypeDef]
|
|
3008
3174
|
) -> ListHyperParameterTuningJobsResponseTypeDef:
|
|
3009
3175
|
"""
|
|
3010
|
-
Gets a list of
|
|
3011
|
-
|
|
3176
|
+
Gets a list of <a
|
|
3177
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobSummary.html">HyperParameterTuningJobSummary</a>
|
|
3012
3178
|
objects that describe the hyperparameter tuning jobs launched in your account.
|
|
3013
3179
|
|
|
3014
3180
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hyper_parameter_tuning_jobs.html)
|
|
@@ -3210,7 +3376,7 @@ class SageMakerClient(BaseClient):
|
|
|
3210
3376
|
self, **kwargs: Unpack[ListModelsInputRequestTypeDef]
|
|
3211
3377
|
) -> ListModelsOutputTypeDef:
|
|
3212
3378
|
"""
|
|
3213
|
-
Lists models created with the
|
|
3379
|
+
Lists models created with the <code>CreateModel</code> API.
|
|
3214
3380
|
|
|
3215
3381
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_models.html)
|
|
3216
3382
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_models)
|
|
@@ -3260,8 +3426,8 @@ class SageMakerClient(BaseClient):
|
|
|
3260
3426
|
self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputRequestTypeDef]
|
|
3261
3427
|
) -> ListNotebookInstanceLifecycleConfigsOutputTypeDef:
|
|
3262
3428
|
"""
|
|
3263
|
-
Lists notebook instance lifestyle configurations created with the
|
|
3264
|
-
|
|
3429
|
+
Lists notebook instance lifestyle configurations created with the <a
|
|
3430
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
3265
3431
|
API.
|
|
3266
3432
|
|
|
3267
3433
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instance_lifecycle_configs.html)
|
|
@@ -3272,8 +3438,8 @@ class SageMakerClient(BaseClient):
|
|
|
3272
3438
|
self, **kwargs: Unpack[ListNotebookInstancesInputRequestTypeDef]
|
|
3273
3439
|
) -> ListNotebookInstancesOutputTypeDef:
|
|
3274
3440
|
"""
|
|
3275
|
-
Returns a list of the SageMaker notebook instances in the requester's
|
|
3276
|
-
in an Amazon Web Services Region.
|
|
3441
|
+
Returns a list of the SageMaker AI notebook instances in the requester's
|
|
3442
|
+
account in an Amazon Web Services Region.
|
|
3277
3443
|
|
|
3278
3444
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instances.html)
|
|
3279
3445
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_notebook_instances)
|
|
@@ -3289,11 +3455,21 @@ class SageMakerClient(BaseClient):
|
|
|
3289
3455
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_optimization_jobs)
|
|
3290
3456
|
"""
|
|
3291
3457
|
|
|
3458
|
+
def list_partner_apps(
|
|
3459
|
+
self, **kwargs: Unpack[ListPartnerAppsRequestRequestTypeDef]
|
|
3460
|
+
) -> ListPartnerAppsResponseTypeDef:
|
|
3461
|
+
"""
|
|
3462
|
+
Lists all of the SageMaker Partner AI Apps in an account.
|
|
3463
|
+
|
|
3464
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_partner_apps.html)
|
|
3465
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_partner_apps)
|
|
3466
|
+
"""
|
|
3467
|
+
|
|
3292
3468
|
def list_pipeline_execution_steps(
|
|
3293
3469
|
self, **kwargs: Unpack[ListPipelineExecutionStepsRequestRequestTypeDef]
|
|
3294
3470
|
) -> ListPipelineExecutionStepsResponseTypeDef:
|
|
3295
3471
|
"""
|
|
3296
|
-
Gets a list of
|
|
3472
|
+
Gets a list of <code>PipeLineExecutionStep</code> objects.
|
|
3297
3473
|
|
|
3298
3474
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipeline_execution_steps.html)
|
|
3299
3475
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipeline_execution_steps)
|
|
@@ -3384,8 +3560,8 @@ class SageMakerClient(BaseClient):
|
|
|
3384
3560
|
self, **kwargs: Unpack[ListStudioLifecycleConfigsRequestRequestTypeDef]
|
|
3385
3561
|
) -> ListStudioLifecycleConfigsResponseTypeDef:
|
|
3386
3562
|
"""
|
|
3387
|
-
Lists the Amazon SageMaker Studio Lifecycle Configurations in your Amazon
|
|
3388
|
-
Services Account.
|
|
3563
|
+
Lists the Amazon SageMaker AI Studio Lifecycle Configurations in your Amazon
|
|
3564
|
+
Web Services Account.
|
|
3389
3565
|
|
|
3390
3566
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_studio_lifecycle_configs.html)
|
|
3391
3567
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_studio_lifecycle_configs)
|
|
@@ -3424,8 +3600,8 @@ class SageMakerClient(BaseClient):
|
|
|
3424
3600
|
self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestRequestTypeDef]
|
|
3425
3601
|
) -> ListTrainingJobsForHyperParameterTuningJobResponseTypeDef:
|
|
3426
3602
|
"""
|
|
3427
|
-
Gets a list of
|
|
3428
|
-
|
|
3603
|
+
Gets a list of <a
|
|
3604
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobSummary.html">TrainingJobSummary</a>
|
|
3429
3605
|
objects that describe the training jobs that a hyperparameter tuning job
|
|
3430
3606
|
launched.
|
|
3431
3607
|
|
|
@@ -3433,6 +3609,16 @@ class SageMakerClient(BaseClient):
|
|
|
3433
3609
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_jobs_for_hyper_parameter_tuning_job)
|
|
3434
3610
|
"""
|
|
3435
3611
|
|
|
3612
|
+
def list_training_plans(
|
|
3613
|
+
self, **kwargs: Unpack[ListTrainingPlansRequestRequestTypeDef]
|
|
3614
|
+
) -> ListTrainingPlansResponseTypeDef:
|
|
3615
|
+
"""
|
|
3616
|
+
Retrieves a list of training plans for the current account.
|
|
3617
|
+
|
|
3618
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_training_plans.html)
|
|
3619
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_plans)
|
|
3620
|
+
"""
|
|
3621
|
+
|
|
3436
3622
|
def list_transform_jobs(
|
|
3437
3623
|
self, **kwargs: Unpack[ListTransformJobsRequestRequestTypeDef]
|
|
3438
3624
|
) -> ListTransformJobsResponseTypeDef:
|
|
@@ -3553,6 +3739,16 @@ class SageMakerClient(BaseClient):
|
|
|
3553
3739
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search)
|
|
3554
3740
|
"""
|
|
3555
3741
|
|
|
3742
|
+
def search_training_plan_offerings(
|
|
3743
|
+
self, **kwargs: Unpack[SearchTrainingPlanOfferingsRequestRequestTypeDef]
|
|
3744
|
+
) -> SearchTrainingPlanOfferingsResponseTypeDef:
|
|
3745
|
+
"""
|
|
3746
|
+
Searches for available training plan offerings based on specified criteria.
|
|
3747
|
+
|
|
3748
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/search_training_plan_offerings.html)
|
|
3749
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search_training_plan_offerings)
|
|
3750
|
+
"""
|
|
3751
|
+
|
|
3556
3752
|
def send_pipeline_execution_step_failure(
|
|
3557
3753
|
self, **kwargs: Unpack[SendPipelineExecutionStepFailureRequestRequestTypeDef]
|
|
3558
3754
|
) -> SendPipelineExecutionStepFailureResponseTypeDef:
|
|
@@ -3837,6 +4033,16 @@ class SageMakerClient(BaseClient):
|
|
|
3837
4033
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster)
|
|
3838
4034
|
"""
|
|
3839
4035
|
|
|
4036
|
+
def update_cluster_scheduler_config(
|
|
4037
|
+
self, **kwargs: Unpack[UpdateClusterSchedulerConfigRequestRequestTypeDef]
|
|
4038
|
+
) -> UpdateClusterSchedulerConfigResponseTypeDef:
|
|
4039
|
+
"""
|
|
4040
|
+
Update the cluster policy configuration.
|
|
4041
|
+
|
|
4042
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_cluster_scheduler_config.html)
|
|
4043
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster_scheduler_config)
|
|
4044
|
+
"""
|
|
4045
|
+
|
|
3840
4046
|
def update_cluster_software(
|
|
3841
4047
|
self, **kwargs: Unpack[UpdateClusterSoftwareRequestRequestTypeDef]
|
|
3842
4048
|
) -> UpdateClusterSoftwareResponseTypeDef:
|
|
@@ -3858,6 +4064,16 @@ class SageMakerClient(BaseClient):
|
|
|
3858
4064
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_code_repository)
|
|
3859
4065
|
"""
|
|
3860
4066
|
|
|
4067
|
+
def update_compute_quota(
|
|
4068
|
+
self, **kwargs: Unpack[UpdateComputeQuotaRequestRequestTypeDef]
|
|
4069
|
+
) -> UpdateComputeQuotaResponseTypeDef:
|
|
4070
|
+
"""
|
|
4071
|
+
Update the compute allocation definition.
|
|
4072
|
+
|
|
4073
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_compute_quota.html)
|
|
4074
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_compute_quota)
|
|
4075
|
+
"""
|
|
4076
|
+
|
|
3861
4077
|
def update_context(
|
|
3862
4078
|
self, **kwargs: Unpack[UpdateContextRequestRequestTypeDef]
|
|
3863
4079
|
) -> UpdateContextResponseTypeDef:
|
|
@@ -3902,8 +4118,8 @@ class SageMakerClient(BaseClient):
|
|
|
3902
4118
|
self, **kwargs: Unpack[UpdateEndpointInputRequestTypeDef]
|
|
3903
4119
|
) -> UpdateEndpointOutputTypeDef:
|
|
3904
4120
|
"""
|
|
3905
|
-
Deploys the
|
|
3906
|
-
instances.
|
|
4121
|
+
Deploys the <code>EndpointConfig</code> specified in the request to a new fleet
|
|
4122
|
+
of instances.
|
|
3907
4123
|
|
|
3908
4124
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_endpoint.html)
|
|
3909
4125
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_endpoint)
|
|
@@ -3965,7 +4181,7 @@ class SageMakerClient(BaseClient):
|
|
|
3965
4181
|
self, **kwargs: Unpack[UpdateImageRequestRequestTypeDef]
|
|
3966
4182
|
) -> UpdateImageResponseTypeDef:
|
|
3967
4183
|
"""
|
|
3968
|
-
Updates the properties of a SageMaker image.
|
|
4184
|
+
Updates the properties of a SageMaker AI image.
|
|
3969
4185
|
|
|
3970
4186
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_image.html)
|
|
3971
4187
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_image)
|
|
@@ -3975,7 +4191,7 @@ class SageMakerClient(BaseClient):
|
|
|
3975
4191
|
self, **kwargs: Unpack[UpdateImageVersionRequestRequestTypeDef]
|
|
3976
4192
|
) -> UpdateImageVersionResponseTypeDef:
|
|
3977
4193
|
"""
|
|
3978
|
-
Updates the properties of a SageMaker image version.
|
|
4194
|
+
Updates the properties of a SageMaker AI image version.
|
|
3979
4195
|
|
|
3980
4196
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_image_version.html)
|
|
3981
4197
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_image_version)
|
|
@@ -4063,7 +4279,7 @@ class SageMakerClient(BaseClient):
|
|
|
4063
4279
|
|
|
4064
4280
|
def update_notebook_instance(
|
|
4065
4281
|
self, **kwargs: Unpack[UpdateNotebookInstanceInputRequestTypeDef]
|
|
4066
|
-
) ->
|
|
4282
|
+
) -> dict[str, Any]:
|
|
4067
4283
|
"""
|
|
4068
4284
|
Updates a notebook instance.
|
|
4069
4285
|
|
|
@@ -4073,16 +4289,26 @@ class SageMakerClient(BaseClient):
|
|
|
4073
4289
|
|
|
4074
4290
|
def update_notebook_instance_lifecycle_config(
|
|
4075
4291
|
self, **kwargs: Unpack[UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef]
|
|
4076
|
-
) ->
|
|
4292
|
+
) -> dict[str, Any]:
|
|
4077
4293
|
"""
|
|
4078
|
-
Updates a notebook instance lifecycle configuration created with the
|
|
4079
|
-
|
|
4294
|
+
Updates a notebook instance lifecycle configuration created with the <a
|
|
4295
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
4080
4296
|
API.
|
|
4081
4297
|
|
|
4082
4298
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_notebook_instance_lifecycle_config.html)
|
|
4083
4299
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_notebook_instance_lifecycle_config)
|
|
4084
4300
|
"""
|
|
4085
4301
|
|
|
4302
|
+
def update_partner_app(
|
|
4303
|
+
self, **kwargs: Unpack[UpdatePartnerAppRequestRequestTypeDef]
|
|
4304
|
+
) -> UpdatePartnerAppResponseTypeDef:
|
|
4305
|
+
"""
|
|
4306
|
+
Updates all of the SageMaker Partner AI Apps in an account.
|
|
4307
|
+
|
|
4308
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_partner_app.html)
|
|
4309
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_partner_app)
|
|
4310
|
+
"""
|
|
4311
|
+
|
|
4086
4312
|
def update_pipeline(
|
|
4087
4313
|
self, **kwargs: Unpack[UpdatePipelineRequestRequestTypeDef]
|
|
4088
4314
|
) -> UpdatePipelineResponseTypeDef:
|
|
@@ -4185,735 +4411,1003 @@ class SageMakerClient(BaseClient):
|
|
|
4185
4411
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_workteam)
|
|
4186
4412
|
"""
|
|
4187
4413
|
|
|
4188
|
-
@overload
|
|
4189
|
-
def get_paginator(
|
|
4414
|
+
@overload # type: ignore[override]
|
|
4415
|
+
def get_paginator( # type: ignore[override]
|
|
4416
|
+
self, operation_name: Literal["list_actions"]
|
|
4417
|
+
) -> ListActionsPaginator:
|
|
4190
4418
|
"""
|
|
4419
|
+
Create a paginator for an operation.
|
|
4420
|
+
|
|
4191
4421
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4192
4422
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4193
4423
|
"""
|
|
4194
4424
|
|
|
4195
|
-
@overload
|
|
4196
|
-
def get_paginator(
|
|
4425
|
+
@overload # type: ignore[override]
|
|
4426
|
+
def get_paginator( # type: ignore[override]
|
|
4427
|
+
self, operation_name: Literal["list_algorithms"]
|
|
4428
|
+
) -> ListAlgorithmsPaginator:
|
|
4197
4429
|
"""
|
|
4430
|
+
Create a paginator for an operation.
|
|
4431
|
+
|
|
4198
4432
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4199
4433
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4200
4434
|
"""
|
|
4201
4435
|
|
|
4202
|
-
@overload
|
|
4203
|
-
def get_paginator(
|
|
4436
|
+
@overload # type: ignore[override]
|
|
4437
|
+
def get_paginator( # type: ignore[override]
|
|
4438
|
+
self, operation_name: Literal["list_aliases"]
|
|
4439
|
+
) -> ListAliasesPaginator:
|
|
4204
4440
|
"""
|
|
4441
|
+
Create a paginator for an operation.
|
|
4442
|
+
|
|
4205
4443
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4206
4444
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4207
4445
|
"""
|
|
4208
4446
|
|
|
4209
|
-
@overload
|
|
4210
|
-
def get_paginator(
|
|
4447
|
+
@overload # type: ignore[override]
|
|
4448
|
+
def get_paginator( # type: ignore[override]
|
|
4211
4449
|
self, operation_name: Literal["list_app_image_configs"]
|
|
4212
4450
|
) -> ListAppImageConfigsPaginator:
|
|
4213
4451
|
"""
|
|
4452
|
+
Create a paginator for an operation.
|
|
4453
|
+
|
|
4214
4454
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4215
4455
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4216
4456
|
"""
|
|
4217
4457
|
|
|
4218
|
-
@overload
|
|
4219
|
-
def get_paginator(
|
|
4458
|
+
@overload # type: ignore[override]
|
|
4459
|
+
def get_paginator( # type: ignore[override]
|
|
4460
|
+
self, operation_name: Literal["list_apps"]
|
|
4461
|
+
) -> ListAppsPaginator:
|
|
4220
4462
|
"""
|
|
4463
|
+
Create a paginator for an operation.
|
|
4464
|
+
|
|
4221
4465
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4222
4466
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4223
4467
|
"""
|
|
4224
4468
|
|
|
4225
|
-
@overload
|
|
4226
|
-
def get_paginator(
|
|
4469
|
+
@overload # type: ignore[override]
|
|
4470
|
+
def get_paginator( # type: ignore[override]
|
|
4471
|
+
self, operation_name: Literal["list_artifacts"]
|
|
4472
|
+
) -> ListArtifactsPaginator:
|
|
4227
4473
|
"""
|
|
4474
|
+
Create a paginator for an operation.
|
|
4475
|
+
|
|
4228
4476
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4229
4477
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4230
4478
|
"""
|
|
4231
4479
|
|
|
4232
|
-
@overload
|
|
4233
|
-
def get_paginator(
|
|
4480
|
+
@overload # type: ignore[override]
|
|
4481
|
+
def get_paginator( # type: ignore[override]
|
|
4234
4482
|
self, operation_name: Literal["list_associations"]
|
|
4235
4483
|
) -> ListAssociationsPaginator:
|
|
4236
4484
|
"""
|
|
4485
|
+
Create a paginator for an operation.
|
|
4486
|
+
|
|
4237
4487
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4238
4488
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4239
4489
|
"""
|
|
4240
4490
|
|
|
4241
|
-
@overload
|
|
4242
|
-
def get_paginator(
|
|
4491
|
+
@overload # type: ignore[override]
|
|
4492
|
+
def get_paginator( # type: ignore[override]
|
|
4243
4493
|
self, operation_name: Literal["list_auto_ml_jobs"]
|
|
4244
4494
|
) -> ListAutoMLJobsPaginator:
|
|
4245
4495
|
"""
|
|
4496
|
+
Create a paginator for an operation.
|
|
4497
|
+
|
|
4246
4498
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4247
4499
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4248
4500
|
"""
|
|
4249
4501
|
|
|
4250
|
-
@overload
|
|
4251
|
-
def get_paginator(
|
|
4502
|
+
@overload # type: ignore[override]
|
|
4503
|
+
def get_paginator( # type: ignore[override]
|
|
4252
4504
|
self, operation_name: Literal["list_candidates_for_auto_ml_job"]
|
|
4253
4505
|
) -> ListCandidatesForAutoMLJobPaginator:
|
|
4254
4506
|
"""
|
|
4507
|
+
Create a paginator for an operation.
|
|
4508
|
+
|
|
4255
4509
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4256
4510
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4257
4511
|
"""
|
|
4258
4512
|
|
|
4259
|
-
@overload
|
|
4260
|
-
def get_paginator(
|
|
4513
|
+
@overload # type: ignore[override]
|
|
4514
|
+
def get_paginator( # type: ignore[override]
|
|
4261
4515
|
self, operation_name: Literal["list_cluster_nodes"]
|
|
4262
4516
|
) -> ListClusterNodesPaginator:
|
|
4263
4517
|
"""
|
|
4518
|
+
Create a paginator for an operation.
|
|
4519
|
+
|
|
4264
4520
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4265
4521
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4266
4522
|
"""
|
|
4267
4523
|
|
|
4268
|
-
@overload
|
|
4269
|
-
def get_paginator(
|
|
4524
|
+
@overload # type: ignore[override]
|
|
4525
|
+
def get_paginator( # type: ignore[override]
|
|
4526
|
+
self, operation_name: Literal["list_cluster_scheduler_configs"]
|
|
4527
|
+
) -> ListClusterSchedulerConfigsPaginator:
|
|
4270
4528
|
"""
|
|
4529
|
+
Create a paginator for an operation.
|
|
4530
|
+
|
|
4271
4531
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4272
4532
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4273
4533
|
"""
|
|
4274
4534
|
|
|
4275
|
-
@overload
|
|
4276
|
-
def get_paginator(
|
|
4535
|
+
@overload # type: ignore[override]
|
|
4536
|
+
def get_paginator( # type: ignore[override]
|
|
4537
|
+
self, operation_name: Literal["list_clusters"]
|
|
4538
|
+
) -> ListClustersPaginator:
|
|
4539
|
+
"""
|
|
4540
|
+
Create a paginator for an operation.
|
|
4541
|
+
|
|
4542
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4543
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4544
|
+
"""
|
|
4545
|
+
|
|
4546
|
+
@overload # type: ignore[override]
|
|
4547
|
+
def get_paginator( # type: ignore[override]
|
|
4277
4548
|
self, operation_name: Literal["list_code_repositories"]
|
|
4278
4549
|
) -> ListCodeRepositoriesPaginator:
|
|
4279
4550
|
"""
|
|
4551
|
+
Create a paginator for an operation.
|
|
4552
|
+
|
|
4280
4553
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4281
4554
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4282
4555
|
"""
|
|
4283
4556
|
|
|
4284
|
-
@overload
|
|
4285
|
-
def get_paginator(
|
|
4557
|
+
@overload # type: ignore[override]
|
|
4558
|
+
def get_paginator( # type: ignore[override]
|
|
4286
4559
|
self, operation_name: Literal["list_compilation_jobs"]
|
|
4287
4560
|
) -> ListCompilationJobsPaginator:
|
|
4288
4561
|
"""
|
|
4562
|
+
Create a paginator for an operation.
|
|
4563
|
+
|
|
4564
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4565
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4566
|
+
"""
|
|
4567
|
+
|
|
4568
|
+
@overload # type: ignore[override]
|
|
4569
|
+
def get_paginator( # type: ignore[override]
|
|
4570
|
+
self, operation_name: Literal["list_compute_quotas"]
|
|
4571
|
+
) -> ListComputeQuotasPaginator:
|
|
4572
|
+
"""
|
|
4573
|
+
Create a paginator for an operation.
|
|
4574
|
+
|
|
4289
4575
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4290
4576
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4291
4577
|
"""
|
|
4292
4578
|
|
|
4293
|
-
@overload
|
|
4294
|
-
def get_paginator(
|
|
4579
|
+
@overload # type: ignore[override]
|
|
4580
|
+
def get_paginator( # type: ignore[override]
|
|
4581
|
+
self, operation_name: Literal["list_contexts"]
|
|
4582
|
+
) -> ListContextsPaginator:
|
|
4295
4583
|
"""
|
|
4584
|
+
Create a paginator for an operation.
|
|
4585
|
+
|
|
4296
4586
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4297
4587
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4298
4588
|
"""
|
|
4299
4589
|
|
|
4300
|
-
@overload
|
|
4301
|
-
def get_paginator(
|
|
4590
|
+
@overload # type: ignore[override]
|
|
4591
|
+
def get_paginator( # type: ignore[override]
|
|
4302
4592
|
self, operation_name: Literal["list_data_quality_job_definitions"]
|
|
4303
4593
|
) -> ListDataQualityJobDefinitionsPaginator:
|
|
4304
4594
|
"""
|
|
4595
|
+
Create a paginator for an operation.
|
|
4596
|
+
|
|
4305
4597
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4306
4598
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4307
4599
|
"""
|
|
4308
4600
|
|
|
4309
|
-
@overload
|
|
4310
|
-
def get_paginator(
|
|
4601
|
+
@overload # type: ignore[override]
|
|
4602
|
+
def get_paginator( # type: ignore[override]
|
|
4311
4603
|
self, operation_name: Literal["list_device_fleets"]
|
|
4312
4604
|
) -> ListDeviceFleetsPaginator:
|
|
4313
4605
|
"""
|
|
4606
|
+
Create a paginator for an operation.
|
|
4607
|
+
|
|
4314
4608
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4315
4609
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4316
4610
|
"""
|
|
4317
4611
|
|
|
4318
|
-
@overload
|
|
4319
|
-
def get_paginator(
|
|
4612
|
+
@overload # type: ignore[override]
|
|
4613
|
+
def get_paginator( # type: ignore[override]
|
|
4614
|
+
self, operation_name: Literal["list_devices"]
|
|
4615
|
+
) -> ListDevicesPaginator:
|
|
4320
4616
|
"""
|
|
4617
|
+
Create a paginator for an operation.
|
|
4618
|
+
|
|
4321
4619
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4322
4620
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4323
4621
|
"""
|
|
4324
4622
|
|
|
4325
|
-
@overload
|
|
4326
|
-
def get_paginator(
|
|
4623
|
+
@overload # type: ignore[override]
|
|
4624
|
+
def get_paginator( # type: ignore[override]
|
|
4625
|
+
self, operation_name: Literal["list_domains"]
|
|
4626
|
+
) -> ListDomainsPaginator:
|
|
4327
4627
|
"""
|
|
4628
|
+
Create a paginator for an operation.
|
|
4629
|
+
|
|
4328
4630
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4329
4631
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4330
4632
|
"""
|
|
4331
4633
|
|
|
4332
|
-
@overload
|
|
4333
|
-
def get_paginator(
|
|
4634
|
+
@overload # type: ignore[override]
|
|
4635
|
+
def get_paginator( # type: ignore[override]
|
|
4334
4636
|
self, operation_name: Literal["list_edge_deployment_plans"]
|
|
4335
4637
|
) -> ListEdgeDeploymentPlansPaginator:
|
|
4336
4638
|
"""
|
|
4639
|
+
Create a paginator for an operation.
|
|
4640
|
+
|
|
4337
4641
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4338
4642
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4339
4643
|
"""
|
|
4340
4644
|
|
|
4341
|
-
@overload
|
|
4342
|
-
def get_paginator(
|
|
4645
|
+
@overload # type: ignore[override]
|
|
4646
|
+
def get_paginator( # type: ignore[override]
|
|
4343
4647
|
self, operation_name: Literal["list_edge_packaging_jobs"]
|
|
4344
4648
|
) -> ListEdgePackagingJobsPaginator:
|
|
4345
4649
|
"""
|
|
4650
|
+
Create a paginator for an operation.
|
|
4651
|
+
|
|
4346
4652
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4347
4653
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4348
4654
|
"""
|
|
4349
4655
|
|
|
4350
|
-
@overload
|
|
4351
|
-
def get_paginator(
|
|
4656
|
+
@overload # type: ignore[override]
|
|
4657
|
+
def get_paginator( # type: ignore[override]
|
|
4352
4658
|
self, operation_name: Literal["list_endpoint_configs"]
|
|
4353
4659
|
) -> ListEndpointConfigsPaginator:
|
|
4354
4660
|
"""
|
|
4661
|
+
Create a paginator for an operation.
|
|
4662
|
+
|
|
4355
4663
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4356
4664
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4357
4665
|
"""
|
|
4358
4666
|
|
|
4359
|
-
@overload
|
|
4360
|
-
def get_paginator(
|
|
4667
|
+
@overload # type: ignore[override]
|
|
4668
|
+
def get_paginator( # type: ignore[override]
|
|
4669
|
+
self, operation_name: Literal["list_endpoints"]
|
|
4670
|
+
) -> ListEndpointsPaginator:
|
|
4361
4671
|
"""
|
|
4672
|
+
Create a paginator for an operation.
|
|
4673
|
+
|
|
4362
4674
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4363
4675
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4364
4676
|
"""
|
|
4365
4677
|
|
|
4366
|
-
@overload
|
|
4367
|
-
def get_paginator(
|
|
4678
|
+
@overload # type: ignore[override]
|
|
4679
|
+
def get_paginator( # type: ignore[override]
|
|
4368
4680
|
self, operation_name: Literal["list_experiments"]
|
|
4369
4681
|
) -> ListExperimentsPaginator:
|
|
4370
4682
|
"""
|
|
4683
|
+
Create a paginator for an operation.
|
|
4684
|
+
|
|
4371
4685
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4372
4686
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4373
4687
|
"""
|
|
4374
4688
|
|
|
4375
|
-
@overload
|
|
4376
|
-
def get_paginator(
|
|
4689
|
+
@overload # type: ignore[override]
|
|
4690
|
+
def get_paginator( # type: ignore[override]
|
|
4377
4691
|
self, operation_name: Literal["list_feature_groups"]
|
|
4378
4692
|
) -> ListFeatureGroupsPaginator:
|
|
4379
4693
|
"""
|
|
4694
|
+
Create a paginator for an operation.
|
|
4695
|
+
|
|
4380
4696
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4381
4697
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4382
4698
|
"""
|
|
4383
4699
|
|
|
4384
|
-
@overload
|
|
4385
|
-
def get_paginator(
|
|
4700
|
+
@overload # type: ignore[override]
|
|
4701
|
+
def get_paginator( # type: ignore[override]
|
|
4386
4702
|
self, operation_name: Literal["list_flow_definitions"]
|
|
4387
4703
|
) -> ListFlowDefinitionsPaginator:
|
|
4388
4704
|
"""
|
|
4705
|
+
Create a paginator for an operation.
|
|
4706
|
+
|
|
4389
4707
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4390
4708
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4391
4709
|
"""
|
|
4392
4710
|
|
|
4393
|
-
@overload
|
|
4394
|
-
def get_paginator(
|
|
4711
|
+
@overload # type: ignore[override]
|
|
4712
|
+
def get_paginator( # type: ignore[override]
|
|
4395
4713
|
self, operation_name: Literal["list_human_task_uis"]
|
|
4396
4714
|
) -> ListHumanTaskUisPaginator:
|
|
4397
4715
|
"""
|
|
4716
|
+
Create a paginator for an operation.
|
|
4717
|
+
|
|
4398
4718
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4399
4719
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4400
4720
|
"""
|
|
4401
4721
|
|
|
4402
|
-
@overload
|
|
4403
|
-
def get_paginator(
|
|
4722
|
+
@overload # type: ignore[override]
|
|
4723
|
+
def get_paginator( # type: ignore[override]
|
|
4404
4724
|
self, operation_name: Literal["list_hyper_parameter_tuning_jobs"]
|
|
4405
4725
|
) -> ListHyperParameterTuningJobsPaginator:
|
|
4406
4726
|
"""
|
|
4727
|
+
Create a paginator for an operation.
|
|
4728
|
+
|
|
4407
4729
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4408
4730
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4409
4731
|
"""
|
|
4410
4732
|
|
|
4411
|
-
@overload
|
|
4412
|
-
def get_paginator(
|
|
4733
|
+
@overload # type: ignore[override]
|
|
4734
|
+
def get_paginator( # type: ignore[override]
|
|
4413
4735
|
self, operation_name: Literal["list_image_versions"]
|
|
4414
4736
|
) -> ListImageVersionsPaginator:
|
|
4415
4737
|
"""
|
|
4738
|
+
Create a paginator for an operation.
|
|
4739
|
+
|
|
4416
4740
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4417
4741
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4418
4742
|
"""
|
|
4419
4743
|
|
|
4420
|
-
@overload
|
|
4421
|
-
def get_paginator(
|
|
4744
|
+
@overload # type: ignore[override]
|
|
4745
|
+
def get_paginator( # type: ignore[override]
|
|
4746
|
+
self, operation_name: Literal["list_images"]
|
|
4747
|
+
) -> ListImagesPaginator:
|
|
4422
4748
|
"""
|
|
4749
|
+
Create a paginator for an operation.
|
|
4750
|
+
|
|
4423
4751
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4424
4752
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4425
4753
|
"""
|
|
4426
4754
|
|
|
4427
|
-
@overload
|
|
4428
|
-
def get_paginator(
|
|
4755
|
+
@overload # type: ignore[override]
|
|
4756
|
+
def get_paginator( # type: ignore[override]
|
|
4429
4757
|
self, operation_name: Literal["list_inference_components"]
|
|
4430
4758
|
) -> ListInferenceComponentsPaginator:
|
|
4431
4759
|
"""
|
|
4760
|
+
Create a paginator for an operation.
|
|
4761
|
+
|
|
4432
4762
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4433
4763
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4434
4764
|
"""
|
|
4435
4765
|
|
|
4436
|
-
@overload
|
|
4437
|
-
def get_paginator(
|
|
4766
|
+
@overload # type: ignore[override]
|
|
4767
|
+
def get_paginator( # type: ignore[override]
|
|
4438
4768
|
self, operation_name: Literal["list_inference_experiments"]
|
|
4439
4769
|
) -> ListInferenceExperimentsPaginator:
|
|
4440
4770
|
"""
|
|
4771
|
+
Create a paginator for an operation.
|
|
4772
|
+
|
|
4441
4773
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4442
4774
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4443
4775
|
"""
|
|
4444
4776
|
|
|
4445
|
-
@overload
|
|
4446
|
-
def get_paginator(
|
|
4777
|
+
@overload # type: ignore[override]
|
|
4778
|
+
def get_paginator( # type: ignore[override]
|
|
4447
4779
|
self, operation_name: Literal["list_inference_recommendations_job_steps"]
|
|
4448
4780
|
) -> ListInferenceRecommendationsJobStepsPaginator:
|
|
4449
4781
|
"""
|
|
4782
|
+
Create a paginator for an operation.
|
|
4783
|
+
|
|
4450
4784
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4451
4785
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4452
4786
|
"""
|
|
4453
4787
|
|
|
4454
|
-
@overload
|
|
4455
|
-
def get_paginator(
|
|
4788
|
+
@overload # type: ignore[override]
|
|
4789
|
+
def get_paginator( # type: ignore[override]
|
|
4456
4790
|
self, operation_name: Literal["list_inference_recommendations_jobs"]
|
|
4457
4791
|
) -> ListInferenceRecommendationsJobsPaginator:
|
|
4458
4792
|
"""
|
|
4793
|
+
Create a paginator for an operation.
|
|
4794
|
+
|
|
4459
4795
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4460
4796
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4461
4797
|
"""
|
|
4462
4798
|
|
|
4463
|
-
@overload
|
|
4464
|
-
def get_paginator(
|
|
4799
|
+
@overload # type: ignore[override]
|
|
4800
|
+
def get_paginator( # type: ignore[override]
|
|
4465
4801
|
self, operation_name: Literal["list_labeling_jobs_for_workteam"]
|
|
4466
4802
|
) -> ListLabelingJobsForWorkteamPaginator:
|
|
4467
4803
|
"""
|
|
4804
|
+
Create a paginator for an operation.
|
|
4805
|
+
|
|
4468
4806
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4469
4807
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4470
4808
|
"""
|
|
4471
4809
|
|
|
4472
|
-
@overload
|
|
4473
|
-
def get_paginator(
|
|
4810
|
+
@overload # type: ignore[override]
|
|
4811
|
+
def get_paginator( # type: ignore[override]
|
|
4474
4812
|
self, operation_name: Literal["list_labeling_jobs"]
|
|
4475
4813
|
) -> ListLabelingJobsPaginator:
|
|
4476
4814
|
"""
|
|
4815
|
+
Create a paginator for an operation.
|
|
4816
|
+
|
|
4477
4817
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4478
4818
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4479
4819
|
"""
|
|
4480
4820
|
|
|
4481
|
-
@overload
|
|
4482
|
-
def get_paginator(
|
|
4821
|
+
@overload # type: ignore[override]
|
|
4822
|
+
def get_paginator( # type: ignore[override]
|
|
4483
4823
|
self, operation_name: Literal["list_lineage_groups"]
|
|
4484
4824
|
) -> ListLineageGroupsPaginator:
|
|
4485
4825
|
"""
|
|
4826
|
+
Create a paginator for an operation.
|
|
4827
|
+
|
|
4486
4828
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4487
4829
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4488
4830
|
"""
|
|
4489
4831
|
|
|
4490
|
-
@overload
|
|
4491
|
-
def get_paginator(
|
|
4832
|
+
@overload # type: ignore[override]
|
|
4833
|
+
def get_paginator( # type: ignore[override]
|
|
4492
4834
|
self, operation_name: Literal["list_mlflow_tracking_servers"]
|
|
4493
4835
|
) -> ListMlflowTrackingServersPaginator:
|
|
4494
4836
|
"""
|
|
4837
|
+
Create a paginator for an operation.
|
|
4838
|
+
|
|
4495
4839
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4496
4840
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4497
4841
|
"""
|
|
4498
4842
|
|
|
4499
|
-
@overload
|
|
4500
|
-
def get_paginator(
|
|
4843
|
+
@overload # type: ignore[override]
|
|
4844
|
+
def get_paginator( # type: ignore[override]
|
|
4501
4845
|
self, operation_name: Literal["list_model_bias_job_definitions"]
|
|
4502
4846
|
) -> ListModelBiasJobDefinitionsPaginator:
|
|
4503
4847
|
"""
|
|
4848
|
+
Create a paginator for an operation.
|
|
4849
|
+
|
|
4504
4850
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4505
4851
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4506
4852
|
"""
|
|
4507
4853
|
|
|
4508
|
-
@overload
|
|
4509
|
-
def get_paginator(
|
|
4854
|
+
@overload # type: ignore[override]
|
|
4855
|
+
def get_paginator( # type: ignore[override]
|
|
4510
4856
|
self, operation_name: Literal["list_model_card_export_jobs"]
|
|
4511
4857
|
) -> ListModelCardExportJobsPaginator:
|
|
4512
4858
|
"""
|
|
4859
|
+
Create a paginator for an operation.
|
|
4860
|
+
|
|
4513
4861
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4514
4862
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4515
4863
|
"""
|
|
4516
4864
|
|
|
4517
|
-
@overload
|
|
4518
|
-
def get_paginator(
|
|
4865
|
+
@overload # type: ignore[override]
|
|
4866
|
+
def get_paginator( # type: ignore[override]
|
|
4519
4867
|
self, operation_name: Literal["list_model_card_versions"]
|
|
4520
4868
|
) -> ListModelCardVersionsPaginator:
|
|
4521
4869
|
"""
|
|
4870
|
+
Create a paginator for an operation.
|
|
4871
|
+
|
|
4522
4872
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4523
4873
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4524
4874
|
"""
|
|
4525
4875
|
|
|
4526
|
-
@overload
|
|
4527
|
-
def get_paginator(
|
|
4876
|
+
@overload # type: ignore[override]
|
|
4877
|
+
def get_paginator( # type: ignore[override]
|
|
4878
|
+
self, operation_name: Literal["list_model_cards"]
|
|
4879
|
+
) -> ListModelCardsPaginator:
|
|
4528
4880
|
"""
|
|
4881
|
+
Create a paginator for an operation.
|
|
4882
|
+
|
|
4529
4883
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4530
4884
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4531
4885
|
"""
|
|
4532
4886
|
|
|
4533
|
-
@overload
|
|
4534
|
-
def get_paginator(
|
|
4887
|
+
@overload # type: ignore[override]
|
|
4888
|
+
def get_paginator( # type: ignore[override]
|
|
4535
4889
|
self, operation_name: Literal["list_model_explainability_job_definitions"]
|
|
4536
4890
|
) -> ListModelExplainabilityJobDefinitionsPaginator:
|
|
4537
4891
|
"""
|
|
4892
|
+
Create a paginator for an operation.
|
|
4893
|
+
|
|
4538
4894
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4539
4895
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4540
4896
|
"""
|
|
4541
4897
|
|
|
4542
|
-
@overload
|
|
4543
|
-
def get_paginator(
|
|
4898
|
+
@overload # type: ignore[override]
|
|
4899
|
+
def get_paginator( # type: ignore[override]
|
|
4544
4900
|
self, operation_name: Literal["list_model_metadata"]
|
|
4545
4901
|
) -> ListModelMetadataPaginator:
|
|
4546
4902
|
"""
|
|
4903
|
+
Create a paginator for an operation.
|
|
4904
|
+
|
|
4547
4905
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4548
4906
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4549
4907
|
"""
|
|
4550
4908
|
|
|
4551
|
-
@overload
|
|
4552
|
-
def get_paginator(
|
|
4909
|
+
@overload # type: ignore[override]
|
|
4910
|
+
def get_paginator( # type: ignore[override]
|
|
4553
4911
|
self, operation_name: Literal["list_model_package_groups"]
|
|
4554
4912
|
) -> ListModelPackageGroupsPaginator:
|
|
4555
4913
|
"""
|
|
4914
|
+
Create a paginator for an operation.
|
|
4915
|
+
|
|
4556
4916
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4557
4917
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4558
4918
|
"""
|
|
4559
4919
|
|
|
4560
|
-
@overload
|
|
4561
|
-
def get_paginator(
|
|
4920
|
+
@overload # type: ignore[override]
|
|
4921
|
+
def get_paginator( # type: ignore[override]
|
|
4562
4922
|
self, operation_name: Literal["list_model_packages"]
|
|
4563
4923
|
) -> ListModelPackagesPaginator:
|
|
4564
4924
|
"""
|
|
4925
|
+
Create a paginator for an operation.
|
|
4926
|
+
|
|
4565
4927
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4566
4928
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4567
4929
|
"""
|
|
4568
4930
|
|
|
4569
|
-
@overload
|
|
4570
|
-
def get_paginator(
|
|
4931
|
+
@overload # type: ignore[override]
|
|
4932
|
+
def get_paginator( # type: ignore[override]
|
|
4571
4933
|
self, operation_name: Literal["list_model_quality_job_definitions"]
|
|
4572
4934
|
) -> ListModelQualityJobDefinitionsPaginator:
|
|
4573
4935
|
"""
|
|
4936
|
+
Create a paginator for an operation.
|
|
4937
|
+
|
|
4574
4938
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4575
4939
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4576
4940
|
"""
|
|
4577
4941
|
|
|
4578
|
-
@overload
|
|
4579
|
-
def get_paginator(
|
|
4942
|
+
@overload # type: ignore[override]
|
|
4943
|
+
def get_paginator( # type: ignore[override]
|
|
4944
|
+
self, operation_name: Literal["list_models"]
|
|
4945
|
+
) -> ListModelsPaginator:
|
|
4580
4946
|
"""
|
|
4947
|
+
Create a paginator for an operation.
|
|
4948
|
+
|
|
4581
4949
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4582
4950
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4583
4951
|
"""
|
|
4584
4952
|
|
|
4585
|
-
@overload
|
|
4586
|
-
def get_paginator(
|
|
4953
|
+
@overload # type: ignore[override]
|
|
4954
|
+
def get_paginator( # type: ignore[override]
|
|
4587
4955
|
self, operation_name: Literal["list_monitoring_alert_history"]
|
|
4588
4956
|
) -> ListMonitoringAlertHistoryPaginator:
|
|
4589
4957
|
"""
|
|
4958
|
+
Create a paginator for an operation.
|
|
4959
|
+
|
|
4590
4960
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4591
4961
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4592
4962
|
"""
|
|
4593
4963
|
|
|
4594
|
-
@overload
|
|
4595
|
-
def get_paginator(
|
|
4964
|
+
@overload # type: ignore[override]
|
|
4965
|
+
def get_paginator( # type: ignore[override]
|
|
4596
4966
|
self, operation_name: Literal["list_monitoring_alerts"]
|
|
4597
4967
|
) -> ListMonitoringAlertsPaginator:
|
|
4598
4968
|
"""
|
|
4969
|
+
Create a paginator for an operation.
|
|
4970
|
+
|
|
4599
4971
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4600
4972
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4601
4973
|
"""
|
|
4602
4974
|
|
|
4603
|
-
@overload
|
|
4604
|
-
def get_paginator(
|
|
4975
|
+
@overload # type: ignore[override]
|
|
4976
|
+
def get_paginator( # type: ignore[override]
|
|
4605
4977
|
self, operation_name: Literal["list_monitoring_executions"]
|
|
4606
4978
|
) -> ListMonitoringExecutionsPaginator:
|
|
4607
4979
|
"""
|
|
4980
|
+
Create a paginator for an operation.
|
|
4981
|
+
|
|
4608
4982
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4609
4983
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4610
4984
|
"""
|
|
4611
4985
|
|
|
4612
|
-
@overload
|
|
4613
|
-
def get_paginator(
|
|
4986
|
+
@overload # type: ignore[override]
|
|
4987
|
+
def get_paginator( # type: ignore[override]
|
|
4614
4988
|
self, operation_name: Literal["list_monitoring_schedules"]
|
|
4615
4989
|
) -> ListMonitoringSchedulesPaginator:
|
|
4616
4990
|
"""
|
|
4991
|
+
Create a paginator for an operation.
|
|
4992
|
+
|
|
4617
4993
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4618
4994
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4619
4995
|
"""
|
|
4620
4996
|
|
|
4621
|
-
@overload
|
|
4622
|
-
def get_paginator(
|
|
4997
|
+
@overload # type: ignore[override]
|
|
4998
|
+
def get_paginator( # type: ignore[override]
|
|
4623
4999
|
self, operation_name: Literal["list_notebook_instance_lifecycle_configs"]
|
|
4624
5000
|
) -> ListNotebookInstanceLifecycleConfigsPaginator:
|
|
4625
5001
|
"""
|
|
5002
|
+
Create a paginator for an operation.
|
|
5003
|
+
|
|
4626
5004
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4627
5005
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4628
5006
|
"""
|
|
4629
5007
|
|
|
4630
|
-
@overload
|
|
4631
|
-
def get_paginator(
|
|
5008
|
+
@overload # type: ignore[override]
|
|
5009
|
+
def get_paginator( # type: ignore[override]
|
|
4632
5010
|
self, operation_name: Literal["list_notebook_instances"]
|
|
4633
5011
|
) -> ListNotebookInstancesPaginator:
|
|
4634
5012
|
"""
|
|
5013
|
+
Create a paginator for an operation.
|
|
5014
|
+
|
|
4635
5015
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4636
5016
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4637
5017
|
"""
|
|
4638
5018
|
|
|
4639
|
-
@overload
|
|
4640
|
-
def get_paginator(
|
|
5019
|
+
@overload # type: ignore[override]
|
|
5020
|
+
def get_paginator( # type: ignore[override]
|
|
4641
5021
|
self, operation_name: Literal["list_optimization_jobs"]
|
|
4642
5022
|
) -> ListOptimizationJobsPaginator:
|
|
4643
5023
|
"""
|
|
5024
|
+
Create a paginator for an operation.
|
|
5025
|
+
|
|
5026
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5027
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5028
|
+
"""
|
|
5029
|
+
|
|
5030
|
+
@overload # type: ignore[override]
|
|
5031
|
+
def get_paginator( # type: ignore[override]
|
|
5032
|
+
self, operation_name: Literal["list_partner_apps"]
|
|
5033
|
+
) -> ListPartnerAppsPaginator:
|
|
5034
|
+
"""
|
|
5035
|
+
Create a paginator for an operation.
|
|
5036
|
+
|
|
4644
5037
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4645
5038
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4646
5039
|
"""
|
|
4647
5040
|
|
|
4648
|
-
@overload
|
|
4649
|
-
def get_paginator(
|
|
5041
|
+
@overload # type: ignore[override]
|
|
5042
|
+
def get_paginator( # type: ignore[override]
|
|
4650
5043
|
self, operation_name: Literal["list_pipeline_execution_steps"]
|
|
4651
5044
|
) -> ListPipelineExecutionStepsPaginator:
|
|
4652
5045
|
"""
|
|
5046
|
+
Create a paginator for an operation.
|
|
5047
|
+
|
|
4653
5048
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4654
5049
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4655
5050
|
"""
|
|
4656
5051
|
|
|
4657
|
-
@overload
|
|
4658
|
-
def get_paginator(
|
|
5052
|
+
@overload # type: ignore[override]
|
|
5053
|
+
def get_paginator( # type: ignore[override]
|
|
4659
5054
|
self, operation_name: Literal["list_pipeline_executions"]
|
|
4660
5055
|
) -> ListPipelineExecutionsPaginator:
|
|
4661
5056
|
"""
|
|
5057
|
+
Create a paginator for an operation.
|
|
5058
|
+
|
|
4662
5059
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4663
5060
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4664
5061
|
"""
|
|
4665
5062
|
|
|
4666
|
-
@overload
|
|
4667
|
-
def get_paginator(
|
|
5063
|
+
@overload # type: ignore[override]
|
|
5064
|
+
def get_paginator( # type: ignore[override]
|
|
4668
5065
|
self, operation_name: Literal["list_pipeline_parameters_for_execution"]
|
|
4669
5066
|
) -> ListPipelineParametersForExecutionPaginator:
|
|
4670
5067
|
"""
|
|
5068
|
+
Create a paginator for an operation.
|
|
5069
|
+
|
|
4671
5070
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4672
5071
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4673
5072
|
"""
|
|
4674
5073
|
|
|
4675
|
-
@overload
|
|
4676
|
-
def get_paginator(
|
|
5074
|
+
@overload # type: ignore[override]
|
|
5075
|
+
def get_paginator( # type: ignore[override]
|
|
5076
|
+
self, operation_name: Literal["list_pipelines"]
|
|
5077
|
+
) -> ListPipelinesPaginator:
|
|
4677
5078
|
"""
|
|
5079
|
+
Create a paginator for an operation.
|
|
5080
|
+
|
|
4678
5081
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4679
5082
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4680
5083
|
"""
|
|
4681
5084
|
|
|
4682
|
-
@overload
|
|
4683
|
-
def get_paginator(
|
|
5085
|
+
@overload # type: ignore[override]
|
|
5086
|
+
def get_paginator( # type: ignore[override]
|
|
4684
5087
|
self, operation_name: Literal["list_processing_jobs"]
|
|
4685
5088
|
) -> ListProcessingJobsPaginator:
|
|
4686
5089
|
"""
|
|
5090
|
+
Create a paginator for an operation.
|
|
5091
|
+
|
|
4687
5092
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4688
5093
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4689
5094
|
"""
|
|
4690
5095
|
|
|
4691
|
-
@overload
|
|
4692
|
-
def get_paginator(
|
|
5096
|
+
@overload # type: ignore[override]
|
|
5097
|
+
def get_paginator( # type: ignore[override]
|
|
4693
5098
|
self, operation_name: Literal["list_resource_catalogs"]
|
|
4694
5099
|
) -> ListResourceCatalogsPaginator:
|
|
4695
5100
|
"""
|
|
5101
|
+
Create a paginator for an operation.
|
|
5102
|
+
|
|
4696
5103
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4697
5104
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4698
5105
|
"""
|
|
4699
5106
|
|
|
4700
|
-
@overload
|
|
4701
|
-
def get_paginator(
|
|
5107
|
+
@overload # type: ignore[override]
|
|
5108
|
+
def get_paginator( # type: ignore[override]
|
|
5109
|
+
self, operation_name: Literal["list_spaces"]
|
|
5110
|
+
) -> ListSpacesPaginator:
|
|
4702
5111
|
"""
|
|
5112
|
+
Create a paginator for an operation.
|
|
5113
|
+
|
|
4703
5114
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4704
5115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4705
5116
|
"""
|
|
4706
5117
|
|
|
4707
|
-
@overload
|
|
4708
|
-
def get_paginator(
|
|
5118
|
+
@overload # type: ignore[override]
|
|
5119
|
+
def get_paginator( # type: ignore[override]
|
|
4709
5120
|
self, operation_name: Literal["list_stage_devices"]
|
|
4710
5121
|
) -> ListStageDevicesPaginator:
|
|
4711
5122
|
"""
|
|
5123
|
+
Create a paginator for an operation.
|
|
5124
|
+
|
|
4712
5125
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4713
5126
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4714
5127
|
"""
|
|
4715
5128
|
|
|
4716
|
-
@overload
|
|
4717
|
-
def get_paginator(
|
|
5129
|
+
@overload # type: ignore[override]
|
|
5130
|
+
def get_paginator( # type: ignore[override]
|
|
4718
5131
|
self, operation_name: Literal["list_studio_lifecycle_configs"]
|
|
4719
5132
|
) -> ListStudioLifecycleConfigsPaginator:
|
|
4720
5133
|
"""
|
|
5134
|
+
Create a paginator for an operation.
|
|
5135
|
+
|
|
4721
5136
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4722
5137
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4723
5138
|
"""
|
|
4724
5139
|
|
|
4725
|
-
@overload
|
|
4726
|
-
def get_paginator(
|
|
5140
|
+
@overload # type: ignore[override]
|
|
5141
|
+
def get_paginator( # type: ignore[override]
|
|
4727
5142
|
self, operation_name: Literal["list_subscribed_workteams"]
|
|
4728
5143
|
) -> ListSubscribedWorkteamsPaginator:
|
|
4729
5144
|
"""
|
|
5145
|
+
Create a paginator for an operation.
|
|
5146
|
+
|
|
4730
5147
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4731
5148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4732
5149
|
"""
|
|
4733
5150
|
|
|
4734
|
-
@overload
|
|
4735
|
-
def get_paginator(
|
|
5151
|
+
@overload # type: ignore[override]
|
|
5152
|
+
def get_paginator( # type: ignore[override]
|
|
5153
|
+
self, operation_name: Literal["list_tags"]
|
|
5154
|
+
) -> ListTagsPaginator:
|
|
4736
5155
|
"""
|
|
5156
|
+
Create a paginator for an operation.
|
|
5157
|
+
|
|
4737
5158
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4738
5159
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4739
5160
|
"""
|
|
4740
5161
|
|
|
4741
|
-
@overload
|
|
4742
|
-
def get_paginator(
|
|
5162
|
+
@overload # type: ignore[override]
|
|
5163
|
+
def get_paginator( # type: ignore[override]
|
|
4743
5164
|
self, operation_name: Literal["list_training_jobs_for_hyper_parameter_tuning_job"]
|
|
4744
5165
|
) -> ListTrainingJobsForHyperParameterTuningJobPaginator:
|
|
4745
5166
|
"""
|
|
5167
|
+
Create a paginator for an operation.
|
|
5168
|
+
|
|
4746
5169
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4747
5170
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4748
5171
|
"""
|
|
4749
5172
|
|
|
4750
|
-
@overload
|
|
4751
|
-
def get_paginator(
|
|
5173
|
+
@overload # type: ignore[override]
|
|
5174
|
+
def get_paginator( # type: ignore[override]
|
|
4752
5175
|
self, operation_name: Literal["list_training_jobs"]
|
|
4753
5176
|
) -> ListTrainingJobsPaginator:
|
|
4754
5177
|
"""
|
|
5178
|
+
Create a paginator for an operation.
|
|
5179
|
+
|
|
4755
5180
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4756
5181
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4757
5182
|
"""
|
|
4758
5183
|
|
|
4759
|
-
@overload
|
|
4760
|
-
def get_paginator(
|
|
5184
|
+
@overload # type: ignore[override]
|
|
5185
|
+
def get_paginator( # type: ignore[override]
|
|
5186
|
+
self, operation_name: Literal["list_training_plans"]
|
|
5187
|
+
) -> ListTrainingPlansPaginator:
|
|
5188
|
+
"""
|
|
5189
|
+
Create a paginator for an operation.
|
|
5190
|
+
|
|
5191
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5192
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5193
|
+
"""
|
|
5194
|
+
|
|
5195
|
+
@overload # type: ignore[override]
|
|
5196
|
+
def get_paginator( # type: ignore[override]
|
|
4761
5197
|
self, operation_name: Literal["list_transform_jobs"]
|
|
4762
5198
|
) -> ListTransformJobsPaginator:
|
|
4763
5199
|
"""
|
|
5200
|
+
Create a paginator for an operation.
|
|
5201
|
+
|
|
4764
5202
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4765
5203
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4766
5204
|
"""
|
|
4767
5205
|
|
|
4768
|
-
@overload
|
|
4769
|
-
def get_paginator(
|
|
5206
|
+
@overload # type: ignore[override]
|
|
5207
|
+
def get_paginator( # type: ignore[override]
|
|
4770
5208
|
self, operation_name: Literal["list_trial_components"]
|
|
4771
5209
|
) -> ListTrialComponentsPaginator:
|
|
4772
5210
|
"""
|
|
5211
|
+
Create a paginator for an operation.
|
|
5212
|
+
|
|
4773
5213
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4774
5214
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4775
5215
|
"""
|
|
4776
5216
|
|
|
4777
|
-
@overload
|
|
4778
|
-
def get_paginator(
|
|
5217
|
+
@overload # type: ignore[override]
|
|
5218
|
+
def get_paginator( # type: ignore[override]
|
|
5219
|
+
self, operation_name: Literal["list_trials"]
|
|
5220
|
+
) -> ListTrialsPaginator:
|
|
4779
5221
|
"""
|
|
5222
|
+
Create a paginator for an operation.
|
|
5223
|
+
|
|
4780
5224
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4781
5225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4782
5226
|
"""
|
|
4783
5227
|
|
|
4784
|
-
@overload
|
|
4785
|
-
def get_paginator(
|
|
5228
|
+
@overload # type: ignore[override]
|
|
5229
|
+
def get_paginator( # type: ignore[override]
|
|
4786
5230
|
self, operation_name: Literal["list_user_profiles"]
|
|
4787
5231
|
) -> ListUserProfilesPaginator:
|
|
4788
5232
|
"""
|
|
5233
|
+
Create a paginator for an operation.
|
|
5234
|
+
|
|
4789
5235
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4790
5236
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4791
5237
|
"""
|
|
4792
5238
|
|
|
4793
|
-
@overload
|
|
4794
|
-
def get_paginator(
|
|
5239
|
+
@overload # type: ignore[override]
|
|
5240
|
+
def get_paginator( # type: ignore[override]
|
|
5241
|
+
self, operation_name: Literal["list_workforces"]
|
|
5242
|
+
) -> ListWorkforcesPaginator:
|
|
4795
5243
|
"""
|
|
5244
|
+
Create a paginator for an operation.
|
|
5245
|
+
|
|
4796
5246
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4797
5247
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4798
5248
|
"""
|
|
4799
5249
|
|
|
4800
|
-
@overload
|
|
4801
|
-
def get_paginator(
|
|
5250
|
+
@overload # type: ignore[override]
|
|
5251
|
+
def get_paginator( # type: ignore[override]
|
|
5252
|
+
self, operation_name: Literal["list_workteams"]
|
|
5253
|
+
) -> ListWorkteamsPaginator:
|
|
4802
5254
|
"""
|
|
5255
|
+
Create a paginator for an operation.
|
|
5256
|
+
|
|
4803
5257
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4804
5258
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4805
5259
|
"""
|
|
4806
5260
|
|
|
4807
|
-
@overload
|
|
4808
|
-
def get_paginator(
|
|
5261
|
+
@overload # type: ignore[override]
|
|
5262
|
+
def get_paginator( # type: ignore[override]
|
|
5263
|
+
self, operation_name: Literal["search"]
|
|
5264
|
+
) -> SearchPaginator:
|
|
4809
5265
|
"""
|
|
5266
|
+
Create a paginator for an operation.
|
|
5267
|
+
|
|
4810
5268
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4811
5269
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4812
5270
|
"""
|
|
4813
5271
|
|
|
4814
|
-
@overload
|
|
4815
|
-
def get_waiter(
|
|
5272
|
+
@overload # type: ignore[override]
|
|
5273
|
+
def get_waiter( # type: ignore[override]
|
|
5274
|
+
self, waiter_name: Literal["endpoint_deleted"]
|
|
5275
|
+
) -> EndpointDeletedWaiter:
|
|
4816
5276
|
"""
|
|
5277
|
+
Returns an object that can wait for some condition.
|
|
5278
|
+
|
|
4817
5279
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4818
5280
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4819
5281
|
"""
|
|
4820
5282
|
|
|
4821
|
-
@overload
|
|
4822
|
-
def get_waiter(
|
|
5283
|
+
@overload # type: ignore[override]
|
|
5284
|
+
def get_waiter( # type: ignore[override]
|
|
5285
|
+
self, waiter_name: Literal["endpoint_in_service"]
|
|
5286
|
+
) -> EndpointInServiceWaiter:
|
|
4823
5287
|
"""
|
|
5288
|
+
Returns an object that can wait for some condition.
|
|
5289
|
+
|
|
4824
5290
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4825
5291
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4826
5292
|
"""
|
|
4827
5293
|
|
|
4828
|
-
@overload
|
|
4829
|
-
def get_waiter(
|
|
5294
|
+
@overload # type: ignore[override]
|
|
5295
|
+
def get_waiter( # type: ignore[override]
|
|
5296
|
+
self, waiter_name: Literal["image_created"]
|
|
5297
|
+
) -> ImageCreatedWaiter:
|
|
4830
5298
|
"""
|
|
5299
|
+
Returns an object that can wait for some condition.
|
|
5300
|
+
|
|
4831
5301
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4832
5302
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4833
5303
|
"""
|
|
4834
5304
|
|
|
4835
|
-
@overload
|
|
4836
|
-
def get_waiter(
|
|
5305
|
+
@overload # type: ignore[override]
|
|
5306
|
+
def get_waiter( # type: ignore[override]
|
|
5307
|
+
self, waiter_name: Literal["image_deleted"]
|
|
5308
|
+
) -> ImageDeletedWaiter:
|
|
4837
5309
|
"""
|
|
5310
|
+
Returns an object that can wait for some condition.
|
|
5311
|
+
|
|
4838
5312
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4839
5313
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4840
5314
|
"""
|
|
4841
5315
|
|
|
4842
|
-
@overload
|
|
4843
|
-
def get_waiter(
|
|
5316
|
+
@overload # type: ignore[override]
|
|
5317
|
+
def get_waiter( # type: ignore[override]
|
|
5318
|
+
self, waiter_name: Literal["image_updated"]
|
|
5319
|
+
) -> ImageUpdatedWaiter:
|
|
4844
5320
|
"""
|
|
5321
|
+
Returns an object that can wait for some condition.
|
|
5322
|
+
|
|
4845
5323
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4846
5324
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4847
5325
|
"""
|
|
4848
5326
|
|
|
4849
|
-
@overload
|
|
4850
|
-
def get_waiter(
|
|
5327
|
+
@overload # type: ignore[override]
|
|
5328
|
+
def get_waiter( # type: ignore[override]
|
|
4851
5329
|
self, waiter_name: Literal["image_version_created"]
|
|
4852
5330
|
) -> ImageVersionCreatedWaiter:
|
|
4853
5331
|
"""
|
|
5332
|
+
Returns an object that can wait for some condition.
|
|
5333
|
+
|
|
4854
5334
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4855
5335
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4856
5336
|
"""
|
|
4857
5337
|
|
|
4858
|
-
@overload
|
|
4859
|
-
def get_waiter(
|
|
5338
|
+
@overload # type: ignore[override]
|
|
5339
|
+
def get_waiter( # type: ignore[override]
|
|
4860
5340
|
self, waiter_name: Literal["image_version_deleted"]
|
|
4861
5341
|
) -> ImageVersionDeletedWaiter:
|
|
4862
5342
|
"""
|
|
5343
|
+
Returns an object that can wait for some condition.
|
|
5344
|
+
|
|
4863
5345
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4864
5346
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4865
5347
|
"""
|
|
4866
5348
|
|
|
4867
|
-
@overload
|
|
4868
|
-
def get_waiter(
|
|
5349
|
+
@overload # type: ignore[override]
|
|
5350
|
+
def get_waiter( # type: ignore[override]
|
|
4869
5351
|
self, waiter_name: Literal["notebook_instance_deleted"]
|
|
4870
5352
|
) -> NotebookInstanceDeletedWaiter:
|
|
4871
5353
|
"""
|
|
5354
|
+
Returns an object that can wait for some condition.
|
|
5355
|
+
|
|
4872
5356
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4873
5357
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4874
5358
|
"""
|
|
4875
5359
|
|
|
4876
|
-
@overload
|
|
4877
|
-
def get_waiter(
|
|
5360
|
+
@overload # type: ignore[override]
|
|
5361
|
+
def get_waiter( # type: ignore[override]
|
|
4878
5362
|
self, waiter_name: Literal["notebook_instance_in_service"]
|
|
4879
5363
|
) -> NotebookInstanceInServiceWaiter:
|
|
4880
5364
|
"""
|
|
5365
|
+
Returns an object that can wait for some condition.
|
|
5366
|
+
|
|
4881
5367
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4882
5368
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4883
5369
|
"""
|
|
4884
5370
|
|
|
4885
|
-
@overload
|
|
4886
|
-
def get_waiter(
|
|
5371
|
+
@overload # type: ignore[override]
|
|
5372
|
+
def get_waiter( # type: ignore[override]
|
|
4887
5373
|
self, waiter_name: Literal["notebook_instance_stopped"]
|
|
4888
5374
|
) -> NotebookInstanceStoppedWaiter:
|
|
4889
5375
|
"""
|
|
5376
|
+
Returns an object that can wait for some condition.
|
|
5377
|
+
|
|
4890
5378
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4891
5379
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4892
5380
|
"""
|
|
4893
5381
|
|
|
4894
|
-
@overload
|
|
4895
|
-
def get_waiter(
|
|
5382
|
+
@overload # type: ignore[override]
|
|
5383
|
+
def get_waiter( # type: ignore[override]
|
|
4896
5384
|
self, waiter_name: Literal["processing_job_completed_or_stopped"]
|
|
4897
5385
|
) -> ProcessingJobCompletedOrStoppedWaiter:
|
|
4898
5386
|
"""
|
|
5387
|
+
Returns an object that can wait for some condition.
|
|
5388
|
+
|
|
4899
5389
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4900
5390
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4901
5391
|
"""
|
|
4902
5392
|
|
|
4903
|
-
@overload
|
|
4904
|
-
def get_waiter(
|
|
5393
|
+
@overload # type: ignore[override]
|
|
5394
|
+
def get_waiter( # type: ignore[override]
|
|
4905
5395
|
self, waiter_name: Literal["training_job_completed_or_stopped"]
|
|
4906
5396
|
) -> TrainingJobCompletedOrStoppedWaiter:
|
|
4907
5397
|
"""
|
|
5398
|
+
Returns an object that can wait for some condition.
|
|
5399
|
+
|
|
4908
5400
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4909
5401
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4910
5402
|
"""
|
|
4911
5403
|
|
|
4912
|
-
@overload
|
|
4913
|
-
def get_waiter(
|
|
5404
|
+
@overload # type: ignore[override]
|
|
5405
|
+
def get_waiter( # type: ignore[override]
|
|
4914
5406
|
self, waiter_name: Literal["transform_job_completed_or_stopped"]
|
|
4915
5407
|
) -> TransformJobCompletedOrStoppedWaiter:
|
|
4916
5408
|
"""
|
|
5409
|
+
Returns an object that can wait for some condition.
|
|
5410
|
+
|
|
4917
5411
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4918
5412
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4919
5413
|
"""
|