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.py
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,
|
|
@@ -726,20 +772,12 @@ else:
|
|
|
726
772
|
__all__ = ("SageMakerClient",)
|
|
727
773
|
|
|
728
774
|
|
|
729
|
-
class
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
class Exceptions:
|
|
738
|
-
ClientError: Type[BotocoreClientError]
|
|
739
|
-
ConflictException: Type[BotocoreClientError]
|
|
740
|
-
ResourceInUse: Type[BotocoreClientError]
|
|
741
|
-
ResourceLimitExceeded: Type[BotocoreClientError]
|
|
742
|
-
ResourceNotFound: Type[BotocoreClientError]
|
|
775
|
+
class Exceptions(BaseClientExceptions):
|
|
776
|
+
ClientError: type[BotocoreClientError]
|
|
777
|
+
ConflictException: type[BotocoreClientError]
|
|
778
|
+
ResourceInUse: type[BotocoreClientError]
|
|
779
|
+
ResourceLimitExceeded: type[BotocoreClientError]
|
|
780
|
+
ResourceNotFound: type[BotocoreClientError]
|
|
743
781
|
|
|
744
782
|
|
|
745
783
|
class SageMakerClient(BaseClient):
|
|
@@ -759,11 +797,29 @@ class SageMakerClient(BaseClient):
|
|
|
759
797
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#exceptions)
|
|
760
798
|
"""
|
|
761
799
|
|
|
800
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
801
|
+
"""
|
|
802
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
803
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
804
|
+
"""
|
|
805
|
+
|
|
806
|
+
def generate_presigned_url(
|
|
807
|
+
self,
|
|
808
|
+
ClientMethod: str,
|
|
809
|
+
Params: Mapping[str, Any] = ...,
|
|
810
|
+
ExpiresIn: int = 3600,
|
|
811
|
+
HttpMethod: str = ...,
|
|
812
|
+
) -> str:
|
|
813
|
+
"""
|
|
814
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
815
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
816
|
+
"""
|
|
817
|
+
|
|
762
818
|
def add_association(
|
|
763
819
|
self, **kwargs: Unpack[AddAssociationRequestRequestTypeDef]
|
|
764
820
|
) -> AddAssociationResponseTypeDef:
|
|
765
821
|
"""
|
|
766
|
-
Creates an
|
|
822
|
+
Creates an <i>association</i> between the source and the destination.
|
|
767
823
|
|
|
768
824
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/add_association.html)
|
|
769
825
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#add_association)
|
|
@@ -801,35 +857,17 @@ class SageMakerClient(BaseClient):
|
|
|
801
857
|
self, **kwargs: Unpack[BatchDescribeModelPackageInputRequestTypeDef]
|
|
802
858
|
) -> BatchDescribeModelPackageOutputTypeDef:
|
|
803
859
|
"""
|
|
804
|
-
This action batch describes a list of versioned model packages
|
|
805
|
-
API
|
|
806
|
-
Documentation](https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackage).
|
|
860
|
+
This action batch describes a list of versioned model packages.
|
|
807
861
|
|
|
808
862
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_describe_model_package.html)
|
|
809
863
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_describe_model_package)
|
|
810
864
|
"""
|
|
811
865
|
|
|
812
|
-
def can_paginate(self, operation_name: str) -> bool:
|
|
813
|
-
"""
|
|
814
|
-
Check if an operation can be paginated.
|
|
815
|
-
|
|
816
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
817
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
818
|
-
"""
|
|
819
|
-
|
|
820
|
-
def close(self) -> None:
|
|
821
|
-
"""
|
|
822
|
-
Closes underlying endpoint connections.
|
|
823
|
-
|
|
824
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/close.html)
|
|
825
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#close)
|
|
826
|
-
"""
|
|
827
|
-
|
|
828
866
|
def create_action(
|
|
829
867
|
self, **kwargs: Unpack[CreateActionRequestRequestTypeDef]
|
|
830
868
|
) -> CreateActionResponseTypeDef:
|
|
831
869
|
"""
|
|
832
|
-
Creates an
|
|
870
|
+
Creates an <i>action</i>.
|
|
833
871
|
|
|
834
872
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_action.html)
|
|
835
873
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_action)
|
|
@@ -860,7 +898,7 @@ class SageMakerClient(BaseClient):
|
|
|
860
898
|
self, **kwargs: Unpack[CreateAppImageConfigRequestRequestTypeDef]
|
|
861
899
|
) -> CreateAppImageConfigResponseTypeDef:
|
|
862
900
|
"""
|
|
863
|
-
Creates a configuration for running a SageMaker image as a KernelGateway app.
|
|
901
|
+
Creates a configuration for running a SageMaker AI image as a KernelGateway app.
|
|
864
902
|
|
|
865
903
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_app_image_config.html)
|
|
866
904
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_app_image_config)
|
|
@@ -870,7 +908,7 @@ class SageMakerClient(BaseClient):
|
|
|
870
908
|
self, **kwargs: Unpack[CreateArtifactRequestRequestTypeDef]
|
|
871
909
|
) -> CreateArtifactResponseTypeDef:
|
|
872
910
|
"""
|
|
873
|
-
Creates an
|
|
911
|
+
Creates an <i>artifact</i>.
|
|
874
912
|
|
|
875
913
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_artifact.html)
|
|
876
914
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_artifact)
|
|
@@ -907,11 +945,21 @@ class SageMakerClient(BaseClient):
|
|
|
907
945
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster)
|
|
908
946
|
"""
|
|
909
947
|
|
|
948
|
+
def create_cluster_scheduler_config(
|
|
949
|
+
self, **kwargs: Unpack[CreateClusterSchedulerConfigRequestRequestTypeDef]
|
|
950
|
+
) -> CreateClusterSchedulerConfigResponseTypeDef:
|
|
951
|
+
"""
|
|
952
|
+
Create cluster policy configuration.
|
|
953
|
+
|
|
954
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_cluster_scheduler_config.html)
|
|
955
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster_scheduler_config)
|
|
956
|
+
"""
|
|
957
|
+
|
|
910
958
|
def create_code_repository(
|
|
911
959
|
self, **kwargs: Unpack[CreateCodeRepositoryInputRequestTypeDef]
|
|
912
960
|
) -> CreateCodeRepositoryOutputTypeDef:
|
|
913
961
|
"""
|
|
914
|
-
Creates a Git repository as a resource in your SageMaker account.
|
|
962
|
+
Creates a Git repository as a resource in your SageMaker AI account.
|
|
915
963
|
|
|
916
964
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_code_repository.html)
|
|
917
965
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_code_repository)
|
|
@@ -927,11 +975,21 @@ class SageMakerClient(BaseClient):
|
|
|
927
975
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compilation_job)
|
|
928
976
|
"""
|
|
929
977
|
|
|
978
|
+
def create_compute_quota(
|
|
979
|
+
self, **kwargs: Unpack[CreateComputeQuotaRequestRequestTypeDef]
|
|
980
|
+
) -> CreateComputeQuotaResponseTypeDef:
|
|
981
|
+
"""
|
|
982
|
+
Create compute allocation definition.
|
|
983
|
+
|
|
984
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_compute_quota.html)
|
|
985
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compute_quota)
|
|
986
|
+
"""
|
|
987
|
+
|
|
930
988
|
def create_context(
|
|
931
989
|
self, **kwargs: Unpack[CreateContextRequestRequestTypeDef]
|
|
932
990
|
) -> CreateContextResponseTypeDef:
|
|
933
991
|
"""
|
|
934
|
-
Creates a
|
|
992
|
+
Creates a <i>context</i>.
|
|
935
993
|
|
|
936
994
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_context.html)
|
|
937
995
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_context)
|
|
@@ -961,7 +1019,7 @@ class SageMakerClient(BaseClient):
|
|
|
961
1019
|
self, **kwargs: Unpack[CreateDomainRequestRequestTypeDef]
|
|
962
1020
|
) -> CreateDomainResponseTypeDef:
|
|
963
1021
|
"""
|
|
964
|
-
Creates a
|
|
1022
|
+
Creates a <code>Domain</code>.
|
|
965
1023
|
|
|
966
1024
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_domain.html)
|
|
967
1025
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_domain)
|
|
@@ -1022,7 +1080,7 @@ class SageMakerClient(BaseClient):
|
|
|
1022
1080
|
self, **kwargs: Unpack[CreateExperimentRequestRequestTypeDef]
|
|
1023
1081
|
) -> CreateExperimentResponseTypeDef:
|
|
1024
1082
|
"""
|
|
1025
|
-
Creates a SageMaker
|
|
1083
|
+
Creates a SageMaker <i>experiment</i>.
|
|
1026
1084
|
|
|
1027
1085
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_experiment.html)
|
|
1028
1086
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_experiment)
|
|
@@ -1032,7 +1090,7 @@ class SageMakerClient(BaseClient):
|
|
|
1032
1090
|
self, **kwargs: Unpack[CreateFeatureGroupRequestRequestTypeDef]
|
|
1033
1091
|
) -> CreateFeatureGroupResponseTypeDef:
|
|
1034
1092
|
"""
|
|
1035
|
-
Create a new
|
|
1093
|
+
Create a new <code>FeatureGroup</code>.
|
|
1036
1094
|
|
|
1037
1095
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_feature_group.html)
|
|
1038
1096
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_feature_group)
|
|
@@ -1093,7 +1151,7 @@ class SageMakerClient(BaseClient):
|
|
|
1093
1151
|
self, **kwargs: Unpack[CreateImageRequestRequestTypeDef]
|
|
1094
1152
|
) -> CreateImageResponseTypeDef:
|
|
1095
1153
|
"""
|
|
1096
|
-
Creates a custom SageMaker image.
|
|
1154
|
+
Creates a custom SageMaker AI image.
|
|
1097
1155
|
|
|
1098
1156
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image.html)
|
|
1099
1157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image)
|
|
@@ -1103,7 +1161,7 @@ class SageMakerClient(BaseClient):
|
|
|
1103
1161
|
self, **kwargs: Unpack[CreateImageVersionRequestRequestTypeDef]
|
|
1104
1162
|
) -> CreateImageVersionResponseTypeDef:
|
|
1105
1163
|
"""
|
|
1106
|
-
Creates a version of the SageMaker image specified by
|
|
1164
|
+
Creates a version of the SageMaker AI image specified by <code>ImageName</code>.
|
|
1107
1165
|
|
|
1108
1166
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image_version.html)
|
|
1109
1167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image_version)
|
|
@@ -1113,7 +1171,7 @@ class SageMakerClient(BaseClient):
|
|
|
1113
1171
|
self, **kwargs: Unpack[CreateInferenceComponentInputRequestTypeDef]
|
|
1114
1172
|
) -> CreateInferenceComponentOutputTypeDef:
|
|
1115
1173
|
"""
|
|
1116
|
-
Creates an inference component, which is a SageMaker hosting object that you
|
|
1174
|
+
Creates an inference component, which is a SageMaker AI hosting object that you
|
|
1117
1175
|
can use to deploy a model to an endpoint.
|
|
1118
1176
|
|
|
1119
1177
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_inference_component.html)
|
|
@@ -1248,8 +1306,8 @@ class SageMakerClient(BaseClient):
|
|
|
1248
1306
|
self, **kwargs: Unpack[CreateMonitoringScheduleRequestRequestTypeDef]
|
|
1249
1307
|
) -> CreateMonitoringScheduleResponseTypeDef:
|
|
1250
1308
|
"""
|
|
1251
|
-
Creates a schedule that regularly starts Amazon SageMaker Processing Jobs to
|
|
1252
|
-
monitor the data captured for an Amazon SageMaker Endpoint.
|
|
1309
|
+
Creates a schedule that regularly starts Amazon SageMaker AI Processing Jobs to
|
|
1310
|
+
monitor the data captured for an Amazon SageMaker AI Endpoint.
|
|
1253
1311
|
|
|
1254
1312
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_monitoring_schedule.html)
|
|
1255
1313
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_monitoring_schedule)
|
|
@@ -1259,7 +1317,7 @@ class SageMakerClient(BaseClient):
|
|
|
1259
1317
|
self, **kwargs: Unpack[CreateNotebookInstanceInputRequestTypeDef]
|
|
1260
1318
|
) -> CreateNotebookInstanceOutputTypeDef:
|
|
1261
1319
|
"""
|
|
1262
|
-
Creates an SageMaker notebook instance.
|
|
1320
|
+
Creates an SageMaker AI notebook instance.
|
|
1263
1321
|
|
|
1264
1322
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_notebook_instance.html)
|
|
1265
1323
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_notebook_instance)
|
|
@@ -1286,6 +1344,26 @@ class SageMakerClient(BaseClient):
|
|
|
1286
1344
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_optimization_job)
|
|
1287
1345
|
"""
|
|
1288
1346
|
|
|
1347
|
+
def create_partner_app(
|
|
1348
|
+
self, **kwargs: Unpack[CreatePartnerAppRequestRequestTypeDef]
|
|
1349
|
+
) -> CreatePartnerAppResponseTypeDef:
|
|
1350
|
+
"""
|
|
1351
|
+
Creates an Amazon SageMaker Partner AI App.
|
|
1352
|
+
|
|
1353
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app.html)
|
|
1354
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app)
|
|
1355
|
+
"""
|
|
1356
|
+
|
|
1357
|
+
def create_partner_app_presigned_url(
|
|
1358
|
+
self, **kwargs: Unpack[CreatePartnerAppPresignedUrlRequestRequestTypeDef]
|
|
1359
|
+
) -> CreatePartnerAppPresignedUrlResponseTypeDef:
|
|
1360
|
+
"""
|
|
1361
|
+
Creates a presigned URL to access an Amazon SageMaker Partner AI App.
|
|
1362
|
+
|
|
1363
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app_presigned_url.html)
|
|
1364
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app_presigned_url)
|
|
1365
|
+
"""
|
|
1366
|
+
|
|
1289
1367
|
def create_pipeline(
|
|
1290
1368
|
self, **kwargs: Unpack[CreatePipelineRequestRequestTypeDef]
|
|
1291
1369
|
) -> CreatePipelineResponseTypeDef:
|
|
@@ -1363,7 +1441,7 @@ class SageMakerClient(BaseClient):
|
|
|
1363
1441
|
self, **kwargs: Unpack[CreateStudioLifecycleConfigRequestRequestTypeDef]
|
|
1364
1442
|
) -> CreateStudioLifecycleConfigResponseTypeDef:
|
|
1365
1443
|
"""
|
|
1366
|
-
Creates a new Amazon SageMaker Studio Lifecycle Configuration.
|
|
1444
|
+
Creates a new Amazon SageMaker AI Studio Lifecycle Configuration.
|
|
1367
1445
|
|
|
1368
1446
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_studio_lifecycle_config.html)
|
|
1369
1447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_studio_lifecycle_config)
|
|
@@ -1379,6 +1457,16 @@ class SageMakerClient(BaseClient):
|
|
|
1379
1457
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_job)
|
|
1380
1458
|
"""
|
|
1381
1459
|
|
|
1460
|
+
def create_training_plan(
|
|
1461
|
+
self, **kwargs: Unpack[CreateTrainingPlanRequestRequestTypeDef]
|
|
1462
|
+
) -> CreateTrainingPlanResponseTypeDef:
|
|
1463
|
+
"""
|
|
1464
|
+
Creates a new training plan in SageMaker to reserve compute capacity.
|
|
1465
|
+
|
|
1466
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_training_plan.html)
|
|
1467
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_plan)
|
|
1468
|
+
"""
|
|
1469
|
+
|
|
1382
1470
|
def create_transform_job(
|
|
1383
1471
|
self, **kwargs: Unpack[CreateTransformJobRequestRequestTypeDef]
|
|
1384
1472
|
) -> CreateTransformJobResponseTypeDef:
|
|
@@ -1393,7 +1481,7 @@ class SageMakerClient(BaseClient):
|
|
|
1393
1481
|
self, **kwargs: Unpack[CreateTrialRequestRequestTypeDef]
|
|
1394
1482
|
) -> CreateTrialResponseTypeDef:
|
|
1395
1483
|
"""
|
|
1396
|
-
Creates an SageMaker
|
|
1484
|
+
Creates an SageMaker <i>trial</i>.
|
|
1397
1485
|
|
|
1398
1486
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial.html)
|
|
1399
1487
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial)
|
|
@@ -1403,7 +1491,8 @@ class SageMakerClient(BaseClient):
|
|
|
1403
1491
|
self, **kwargs: Unpack[CreateTrialComponentRequestRequestTypeDef]
|
|
1404
1492
|
) -> CreateTrialComponentResponseTypeDef:
|
|
1405
1493
|
"""
|
|
1406
|
-
Creates a
|
|
1494
|
+
Creates a <i>trial component</i>, which is a stage of a machine learning
|
|
1495
|
+
<i>trial</i>.
|
|
1407
1496
|
|
|
1408
1497
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial_component.html)
|
|
1409
1498
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial_component)
|
|
@@ -1509,6 +1598,16 @@ class SageMakerClient(BaseClient):
|
|
|
1509
1598
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster)
|
|
1510
1599
|
"""
|
|
1511
1600
|
|
|
1601
|
+
def delete_cluster_scheduler_config(
|
|
1602
|
+
self, **kwargs: Unpack[DeleteClusterSchedulerConfigRequestRequestTypeDef]
|
|
1603
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1604
|
+
"""
|
|
1605
|
+
Deletes the cluster policy of the cluster.
|
|
1606
|
+
|
|
1607
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_cluster_scheduler_config.html)
|
|
1608
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster_scheduler_config)
|
|
1609
|
+
"""
|
|
1610
|
+
|
|
1512
1611
|
def delete_code_repository(
|
|
1513
1612
|
self, **kwargs: Unpack[DeleteCodeRepositoryInputRequestTypeDef]
|
|
1514
1613
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -1529,6 +1628,16 @@ class SageMakerClient(BaseClient):
|
|
|
1529
1628
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compilation_job)
|
|
1530
1629
|
"""
|
|
1531
1630
|
|
|
1631
|
+
def delete_compute_quota(
|
|
1632
|
+
self, **kwargs: Unpack[DeleteComputeQuotaRequestRequestTypeDef]
|
|
1633
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1634
|
+
"""
|
|
1635
|
+
Deletes the compute allocation from the cluster.
|
|
1636
|
+
|
|
1637
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_compute_quota.html)
|
|
1638
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compute_quota)
|
|
1639
|
+
"""
|
|
1640
|
+
|
|
1532
1641
|
def delete_context(
|
|
1533
1642
|
self, **kwargs: Unpack[DeleteContextRequestRequestTypeDef]
|
|
1534
1643
|
) -> DeleteContextResponseTypeDef:
|
|
@@ -1625,8 +1734,8 @@ class SageMakerClient(BaseClient):
|
|
|
1625
1734
|
self, **kwargs: Unpack[DeleteFeatureGroupRequestRequestTypeDef]
|
|
1626
1735
|
) -> EmptyResponseMetadataTypeDef:
|
|
1627
1736
|
"""
|
|
1628
|
-
Delete the
|
|
1629
|
-
the
|
|
1737
|
+
Delete the <code>FeatureGroup</code> and any data that was written to the
|
|
1738
|
+
<code>OnlineStore</code> of the <code>FeatureGroup</code>.
|
|
1630
1739
|
|
|
1631
1740
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_feature_group.html)
|
|
1632
1741
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_feature_group)
|
|
@@ -1634,7 +1743,7 @@ class SageMakerClient(BaseClient):
|
|
|
1634
1743
|
|
|
1635
1744
|
def delete_flow_definition(
|
|
1636
1745
|
self, **kwargs: Unpack[DeleteFlowDefinitionRequestRequestTypeDef]
|
|
1637
|
-
) ->
|
|
1746
|
+
) -> dict[str, Any]:
|
|
1638
1747
|
"""
|
|
1639
1748
|
Deletes the specified flow definition.
|
|
1640
1749
|
|
|
@@ -1674,7 +1783,7 @@ class SageMakerClient(BaseClient):
|
|
|
1674
1783
|
|
|
1675
1784
|
def delete_human_task_ui(
|
|
1676
1785
|
self, **kwargs: Unpack[DeleteHumanTaskUiRequestRequestTypeDef]
|
|
1677
|
-
) ->
|
|
1786
|
+
) -> dict[str, Any]:
|
|
1678
1787
|
"""
|
|
1679
1788
|
Use this operation to delete a human task user interface (worker task template).
|
|
1680
1789
|
|
|
@@ -1692,9 +1801,9 @@ class SageMakerClient(BaseClient):
|
|
|
1692
1801
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hyper_parameter_tuning_job)
|
|
1693
1802
|
"""
|
|
1694
1803
|
|
|
1695
|
-
def delete_image(self, **kwargs: Unpack[DeleteImageRequestRequestTypeDef]) ->
|
|
1804
|
+
def delete_image(self, **kwargs: Unpack[DeleteImageRequestRequestTypeDef]) -> dict[str, Any]:
|
|
1696
1805
|
"""
|
|
1697
|
-
Deletes a SageMaker image and all versions of the image.
|
|
1806
|
+
Deletes a SageMaker AI image and all versions of the image.
|
|
1698
1807
|
|
|
1699
1808
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_image.html)
|
|
1700
1809
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_image)
|
|
@@ -1702,9 +1811,9 @@ class SageMakerClient(BaseClient):
|
|
|
1702
1811
|
|
|
1703
1812
|
def delete_image_version(
|
|
1704
1813
|
self, **kwargs: Unpack[DeleteImageVersionRequestRequestTypeDef]
|
|
1705
|
-
) ->
|
|
1814
|
+
) -> dict[str, Any]:
|
|
1706
1815
|
"""
|
|
1707
|
-
Deletes a version of a SageMaker image.
|
|
1816
|
+
Deletes a version of a SageMaker AI image.
|
|
1708
1817
|
|
|
1709
1818
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_image_version.html)
|
|
1710
1819
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_image_version)
|
|
@@ -1754,7 +1863,7 @@ class SageMakerClient(BaseClient):
|
|
|
1754
1863
|
self, **kwargs: Unpack[DeleteModelBiasJobDefinitionRequestRequestTypeDef]
|
|
1755
1864
|
) -> EmptyResponseMetadataTypeDef:
|
|
1756
1865
|
"""
|
|
1757
|
-
Deletes an Amazon SageMaker model bias job definition.
|
|
1866
|
+
Deletes an Amazon SageMaker AI model bias job definition.
|
|
1758
1867
|
|
|
1759
1868
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_bias_job_definition.html)
|
|
1760
1869
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_bias_job_definition)
|
|
@@ -1774,7 +1883,7 @@ class SageMakerClient(BaseClient):
|
|
|
1774
1883
|
self, **kwargs: Unpack[DeleteModelExplainabilityJobDefinitionRequestRequestTypeDef]
|
|
1775
1884
|
) -> EmptyResponseMetadataTypeDef:
|
|
1776
1885
|
"""
|
|
1777
|
-
Deletes an Amazon SageMaker model explainability job definition.
|
|
1886
|
+
Deletes an Amazon SageMaker AI model explainability job definition.
|
|
1778
1887
|
|
|
1779
1888
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_explainability_job_definition.html)
|
|
1780
1889
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_explainability_job_definition)
|
|
@@ -1834,7 +1943,7 @@ class SageMakerClient(BaseClient):
|
|
|
1834
1943
|
self, **kwargs: Unpack[DeleteNotebookInstanceInputRequestTypeDef]
|
|
1835
1944
|
) -> EmptyResponseMetadataTypeDef:
|
|
1836
1945
|
"""
|
|
1837
|
-
Deletes an SageMaker notebook instance.
|
|
1946
|
+
Deletes an SageMaker AI notebook instance.
|
|
1838
1947
|
|
|
1839
1948
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_notebook_instance.html)
|
|
1840
1949
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_notebook_instance)
|
|
@@ -1860,6 +1969,16 @@ class SageMakerClient(BaseClient):
|
|
|
1860
1969
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_optimization_job)
|
|
1861
1970
|
"""
|
|
1862
1971
|
|
|
1972
|
+
def delete_partner_app(
|
|
1973
|
+
self, **kwargs: Unpack[DeletePartnerAppRequestRequestTypeDef]
|
|
1974
|
+
) -> DeletePartnerAppResponseTypeDef:
|
|
1975
|
+
"""
|
|
1976
|
+
Deletes a SageMaker Partner AI App.
|
|
1977
|
+
|
|
1978
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_partner_app.html)
|
|
1979
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_partner_app)
|
|
1980
|
+
"""
|
|
1981
|
+
|
|
1863
1982
|
def delete_pipeline(
|
|
1864
1983
|
self, **kwargs: Unpack[DeletePipelineRequestRequestTypeDef]
|
|
1865
1984
|
) -> DeletePipelineResponseTypeDef:
|
|
@@ -1894,13 +2013,13 @@ class SageMakerClient(BaseClient):
|
|
|
1894
2013
|
self, **kwargs: Unpack[DeleteStudioLifecycleConfigRequestRequestTypeDef]
|
|
1895
2014
|
) -> EmptyResponseMetadataTypeDef:
|
|
1896
2015
|
"""
|
|
1897
|
-
Deletes the Amazon SageMaker Studio Lifecycle Configuration.
|
|
2016
|
+
Deletes the Amazon SageMaker AI Studio Lifecycle Configuration.
|
|
1898
2017
|
|
|
1899
2018
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_studio_lifecycle_config.html)
|
|
1900
2019
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_studio_lifecycle_config)
|
|
1901
2020
|
"""
|
|
1902
2021
|
|
|
1903
|
-
def delete_tags(self, **kwargs: Unpack[DeleteTagsInputRequestTypeDef]) ->
|
|
2022
|
+
def delete_tags(self, **kwargs: Unpack[DeleteTagsInputRequestTypeDef]) -> dict[str, Any]:
|
|
1904
2023
|
"""
|
|
1905
2024
|
Deletes the specified tags from an SageMaker resource.
|
|
1906
2025
|
|
|
@@ -1940,7 +2059,7 @@ class SageMakerClient(BaseClient):
|
|
|
1940
2059
|
|
|
1941
2060
|
def delete_workforce(
|
|
1942
2061
|
self, **kwargs: Unpack[DeleteWorkforceRequestRequestTypeDef]
|
|
1943
|
-
) ->
|
|
2062
|
+
) -> dict[str, Any]:
|
|
1944
2063
|
"""
|
|
1945
2064
|
Use this operation to delete a workforce.
|
|
1946
2065
|
|
|
@@ -2022,8 +2141,8 @@ class SageMakerClient(BaseClient):
|
|
|
2022
2141
|
self, **kwargs: Unpack[DescribeAutoMLJobRequestRequestTypeDef]
|
|
2023
2142
|
) -> DescribeAutoMLJobResponseTypeDef:
|
|
2024
2143
|
"""
|
|
2025
|
-
Returns information about an AutoML job created by calling
|
|
2026
|
-
|
|
2144
|
+
Returns information about an AutoML job created by calling <a
|
|
2145
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2027
2146
|
|
|
2028
2147
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job.html)
|
|
2029
2148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job)
|
|
@@ -2033,10 +2152,10 @@ class SageMakerClient(BaseClient):
|
|
|
2033
2152
|
self, **kwargs: Unpack[DescribeAutoMLJobV2RequestRequestTypeDef]
|
|
2034
2153
|
) -> DescribeAutoMLJobV2ResponseTypeDef:
|
|
2035
2154
|
"""
|
|
2036
|
-
Returns information about an AutoML job created by calling
|
|
2037
|
-
|
|
2038
|
-
or
|
|
2039
|
-
|
|
2155
|
+
Returns information about an AutoML job created by calling <a
|
|
2156
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>
|
|
2157
|
+
or <a
|
|
2158
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2040
2159
|
|
|
2041
2160
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job_v2.html)
|
|
2042
2161
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job_v2)
|
|
@@ -2056,13 +2175,23 @@ class SageMakerClient(BaseClient):
|
|
|
2056
2175
|
self, **kwargs: Unpack[DescribeClusterNodeRequestRequestTypeDef]
|
|
2057
2176
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
2058
2177
|
"""
|
|
2059
|
-
Retrieves information of a node (also called a
|
|
2060
|
-
SageMaker HyperPod cluster.
|
|
2178
|
+
Retrieves information of a node (also called a <i>instance</i> interchangeably)
|
|
2179
|
+
of a SageMaker HyperPod cluster.
|
|
2061
2180
|
|
|
2062
2181
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_node.html)
|
|
2063
2182
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_node)
|
|
2064
2183
|
"""
|
|
2065
2184
|
|
|
2185
|
+
def describe_cluster_scheduler_config(
|
|
2186
|
+
self, **kwargs: Unpack[DescribeClusterSchedulerConfigRequestRequestTypeDef]
|
|
2187
|
+
) -> DescribeClusterSchedulerConfigResponseTypeDef:
|
|
2188
|
+
"""
|
|
2189
|
+
Description of the cluster policy.
|
|
2190
|
+
|
|
2191
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_scheduler_config.html)
|
|
2192
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_scheduler_config)
|
|
2193
|
+
"""
|
|
2194
|
+
|
|
2066
2195
|
def describe_code_repository(
|
|
2067
2196
|
self, **kwargs: Unpack[DescribeCodeRepositoryInputRequestTypeDef]
|
|
2068
2197
|
) -> DescribeCodeRepositoryOutputTypeDef:
|
|
@@ -2083,6 +2212,16 @@ class SageMakerClient(BaseClient):
|
|
|
2083
2212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compilation_job)
|
|
2084
2213
|
"""
|
|
2085
2214
|
|
|
2215
|
+
def describe_compute_quota(
|
|
2216
|
+
self, **kwargs: Unpack[DescribeComputeQuotaRequestRequestTypeDef]
|
|
2217
|
+
) -> DescribeComputeQuotaResponseTypeDef:
|
|
2218
|
+
"""
|
|
2219
|
+
Description of the compute allocation definition.
|
|
2220
|
+
|
|
2221
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_compute_quota.html)
|
|
2222
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compute_quota)
|
|
2223
|
+
"""
|
|
2224
|
+
|
|
2086
2225
|
def describe_context(
|
|
2087
2226
|
self, **kwargs: Unpack[DescribeContextRequestRequestTypeDef]
|
|
2088
2227
|
) -> DescribeContextResponseTypeDef:
|
|
@@ -2168,7 +2307,7 @@ class SageMakerClient(BaseClient):
|
|
|
2168
2307
|
) -> DescribeEndpointConfigOutputTypeDef:
|
|
2169
2308
|
"""
|
|
2170
2309
|
Returns the description of an endpoint configuration created using the
|
|
2171
|
-
|
|
2310
|
+
<code>CreateEndpointConfig</code> API.
|
|
2172
2311
|
|
|
2173
2312
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_endpoint_config.html)
|
|
2174
2313
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_endpoint_config)
|
|
@@ -2188,7 +2327,7 @@ class SageMakerClient(BaseClient):
|
|
|
2188
2327
|
self, **kwargs: Unpack[DescribeFeatureGroupRequestRequestTypeDef]
|
|
2189
2328
|
) -> DescribeFeatureGroupResponseTypeDef:
|
|
2190
2329
|
"""
|
|
2191
|
-
Use this operation to describe a
|
|
2330
|
+
Use this operation to describe a <code>FeatureGroup</code>.
|
|
2192
2331
|
|
|
2193
2332
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_feature_group.html)
|
|
2194
2333
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_feature_group)
|
|
@@ -2260,7 +2399,7 @@ class SageMakerClient(BaseClient):
|
|
|
2260
2399
|
self, **kwargs: Unpack[DescribeImageRequestRequestTypeDef]
|
|
2261
2400
|
) -> DescribeImageResponseTypeDef:
|
|
2262
2401
|
"""
|
|
2263
|
-
Describes a SageMaker image.
|
|
2402
|
+
Describes a SageMaker AI image.
|
|
2264
2403
|
|
|
2265
2404
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_image.html)
|
|
2266
2405
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_image)
|
|
@@ -2270,7 +2409,7 @@ class SageMakerClient(BaseClient):
|
|
|
2270
2409
|
self, **kwargs: Unpack[DescribeImageVersionRequestRequestTypeDef]
|
|
2271
2410
|
) -> DescribeImageVersionResponseTypeDef:
|
|
2272
2411
|
"""
|
|
2273
|
-
Describes a version of a SageMaker image.
|
|
2412
|
+
Describes a version of a SageMaker AI image.
|
|
2274
2413
|
|
|
2275
2414
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_image_version.html)
|
|
2276
2415
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_image_version)
|
|
@@ -2340,7 +2479,7 @@ class SageMakerClient(BaseClient):
|
|
|
2340
2479
|
self, **kwargs: Unpack[DescribeModelInputRequestTypeDef]
|
|
2341
2480
|
) -> DescribeModelOutputTypeDef:
|
|
2342
2481
|
"""
|
|
2343
|
-
Describes a model that you created using the
|
|
2482
|
+
Describes a model that you created using the <code>CreateModel</code> API.
|
|
2344
2483
|
|
|
2345
2484
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model.html)
|
|
2346
2485
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model)
|
|
@@ -2458,6 +2597,16 @@ class SageMakerClient(BaseClient):
|
|
|
2458
2597
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_optimization_job)
|
|
2459
2598
|
"""
|
|
2460
2599
|
|
|
2600
|
+
def describe_partner_app(
|
|
2601
|
+
self, **kwargs: Unpack[DescribePartnerAppRequestRequestTypeDef]
|
|
2602
|
+
) -> DescribePartnerAppResponseTypeDef:
|
|
2603
|
+
"""
|
|
2604
|
+
Gets information about a SageMaker Partner AI App.
|
|
2605
|
+
|
|
2606
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_partner_app.html)
|
|
2607
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_partner_app)
|
|
2608
|
+
"""
|
|
2609
|
+
|
|
2461
2610
|
def describe_pipeline(
|
|
2462
2611
|
self, **kwargs: Unpack[DescribePipelineRequestRequestTypeDef]
|
|
2463
2612
|
) -> DescribePipelineResponseTypeDef:
|
|
@@ -2522,7 +2671,7 @@ class SageMakerClient(BaseClient):
|
|
|
2522
2671
|
self, **kwargs: Unpack[DescribeStudioLifecycleConfigRequestRequestTypeDef]
|
|
2523
2672
|
) -> DescribeStudioLifecycleConfigResponseTypeDef:
|
|
2524
2673
|
"""
|
|
2525
|
-
Describes the Amazon SageMaker Studio Lifecycle Configuration.
|
|
2674
|
+
Describes the Amazon SageMaker AI Studio Lifecycle Configuration.
|
|
2526
2675
|
|
|
2527
2676
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_studio_lifecycle_config.html)
|
|
2528
2677
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_studio_lifecycle_config)
|
|
@@ -2548,6 +2697,16 @@ class SageMakerClient(BaseClient):
|
|
|
2548
2697
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_job)
|
|
2549
2698
|
"""
|
|
2550
2699
|
|
|
2700
|
+
def describe_training_plan(
|
|
2701
|
+
self, **kwargs: Unpack[DescribeTrainingPlanRequestRequestTypeDef]
|
|
2702
|
+
) -> DescribeTrainingPlanResponseTypeDef:
|
|
2703
|
+
"""
|
|
2704
|
+
Retrieves detailed information about a specific training plan.
|
|
2705
|
+
|
|
2706
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_training_plan.html)
|
|
2707
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_plan)
|
|
2708
|
+
"""
|
|
2709
|
+
|
|
2551
2710
|
def describe_transform_job(
|
|
2552
2711
|
self, **kwargs: Unpack[DescribeTransformJobRequestRequestTypeDef]
|
|
2553
2712
|
) -> DescribeTransformJobResponseTypeDef:
|
|
@@ -2593,8 +2752,8 @@ class SageMakerClient(BaseClient):
|
|
|
2593
2752
|
) -> DescribeWorkforceResponseTypeDef:
|
|
2594
2753
|
"""
|
|
2595
2754
|
Lists private workforce information, including workforce name, Amazon Resource
|
|
2596
|
-
Name (ARN), and, if applicable, allowed IP address ranges (
|
|
2597
|
-
|
|
2755
|
+
Name (ARN), and, if applicable, allowed IP address ranges (<a
|
|
2756
|
+
href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>).
|
|
2598
2757
|
|
|
2599
2758
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_workforce.html)
|
|
2600
2759
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workforce)
|
|
@@ -2610,7 +2769,7 @@ class SageMakerClient(BaseClient):
|
|
|
2610
2769
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2611
2770
|
"""
|
|
2612
2771
|
|
|
2613
|
-
def disable_sagemaker_servicecatalog_portfolio(self) ->
|
|
2772
|
+
def disable_sagemaker_servicecatalog_portfolio(self) -> dict[str, Any]:
|
|
2614
2773
|
"""
|
|
2615
2774
|
Disables using Service Catalog in SageMaker.
|
|
2616
2775
|
|
|
@@ -2628,7 +2787,7 @@ class SageMakerClient(BaseClient):
|
|
|
2628
2787
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#disassociate_trial_component)
|
|
2629
2788
|
"""
|
|
2630
2789
|
|
|
2631
|
-
def enable_sagemaker_servicecatalog_portfolio(self) ->
|
|
2790
|
+
def enable_sagemaker_servicecatalog_portfolio(self) -> dict[str, Any]:
|
|
2632
2791
|
"""
|
|
2633
2792
|
Enables using Service Catalog in SageMaker.
|
|
2634
2793
|
|
|
@@ -2636,20 +2795,6 @@ class SageMakerClient(BaseClient):
|
|
|
2636
2795
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#enable_sagemaker_servicecatalog_portfolio)
|
|
2637
2796
|
"""
|
|
2638
2797
|
|
|
2639
|
-
def generate_presigned_url(
|
|
2640
|
-
self,
|
|
2641
|
-
ClientMethod: str,
|
|
2642
|
-
Params: Mapping[str, Any] = ...,
|
|
2643
|
-
ExpiresIn: int = 3600,
|
|
2644
|
-
HttpMethod: str = ...,
|
|
2645
|
-
) -> str:
|
|
2646
|
-
"""
|
|
2647
|
-
Generate a presigned url given a client, its method, and arguments.
|
|
2648
|
-
|
|
2649
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
2650
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
2651
|
-
"""
|
|
2652
|
-
|
|
2653
2798
|
def get_device_fleet_report(
|
|
2654
2799
|
self, **kwargs: Unpack[GetDeviceFleetReportRequestRequestTypeDef]
|
|
2655
2800
|
) -> GetDeviceFleetReportResponseTypeDef:
|
|
@@ -2812,13 +2957,23 @@ class SageMakerClient(BaseClient):
|
|
|
2812
2957
|
self, **kwargs: Unpack[ListClusterNodesRequestRequestTypeDef]
|
|
2813
2958
|
) -> ListClusterNodesResponseTypeDef:
|
|
2814
2959
|
"""
|
|
2815
|
-
Retrieves the list of instances (also called
|
|
2960
|
+
Retrieves the list of instances (also called <i>nodes</i> interchangeably) in a
|
|
2816
2961
|
SageMaker HyperPod cluster.
|
|
2817
2962
|
|
|
2818
2963
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_nodes.html)
|
|
2819
2964
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_nodes)
|
|
2820
2965
|
"""
|
|
2821
2966
|
|
|
2967
|
+
def list_cluster_scheduler_configs(
|
|
2968
|
+
self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestRequestTypeDef]
|
|
2969
|
+
) -> ListClusterSchedulerConfigsResponseTypeDef:
|
|
2970
|
+
"""
|
|
2971
|
+
List the cluster policy configurations.
|
|
2972
|
+
|
|
2973
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_scheduler_configs.html)
|
|
2974
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_scheduler_configs)
|
|
2975
|
+
"""
|
|
2976
|
+
|
|
2822
2977
|
def list_clusters(
|
|
2823
2978
|
self, **kwargs: Unpack[ListClustersRequestRequestTypeDef]
|
|
2824
2979
|
) -> ListClustersResponseTypeDef:
|
|
@@ -2849,6 +3004,16 @@ class SageMakerClient(BaseClient):
|
|
|
2849
3004
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compilation_jobs)
|
|
2850
3005
|
"""
|
|
2851
3006
|
|
|
3007
|
+
def list_compute_quotas(
|
|
3008
|
+
self, **kwargs: Unpack[ListComputeQuotasRequestRequestTypeDef]
|
|
3009
|
+
) -> ListComputeQuotasResponseTypeDef:
|
|
3010
|
+
"""
|
|
3011
|
+
List the resource allocation definitions.
|
|
3012
|
+
|
|
3013
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_compute_quotas.html)
|
|
3014
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compute_quotas)
|
|
3015
|
+
"""
|
|
3016
|
+
|
|
2852
3017
|
def list_contexts(
|
|
2853
3018
|
self, **kwargs: Unpack[ListContextsRequestRequestTypeDef]
|
|
2854
3019
|
) -> ListContextsResponseTypeDef:
|
|
@@ -2953,7 +3118,7 @@ class SageMakerClient(BaseClient):
|
|
|
2953
3118
|
self, **kwargs: Unpack[ListFeatureGroupsRequestRequestTypeDef]
|
|
2954
3119
|
) -> ListFeatureGroupsResponseTypeDef:
|
|
2955
3120
|
"""
|
|
2956
|
-
List
|
|
3121
|
+
List <code>FeatureGroup</code>s based on given filter and order.
|
|
2957
3122
|
|
|
2958
3123
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_feature_groups.html)
|
|
2959
3124
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_feature_groups)
|
|
@@ -3011,8 +3176,8 @@ class SageMakerClient(BaseClient):
|
|
|
3011
3176
|
self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestRequestTypeDef]
|
|
3012
3177
|
) -> ListHyperParameterTuningJobsResponseTypeDef:
|
|
3013
3178
|
"""
|
|
3014
|
-
Gets a list of
|
|
3015
|
-
|
|
3179
|
+
Gets a list of <a
|
|
3180
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobSummary.html">HyperParameterTuningJobSummary</a>
|
|
3016
3181
|
objects that describe the hyperparameter tuning jobs launched in your account.
|
|
3017
3182
|
|
|
3018
3183
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hyper_parameter_tuning_jobs.html)
|
|
@@ -3214,7 +3379,7 @@ class SageMakerClient(BaseClient):
|
|
|
3214
3379
|
self, **kwargs: Unpack[ListModelsInputRequestTypeDef]
|
|
3215
3380
|
) -> ListModelsOutputTypeDef:
|
|
3216
3381
|
"""
|
|
3217
|
-
Lists models created with the
|
|
3382
|
+
Lists models created with the <code>CreateModel</code> API.
|
|
3218
3383
|
|
|
3219
3384
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_models.html)
|
|
3220
3385
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_models)
|
|
@@ -3264,8 +3429,8 @@ class SageMakerClient(BaseClient):
|
|
|
3264
3429
|
self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputRequestTypeDef]
|
|
3265
3430
|
) -> ListNotebookInstanceLifecycleConfigsOutputTypeDef:
|
|
3266
3431
|
"""
|
|
3267
|
-
Lists notebook instance lifestyle configurations created with the
|
|
3268
|
-
|
|
3432
|
+
Lists notebook instance lifestyle configurations created with the <a
|
|
3433
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
3269
3434
|
API.
|
|
3270
3435
|
|
|
3271
3436
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instance_lifecycle_configs.html)
|
|
@@ -3276,8 +3441,8 @@ class SageMakerClient(BaseClient):
|
|
|
3276
3441
|
self, **kwargs: Unpack[ListNotebookInstancesInputRequestTypeDef]
|
|
3277
3442
|
) -> ListNotebookInstancesOutputTypeDef:
|
|
3278
3443
|
"""
|
|
3279
|
-
Returns a list of the SageMaker notebook instances in the requester's
|
|
3280
|
-
in an Amazon Web Services Region.
|
|
3444
|
+
Returns a list of the SageMaker AI notebook instances in the requester's
|
|
3445
|
+
account in an Amazon Web Services Region.
|
|
3281
3446
|
|
|
3282
3447
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instances.html)
|
|
3283
3448
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_notebook_instances)
|
|
@@ -3293,11 +3458,21 @@ class SageMakerClient(BaseClient):
|
|
|
3293
3458
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_optimization_jobs)
|
|
3294
3459
|
"""
|
|
3295
3460
|
|
|
3461
|
+
def list_partner_apps(
|
|
3462
|
+
self, **kwargs: Unpack[ListPartnerAppsRequestRequestTypeDef]
|
|
3463
|
+
) -> ListPartnerAppsResponseTypeDef:
|
|
3464
|
+
"""
|
|
3465
|
+
Lists all of the SageMaker Partner AI Apps in an account.
|
|
3466
|
+
|
|
3467
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_partner_apps.html)
|
|
3468
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_partner_apps)
|
|
3469
|
+
"""
|
|
3470
|
+
|
|
3296
3471
|
def list_pipeline_execution_steps(
|
|
3297
3472
|
self, **kwargs: Unpack[ListPipelineExecutionStepsRequestRequestTypeDef]
|
|
3298
3473
|
) -> ListPipelineExecutionStepsResponseTypeDef:
|
|
3299
3474
|
"""
|
|
3300
|
-
Gets a list of
|
|
3475
|
+
Gets a list of <code>PipeLineExecutionStep</code> objects.
|
|
3301
3476
|
|
|
3302
3477
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipeline_execution_steps.html)
|
|
3303
3478
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipeline_execution_steps)
|
|
@@ -3388,8 +3563,8 @@ class SageMakerClient(BaseClient):
|
|
|
3388
3563
|
self, **kwargs: Unpack[ListStudioLifecycleConfigsRequestRequestTypeDef]
|
|
3389
3564
|
) -> ListStudioLifecycleConfigsResponseTypeDef:
|
|
3390
3565
|
"""
|
|
3391
|
-
Lists the Amazon SageMaker Studio Lifecycle Configurations in your Amazon
|
|
3392
|
-
Services Account.
|
|
3566
|
+
Lists the Amazon SageMaker AI Studio Lifecycle Configurations in your Amazon
|
|
3567
|
+
Web Services Account.
|
|
3393
3568
|
|
|
3394
3569
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_studio_lifecycle_configs.html)
|
|
3395
3570
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_studio_lifecycle_configs)
|
|
@@ -3428,8 +3603,8 @@ class SageMakerClient(BaseClient):
|
|
|
3428
3603
|
self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestRequestTypeDef]
|
|
3429
3604
|
) -> ListTrainingJobsForHyperParameterTuningJobResponseTypeDef:
|
|
3430
3605
|
"""
|
|
3431
|
-
Gets a list of
|
|
3432
|
-
|
|
3606
|
+
Gets a list of <a
|
|
3607
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobSummary.html">TrainingJobSummary</a>
|
|
3433
3608
|
objects that describe the training jobs that a hyperparameter tuning job
|
|
3434
3609
|
launched.
|
|
3435
3610
|
|
|
@@ -3437,6 +3612,16 @@ class SageMakerClient(BaseClient):
|
|
|
3437
3612
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_jobs_for_hyper_parameter_tuning_job)
|
|
3438
3613
|
"""
|
|
3439
3614
|
|
|
3615
|
+
def list_training_plans(
|
|
3616
|
+
self, **kwargs: Unpack[ListTrainingPlansRequestRequestTypeDef]
|
|
3617
|
+
) -> ListTrainingPlansResponseTypeDef:
|
|
3618
|
+
"""
|
|
3619
|
+
Retrieves a list of training plans for the current account.
|
|
3620
|
+
|
|
3621
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_training_plans.html)
|
|
3622
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_plans)
|
|
3623
|
+
"""
|
|
3624
|
+
|
|
3440
3625
|
def list_transform_jobs(
|
|
3441
3626
|
self, **kwargs: Unpack[ListTransformJobsRequestRequestTypeDef]
|
|
3442
3627
|
) -> ListTransformJobsResponseTypeDef:
|
|
@@ -3557,6 +3742,16 @@ class SageMakerClient(BaseClient):
|
|
|
3557
3742
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search)
|
|
3558
3743
|
"""
|
|
3559
3744
|
|
|
3745
|
+
def search_training_plan_offerings(
|
|
3746
|
+
self, **kwargs: Unpack[SearchTrainingPlanOfferingsRequestRequestTypeDef]
|
|
3747
|
+
) -> SearchTrainingPlanOfferingsResponseTypeDef:
|
|
3748
|
+
"""
|
|
3749
|
+
Searches for available training plan offerings based on specified criteria.
|
|
3750
|
+
|
|
3751
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/search_training_plan_offerings.html)
|
|
3752
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search_training_plan_offerings)
|
|
3753
|
+
"""
|
|
3754
|
+
|
|
3560
3755
|
def send_pipeline_execution_step_failure(
|
|
3561
3756
|
self, **kwargs: Unpack[SendPipelineExecutionStepFailureRequestRequestTypeDef]
|
|
3562
3757
|
) -> SendPipelineExecutionStepFailureResponseTypeDef:
|
|
@@ -3841,6 +4036,16 @@ class SageMakerClient(BaseClient):
|
|
|
3841
4036
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster)
|
|
3842
4037
|
"""
|
|
3843
4038
|
|
|
4039
|
+
def update_cluster_scheduler_config(
|
|
4040
|
+
self, **kwargs: Unpack[UpdateClusterSchedulerConfigRequestRequestTypeDef]
|
|
4041
|
+
) -> UpdateClusterSchedulerConfigResponseTypeDef:
|
|
4042
|
+
"""
|
|
4043
|
+
Update the cluster policy configuration.
|
|
4044
|
+
|
|
4045
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_cluster_scheduler_config.html)
|
|
4046
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster_scheduler_config)
|
|
4047
|
+
"""
|
|
4048
|
+
|
|
3844
4049
|
def update_cluster_software(
|
|
3845
4050
|
self, **kwargs: Unpack[UpdateClusterSoftwareRequestRequestTypeDef]
|
|
3846
4051
|
) -> UpdateClusterSoftwareResponseTypeDef:
|
|
@@ -3862,6 +4067,16 @@ class SageMakerClient(BaseClient):
|
|
|
3862
4067
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_code_repository)
|
|
3863
4068
|
"""
|
|
3864
4069
|
|
|
4070
|
+
def update_compute_quota(
|
|
4071
|
+
self, **kwargs: Unpack[UpdateComputeQuotaRequestRequestTypeDef]
|
|
4072
|
+
) -> UpdateComputeQuotaResponseTypeDef:
|
|
4073
|
+
"""
|
|
4074
|
+
Update the compute allocation definition.
|
|
4075
|
+
|
|
4076
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_compute_quota.html)
|
|
4077
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_compute_quota)
|
|
4078
|
+
"""
|
|
4079
|
+
|
|
3865
4080
|
def update_context(
|
|
3866
4081
|
self, **kwargs: Unpack[UpdateContextRequestRequestTypeDef]
|
|
3867
4082
|
) -> UpdateContextResponseTypeDef:
|
|
@@ -3906,8 +4121,8 @@ class SageMakerClient(BaseClient):
|
|
|
3906
4121
|
self, **kwargs: Unpack[UpdateEndpointInputRequestTypeDef]
|
|
3907
4122
|
) -> UpdateEndpointOutputTypeDef:
|
|
3908
4123
|
"""
|
|
3909
|
-
Deploys the
|
|
3910
|
-
instances.
|
|
4124
|
+
Deploys the <code>EndpointConfig</code> specified in the request to a new fleet
|
|
4125
|
+
of instances.
|
|
3911
4126
|
|
|
3912
4127
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_endpoint.html)
|
|
3913
4128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_endpoint)
|
|
@@ -3969,7 +4184,7 @@ class SageMakerClient(BaseClient):
|
|
|
3969
4184
|
self, **kwargs: Unpack[UpdateImageRequestRequestTypeDef]
|
|
3970
4185
|
) -> UpdateImageResponseTypeDef:
|
|
3971
4186
|
"""
|
|
3972
|
-
Updates the properties of a SageMaker image.
|
|
4187
|
+
Updates the properties of a SageMaker AI image.
|
|
3973
4188
|
|
|
3974
4189
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_image.html)
|
|
3975
4190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_image)
|
|
@@ -3979,7 +4194,7 @@ class SageMakerClient(BaseClient):
|
|
|
3979
4194
|
self, **kwargs: Unpack[UpdateImageVersionRequestRequestTypeDef]
|
|
3980
4195
|
) -> UpdateImageVersionResponseTypeDef:
|
|
3981
4196
|
"""
|
|
3982
|
-
Updates the properties of a SageMaker image version.
|
|
4197
|
+
Updates the properties of a SageMaker AI image version.
|
|
3983
4198
|
|
|
3984
4199
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_image_version.html)
|
|
3985
4200
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_image_version)
|
|
@@ -4067,7 +4282,7 @@ class SageMakerClient(BaseClient):
|
|
|
4067
4282
|
|
|
4068
4283
|
def update_notebook_instance(
|
|
4069
4284
|
self, **kwargs: Unpack[UpdateNotebookInstanceInputRequestTypeDef]
|
|
4070
|
-
) ->
|
|
4285
|
+
) -> dict[str, Any]:
|
|
4071
4286
|
"""
|
|
4072
4287
|
Updates a notebook instance.
|
|
4073
4288
|
|
|
@@ -4077,16 +4292,26 @@ class SageMakerClient(BaseClient):
|
|
|
4077
4292
|
|
|
4078
4293
|
def update_notebook_instance_lifecycle_config(
|
|
4079
4294
|
self, **kwargs: Unpack[UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef]
|
|
4080
|
-
) ->
|
|
4295
|
+
) -> dict[str, Any]:
|
|
4081
4296
|
"""
|
|
4082
|
-
Updates a notebook instance lifecycle configuration created with the
|
|
4083
|
-
|
|
4297
|
+
Updates a notebook instance lifecycle configuration created with the <a
|
|
4298
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
4084
4299
|
API.
|
|
4085
4300
|
|
|
4086
4301
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_notebook_instance_lifecycle_config.html)
|
|
4087
4302
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_notebook_instance_lifecycle_config)
|
|
4088
4303
|
"""
|
|
4089
4304
|
|
|
4305
|
+
def update_partner_app(
|
|
4306
|
+
self, **kwargs: Unpack[UpdatePartnerAppRequestRequestTypeDef]
|
|
4307
|
+
) -> UpdatePartnerAppResponseTypeDef:
|
|
4308
|
+
"""
|
|
4309
|
+
Updates all of the SageMaker Partner AI Apps in an account.
|
|
4310
|
+
|
|
4311
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_partner_app.html)
|
|
4312
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_partner_app)
|
|
4313
|
+
"""
|
|
4314
|
+
|
|
4090
4315
|
def update_pipeline(
|
|
4091
4316
|
self, **kwargs: Unpack[UpdatePipelineRequestRequestTypeDef]
|
|
4092
4317
|
) -> UpdatePipelineResponseTypeDef:
|
|
@@ -4189,735 +4414,1003 @@ class SageMakerClient(BaseClient):
|
|
|
4189
4414
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_workteam)
|
|
4190
4415
|
"""
|
|
4191
4416
|
|
|
4192
|
-
@overload
|
|
4193
|
-
def get_paginator(
|
|
4417
|
+
@overload # type: ignore[override]
|
|
4418
|
+
def get_paginator( # type: ignore[override]
|
|
4419
|
+
self, operation_name: Literal["list_actions"]
|
|
4420
|
+
) -> ListActionsPaginator:
|
|
4194
4421
|
"""
|
|
4422
|
+
Create a paginator for an operation.
|
|
4423
|
+
|
|
4195
4424
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4196
4425
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4197
4426
|
"""
|
|
4198
4427
|
|
|
4199
|
-
@overload
|
|
4200
|
-
def get_paginator(
|
|
4428
|
+
@overload # type: ignore[override]
|
|
4429
|
+
def get_paginator( # type: ignore[override]
|
|
4430
|
+
self, operation_name: Literal["list_algorithms"]
|
|
4431
|
+
) -> ListAlgorithmsPaginator:
|
|
4201
4432
|
"""
|
|
4433
|
+
Create a paginator for an operation.
|
|
4434
|
+
|
|
4202
4435
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4203
4436
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4204
4437
|
"""
|
|
4205
4438
|
|
|
4206
|
-
@overload
|
|
4207
|
-
def get_paginator(
|
|
4439
|
+
@overload # type: ignore[override]
|
|
4440
|
+
def get_paginator( # type: ignore[override]
|
|
4441
|
+
self, operation_name: Literal["list_aliases"]
|
|
4442
|
+
) -> ListAliasesPaginator:
|
|
4208
4443
|
"""
|
|
4444
|
+
Create a paginator for an operation.
|
|
4445
|
+
|
|
4209
4446
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4210
4447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4211
4448
|
"""
|
|
4212
4449
|
|
|
4213
|
-
@overload
|
|
4214
|
-
def get_paginator(
|
|
4450
|
+
@overload # type: ignore[override]
|
|
4451
|
+
def get_paginator( # type: ignore[override]
|
|
4215
4452
|
self, operation_name: Literal["list_app_image_configs"]
|
|
4216
4453
|
) -> ListAppImageConfigsPaginator:
|
|
4217
4454
|
"""
|
|
4455
|
+
Create a paginator for an operation.
|
|
4456
|
+
|
|
4218
4457
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4219
4458
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4220
4459
|
"""
|
|
4221
4460
|
|
|
4222
|
-
@overload
|
|
4223
|
-
def get_paginator(
|
|
4461
|
+
@overload # type: ignore[override]
|
|
4462
|
+
def get_paginator( # type: ignore[override]
|
|
4463
|
+
self, operation_name: Literal["list_apps"]
|
|
4464
|
+
) -> ListAppsPaginator:
|
|
4224
4465
|
"""
|
|
4466
|
+
Create a paginator for an operation.
|
|
4467
|
+
|
|
4225
4468
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4226
4469
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4227
4470
|
"""
|
|
4228
4471
|
|
|
4229
|
-
@overload
|
|
4230
|
-
def get_paginator(
|
|
4472
|
+
@overload # type: ignore[override]
|
|
4473
|
+
def get_paginator( # type: ignore[override]
|
|
4474
|
+
self, operation_name: Literal["list_artifacts"]
|
|
4475
|
+
) -> ListArtifactsPaginator:
|
|
4231
4476
|
"""
|
|
4477
|
+
Create a paginator for an operation.
|
|
4478
|
+
|
|
4232
4479
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4233
4480
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4234
4481
|
"""
|
|
4235
4482
|
|
|
4236
|
-
@overload
|
|
4237
|
-
def get_paginator(
|
|
4483
|
+
@overload # type: ignore[override]
|
|
4484
|
+
def get_paginator( # type: ignore[override]
|
|
4238
4485
|
self, operation_name: Literal["list_associations"]
|
|
4239
4486
|
) -> ListAssociationsPaginator:
|
|
4240
4487
|
"""
|
|
4488
|
+
Create a paginator for an operation.
|
|
4489
|
+
|
|
4241
4490
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4242
4491
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4243
4492
|
"""
|
|
4244
4493
|
|
|
4245
|
-
@overload
|
|
4246
|
-
def get_paginator(
|
|
4494
|
+
@overload # type: ignore[override]
|
|
4495
|
+
def get_paginator( # type: ignore[override]
|
|
4247
4496
|
self, operation_name: Literal["list_auto_ml_jobs"]
|
|
4248
4497
|
) -> ListAutoMLJobsPaginator:
|
|
4249
4498
|
"""
|
|
4499
|
+
Create a paginator for an operation.
|
|
4500
|
+
|
|
4250
4501
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4251
4502
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4252
4503
|
"""
|
|
4253
4504
|
|
|
4254
|
-
@overload
|
|
4255
|
-
def get_paginator(
|
|
4505
|
+
@overload # type: ignore[override]
|
|
4506
|
+
def get_paginator( # type: ignore[override]
|
|
4256
4507
|
self, operation_name: Literal["list_candidates_for_auto_ml_job"]
|
|
4257
4508
|
) -> ListCandidatesForAutoMLJobPaginator:
|
|
4258
4509
|
"""
|
|
4510
|
+
Create a paginator for an operation.
|
|
4511
|
+
|
|
4259
4512
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4260
4513
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4261
4514
|
"""
|
|
4262
4515
|
|
|
4263
|
-
@overload
|
|
4264
|
-
def get_paginator(
|
|
4516
|
+
@overload # type: ignore[override]
|
|
4517
|
+
def get_paginator( # type: ignore[override]
|
|
4265
4518
|
self, operation_name: Literal["list_cluster_nodes"]
|
|
4266
4519
|
) -> ListClusterNodesPaginator:
|
|
4267
4520
|
"""
|
|
4521
|
+
Create a paginator for an operation.
|
|
4522
|
+
|
|
4268
4523
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4269
4524
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4270
4525
|
"""
|
|
4271
4526
|
|
|
4272
|
-
@overload
|
|
4273
|
-
def get_paginator(
|
|
4527
|
+
@overload # type: ignore[override]
|
|
4528
|
+
def get_paginator( # type: ignore[override]
|
|
4529
|
+
self, operation_name: Literal["list_cluster_scheduler_configs"]
|
|
4530
|
+
) -> ListClusterSchedulerConfigsPaginator:
|
|
4274
4531
|
"""
|
|
4532
|
+
Create a paginator for an operation.
|
|
4533
|
+
|
|
4275
4534
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4276
4535
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4277
4536
|
"""
|
|
4278
4537
|
|
|
4279
|
-
@overload
|
|
4280
|
-
def get_paginator(
|
|
4538
|
+
@overload # type: ignore[override]
|
|
4539
|
+
def get_paginator( # type: ignore[override]
|
|
4540
|
+
self, operation_name: Literal["list_clusters"]
|
|
4541
|
+
) -> ListClustersPaginator:
|
|
4542
|
+
"""
|
|
4543
|
+
Create a paginator for an operation.
|
|
4544
|
+
|
|
4545
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4546
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4547
|
+
"""
|
|
4548
|
+
|
|
4549
|
+
@overload # type: ignore[override]
|
|
4550
|
+
def get_paginator( # type: ignore[override]
|
|
4281
4551
|
self, operation_name: Literal["list_code_repositories"]
|
|
4282
4552
|
) -> ListCodeRepositoriesPaginator:
|
|
4283
4553
|
"""
|
|
4554
|
+
Create a paginator for an operation.
|
|
4555
|
+
|
|
4284
4556
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4285
4557
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4286
4558
|
"""
|
|
4287
4559
|
|
|
4288
|
-
@overload
|
|
4289
|
-
def get_paginator(
|
|
4560
|
+
@overload # type: ignore[override]
|
|
4561
|
+
def get_paginator( # type: ignore[override]
|
|
4290
4562
|
self, operation_name: Literal["list_compilation_jobs"]
|
|
4291
4563
|
) -> ListCompilationJobsPaginator:
|
|
4292
4564
|
"""
|
|
4565
|
+
Create a paginator for an operation.
|
|
4566
|
+
|
|
4567
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4568
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4569
|
+
"""
|
|
4570
|
+
|
|
4571
|
+
@overload # type: ignore[override]
|
|
4572
|
+
def get_paginator( # type: ignore[override]
|
|
4573
|
+
self, operation_name: Literal["list_compute_quotas"]
|
|
4574
|
+
) -> ListComputeQuotasPaginator:
|
|
4575
|
+
"""
|
|
4576
|
+
Create a paginator for an operation.
|
|
4577
|
+
|
|
4293
4578
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4294
4579
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4295
4580
|
"""
|
|
4296
4581
|
|
|
4297
|
-
@overload
|
|
4298
|
-
def get_paginator(
|
|
4582
|
+
@overload # type: ignore[override]
|
|
4583
|
+
def get_paginator( # type: ignore[override]
|
|
4584
|
+
self, operation_name: Literal["list_contexts"]
|
|
4585
|
+
) -> ListContextsPaginator:
|
|
4299
4586
|
"""
|
|
4587
|
+
Create a paginator for an operation.
|
|
4588
|
+
|
|
4300
4589
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4301
4590
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4302
4591
|
"""
|
|
4303
4592
|
|
|
4304
|
-
@overload
|
|
4305
|
-
def get_paginator(
|
|
4593
|
+
@overload # type: ignore[override]
|
|
4594
|
+
def get_paginator( # type: ignore[override]
|
|
4306
4595
|
self, operation_name: Literal["list_data_quality_job_definitions"]
|
|
4307
4596
|
) -> ListDataQualityJobDefinitionsPaginator:
|
|
4308
4597
|
"""
|
|
4598
|
+
Create a paginator for an operation.
|
|
4599
|
+
|
|
4309
4600
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4310
4601
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4311
4602
|
"""
|
|
4312
4603
|
|
|
4313
|
-
@overload
|
|
4314
|
-
def get_paginator(
|
|
4604
|
+
@overload # type: ignore[override]
|
|
4605
|
+
def get_paginator( # type: ignore[override]
|
|
4315
4606
|
self, operation_name: Literal["list_device_fleets"]
|
|
4316
4607
|
) -> ListDeviceFleetsPaginator:
|
|
4317
4608
|
"""
|
|
4609
|
+
Create a paginator for an operation.
|
|
4610
|
+
|
|
4318
4611
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4319
4612
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4320
4613
|
"""
|
|
4321
4614
|
|
|
4322
|
-
@overload
|
|
4323
|
-
def get_paginator(
|
|
4615
|
+
@overload # type: ignore[override]
|
|
4616
|
+
def get_paginator( # type: ignore[override]
|
|
4617
|
+
self, operation_name: Literal["list_devices"]
|
|
4618
|
+
) -> ListDevicesPaginator:
|
|
4324
4619
|
"""
|
|
4620
|
+
Create a paginator for an operation.
|
|
4621
|
+
|
|
4325
4622
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4326
4623
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4327
4624
|
"""
|
|
4328
4625
|
|
|
4329
|
-
@overload
|
|
4330
|
-
def get_paginator(
|
|
4626
|
+
@overload # type: ignore[override]
|
|
4627
|
+
def get_paginator( # type: ignore[override]
|
|
4628
|
+
self, operation_name: Literal["list_domains"]
|
|
4629
|
+
) -> ListDomainsPaginator:
|
|
4331
4630
|
"""
|
|
4631
|
+
Create a paginator for an operation.
|
|
4632
|
+
|
|
4332
4633
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4333
4634
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4334
4635
|
"""
|
|
4335
4636
|
|
|
4336
|
-
@overload
|
|
4337
|
-
def get_paginator(
|
|
4637
|
+
@overload # type: ignore[override]
|
|
4638
|
+
def get_paginator( # type: ignore[override]
|
|
4338
4639
|
self, operation_name: Literal["list_edge_deployment_plans"]
|
|
4339
4640
|
) -> ListEdgeDeploymentPlansPaginator:
|
|
4340
4641
|
"""
|
|
4642
|
+
Create a paginator for an operation.
|
|
4643
|
+
|
|
4341
4644
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4342
4645
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4343
4646
|
"""
|
|
4344
4647
|
|
|
4345
|
-
@overload
|
|
4346
|
-
def get_paginator(
|
|
4648
|
+
@overload # type: ignore[override]
|
|
4649
|
+
def get_paginator( # type: ignore[override]
|
|
4347
4650
|
self, operation_name: Literal["list_edge_packaging_jobs"]
|
|
4348
4651
|
) -> ListEdgePackagingJobsPaginator:
|
|
4349
4652
|
"""
|
|
4653
|
+
Create a paginator for an operation.
|
|
4654
|
+
|
|
4350
4655
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4351
4656
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4352
4657
|
"""
|
|
4353
4658
|
|
|
4354
|
-
@overload
|
|
4355
|
-
def get_paginator(
|
|
4659
|
+
@overload # type: ignore[override]
|
|
4660
|
+
def get_paginator( # type: ignore[override]
|
|
4356
4661
|
self, operation_name: Literal["list_endpoint_configs"]
|
|
4357
4662
|
) -> ListEndpointConfigsPaginator:
|
|
4358
4663
|
"""
|
|
4664
|
+
Create a paginator for an operation.
|
|
4665
|
+
|
|
4359
4666
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4360
4667
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4361
4668
|
"""
|
|
4362
4669
|
|
|
4363
|
-
@overload
|
|
4364
|
-
def get_paginator(
|
|
4670
|
+
@overload # type: ignore[override]
|
|
4671
|
+
def get_paginator( # type: ignore[override]
|
|
4672
|
+
self, operation_name: Literal["list_endpoints"]
|
|
4673
|
+
) -> ListEndpointsPaginator:
|
|
4365
4674
|
"""
|
|
4675
|
+
Create a paginator for an operation.
|
|
4676
|
+
|
|
4366
4677
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4367
4678
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4368
4679
|
"""
|
|
4369
4680
|
|
|
4370
|
-
@overload
|
|
4371
|
-
def get_paginator(
|
|
4681
|
+
@overload # type: ignore[override]
|
|
4682
|
+
def get_paginator( # type: ignore[override]
|
|
4372
4683
|
self, operation_name: Literal["list_experiments"]
|
|
4373
4684
|
) -> ListExperimentsPaginator:
|
|
4374
4685
|
"""
|
|
4686
|
+
Create a paginator for an operation.
|
|
4687
|
+
|
|
4375
4688
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4376
4689
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4377
4690
|
"""
|
|
4378
4691
|
|
|
4379
|
-
@overload
|
|
4380
|
-
def get_paginator(
|
|
4692
|
+
@overload # type: ignore[override]
|
|
4693
|
+
def get_paginator( # type: ignore[override]
|
|
4381
4694
|
self, operation_name: Literal["list_feature_groups"]
|
|
4382
4695
|
) -> ListFeatureGroupsPaginator:
|
|
4383
4696
|
"""
|
|
4697
|
+
Create a paginator for an operation.
|
|
4698
|
+
|
|
4384
4699
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4385
4700
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4386
4701
|
"""
|
|
4387
4702
|
|
|
4388
|
-
@overload
|
|
4389
|
-
def get_paginator(
|
|
4703
|
+
@overload # type: ignore[override]
|
|
4704
|
+
def get_paginator( # type: ignore[override]
|
|
4390
4705
|
self, operation_name: Literal["list_flow_definitions"]
|
|
4391
4706
|
) -> ListFlowDefinitionsPaginator:
|
|
4392
4707
|
"""
|
|
4708
|
+
Create a paginator for an operation.
|
|
4709
|
+
|
|
4393
4710
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4394
4711
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4395
4712
|
"""
|
|
4396
4713
|
|
|
4397
|
-
@overload
|
|
4398
|
-
def get_paginator(
|
|
4714
|
+
@overload # type: ignore[override]
|
|
4715
|
+
def get_paginator( # type: ignore[override]
|
|
4399
4716
|
self, operation_name: Literal["list_human_task_uis"]
|
|
4400
4717
|
) -> ListHumanTaskUisPaginator:
|
|
4401
4718
|
"""
|
|
4719
|
+
Create a paginator for an operation.
|
|
4720
|
+
|
|
4402
4721
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4403
4722
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4404
4723
|
"""
|
|
4405
4724
|
|
|
4406
|
-
@overload
|
|
4407
|
-
def get_paginator(
|
|
4725
|
+
@overload # type: ignore[override]
|
|
4726
|
+
def get_paginator( # type: ignore[override]
|
|
4408
4727
|
self, operation_name: Literal["list_hyper_parameter_tuning_jobs"]
|
|
4409
4728
|
) -> ListHyperParameterTuningJobsPaginator:
|
|
4410
4729
|
"""
|
|
4730
|
+
Create a paginator for an operation.
|
|
4731
|
+
|
|
4411
4732
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4412
4733
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4413
4734
|
"""
|
|
4414
4735
|
|
|
4415
|
-
@overload
|
|
4416
|
-
def get_paginator(
|
|
4736
|
+
@overload # type: ignore[override]
|
|
4737
|
+
def get_paginator( # type: ignore[override]
|
|
4417
4738
|
self, operation_name: Literal["list_image_versions"]
|
|
4418
4739
|
) -> ListImageVersionsPaginator:
|
|
4419
4740
|
"""
|
|
4741
|
+
Create a paginator for an operation.
|
|
4742
|
+
|
|
4420
4743
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4421
4744
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4422
4745
|
"""
|
|
4423
4746
|
|
|
4424
|
-
@overload
|
|
4425
|
-
def get_paginator(
|
|
4747
|
+
@overload # type: ignore[override]
|
|
4748
|
+
def get_paginator( # type: ignore[override]
|
|
4749
|
+
self, operation_name: Literal["list_images"]
|
|
4750
|
+
) -> ListImagesPaginator:
|
|
4426
4751
|
"""
|
|
4752
|
+
Create a paginator for an operation.
|
|
4753
|
+
|
|
4427
4754
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4428
4755
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4429
4756
|
"""
|
|
4430
4757
|
|
|
4431
|
-
@overload
|
|
4432
|
-
def get_paginator(
|
|
4758
|
+
@overload # type: ignore[override]
|
|
4759
|
+
def get_paginator( # type: ignore[override]
|
|
4433
4760
|
self, operation_name: Literal["list_inference_components"]
|
|
4434
4761
|
) -> ListInferenceComponentsPaginator:
|
|
4435
4762
|
"""
|
|
4763
|
+
Create a paginator for an operation.
|
|
4764
|
+
|
|
4436
4765
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4437
4766
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4438
4767
|
"""
|
|
4439
4768
|
|
|
4440
|
-
@overload
|
|
4441
|
-
def get_paginator(
|
|
4769
|
+
@overload # type: ignore[override]
|
|
4770
|
+
def get_paginator( # type: ignore[override]
|
|
4442
4771
|
self, operation_name: Literal["list_inference_experiments"]
|
|
4443
4772
|
) -> ListInferenceExperimentsPaginator:
|
|
4444
4773
|
"""
|
|
4774
|
+
Create a paginator for an operation.
|
|
4775
|
+
|
|
4445
4776
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4446
4777
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4447
4778
|
"""
|
|
4448
4779
|
|
|
4449
|
-
@overload
|
|
4450
|
-
def get_paginator(
|
|
4780
|
+
@overload # type: ignore[override]
|
|
4781
|
+
def get_paginator( # type: ignore[override]
|
|
4451
4782
|
self, operation_name: Literal["list_inference_recommendations_job_steps"]
|
|
4452
4783
|
) -> ListInferenceRecommendationsJobStepsPaginator:
|
|
4453
4784
|
"""
|
|
4785
|
+
Create a paginator for an operation.
|
|
4786
|
+
|
|
4454
4787
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4455
4788
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4456
4789
|
"""
|
|
4457
4790
|
|
|
4458
|
-
@overload
|
|
4459
|
-
def get_paginator(
|
|
4791
|
+
@overload # type: ignore[override]
|
|
4792
|
+
def get_paginator( # type: ignore[override]
|
|
4460
4793
|
self, operation_name: Literal["list_inference_recommendations_jobs"]
|
|
4461
4794
|
) -> ListInferenceRecommendationsJobsPaginator:
|
|
4462
4795
|
"""
|
|
4796
|
+
Create a paginator for an operation.
|
|
4797
|
+
|
|
4463
4798
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4464
4799
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4465
4800
|
"""
|
|
4466
4801
|
|
|
4467
|
-
@overload
|
|
4468
|
-
def get_paginator(
|
|
4802
|
+
@overload # type: ignore[override]
|
|
4803
|
+
def get_paginator( # type: ignore[override]
|
|
4469
4804
|
self, operation_name: Literal["list_labeling_jobs_for_workteam"]
|
|
4470
4805
|
) -> ListLabelingJobsForWorkteamPaginator:
|
|
4471
4806
|
"""
|
|
4807
|
+
Create a paginator for an operation.
|
|
4808
|
+
|
|
4472
4809
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4473
4810
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4474
4811
|
"""
|
|
4475
4812
|
|
|
4476
|
-
@overload
|
|
4477
|
-
def get_paginator(
|
|
4813
|
+
@overload # type: ignore[override]
|
|
4814
|
+
def get_paginator( # type: ignore[override]
|
|
4478
4815
|
self, operation_name: Literal["list_labeling_jobs"]
|
|
4479
4816
|
) -> ListLabelingJobsPaginator:
|
|
4480
4817
|
"""
|
|
4818
|
+
Create a paginator for an operation.
|
|
4819
|
+
|
|
4481
4820
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4482
4821
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4483
4822
|
"""
|
|
4484
4823
|
|
|
4485
|
-
@overload
|
|
4486
|
-
def get_paginator(
|
|
4824
|
+
@overload # type: ignore[override]
|
|
4825
|
+
def get_paginator( # type: ignore[override]
|
|
4487
4826
|
self, operation_name: Literal["list_lineage_groups"]
|
|
4488
4827
|
) -> ListLineageGroupsPaginator:
|
|
4489
4828
|
"""
|
|
4829
|
+
Create a paginator for an operation.
|
|
4830
|
+
|
|
4490
4831
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4491
4832
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4492
4833
|
"""
|
|
4493
4834
|
|
|
4494
|
-
@overload
|
|
4495
|
-
def get_paginator(
|
|
4835
|
+
@overload # type: ignore[override]
|
|
4836
|
+
def get_paginator( # type: ignore[override]
|
|
4496
4837
|
self, operation_name: Literal["list_mlflow_tracking_servers"]
|
|
4497
4838
|
) -> ListMlflowTrackingServersPaginator:
|
|
4498
4839
|
"""
|
|
4840
|
+
Create a paginator for an operation.
|
|
4841
|
+
|
|
4499
4842
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4500
4843
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4501
4844
|
"""
|
|
4502
4845
|
|
|
4503
|
-
@overload
|
|
4504
|
-
def get_paginator(
|
|
4846
|
+
@overload # type: ignore[override]
|
|
4847
|
+
def get_paginator( # type: ignore[override]
|
|
4505
4848
|
self, operation_name: Literal["list_model_bias_job_definitions"]
|
|
4506
4849
|
) -> ListModelBiasJobDefinitionsPaginator:
|
|
4507
4850
|
"""
|
|
4851
|
+
Create a paginator for an operation.
|
|
4852
|
+
|
|
4508
4853
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4509
4854
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4510
4855
|
"""
|
|
4511
4856
|
|
|
4512
|
-
@overload
|
|
4513
|
-
def get_paginator(
|
|
4857
|
+
@overload # type: ignore[override]
|
|
4858
|
+
def get_paginator( # type: ignore[override]
|
|
4514
4859
|
self, operation_name: Literal["list_model_card_export_jobs"]
|
|
4515
4860
|
) -> ListModelCardExportJobsPaginator:
|
|
4516
4861
|
"""
|
|
4862
|
+
Create a paginator for an operation.
|
|
4863
|
+
|
|
4517
4864
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4518
4865
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4519
4866
|
"""
|
|
4520
4867
|
|
|
4521
|
-
@overload
|
|
4522
|
-
def get_paginator(
|
|
4868
|
+
@overload # type: ignore[override]
|
|
4869
|
+
def get_paginator( # type: ignore[override]
|
|
4523
4870
|
self, operation_name: Literal["list_model_card_versions"]
|
|
4524
4871
|
) -> ListModelCardVersionsPaginator:
|
|
4525
4872
|
"""
|
|
4873
|
+
Create a paginator for an operation.
|
|
4874
|
+
|
|
4526
4875
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4527
4876
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4528
4877
|
"""
|
|
4529
4878
|
|
|
4530
|
-
@overload
|
|
4531
|
-
def get_paginator(
|
|
4879
|
+
@overload # type: ignore[override]
|
|
4880
|
+
def get_paginator( # type: ignore[override]
|
|
4881
|
+
self, operation_name: Literal["list_model_cards"]
|
|
4882
|
+
) -> ListModelCardsPaginator:
|
|
4532
4883
|
"""
|
|
4884
|
+
Create a paginator for an operation.
|
|
4885
|
+
|
|
4533
4886
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4534
4887
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4535
4888
|
"""
|
|
4536
4889
|
|
|
4537
|
-
@overload
|
|
4538
|
-
def get_paginator(
|
|
4890
|
+
@overload # type: ignore[override]
|
|
4891
|
+
def get_paginator( # type: ignore[override]
|
|
4539
4892
|
self, operation_name: Literal["list_model_explainability_job_definitions"]
|
|
4540
4893
|
) -> ListModelExplainabilityJobDefinitionsPaginator:
|
|
4541
4894
|
"""
|
|
4895
|
+
Create a paginator for an operation.
|
|
4896
|
+
|
|
4542
4897
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4543
4898
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4544
4899
|
"""
|
|
4545
4900
|
|
|
4546
|
-
@overload
|
|
4547
|
-
def get_paginator(
|
|
4901
|
+
@overload # type: ignore[override]
|
|
4902
|
+
def get_paginator( # type: ignore[override]
|
|
4548
4903
|
self, operation_name: Literal["list_model_metadata"]
|
|
4549
4904
|
) -> ListModelMetadataPaginator:
|
|
4550
4905
|
"""
|
|
4906
|
+
Create a paginator for an operation.
|
|
4907
|
+
|
|
4551
4908
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4552
4909
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4553
4910
|
"""
|
|
4554
4911
|
|
|
4555
|
-
@overload
|
|
4556
|
-
def get_paginator(
|
|
4912
|
+
@overload # type: ignore[override]
|
|
4913
|
+
def get_paginator( # type: ignore[override]
|
|
4557
4914
|
self, operation_name: Literal["list_model_package_groups"]
|
|
4558
4915
|
) -> ListModelPackageGroupsPaginator:
|
|
4559
4916
|
"""
|
|
4917
|
+
Create a paginator for an operation.
|
|
4918
|
+
|
|
4560
4919
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4561
4920
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4562
4921
|
"""
|
|
4563
4922
|
|
|
4564
|
-
@overload
|
|
4565
|
-
def get_paginator(
|
|
4923
|
+
@overload # type: ignore[override]
|
|
4924
|
+
def get_paginator( # type: ignore[override]
|
|
4566
4925
|
self, operation_name: Literal["list_model_packages"]
|
|
4567
4926
|
) -> ListModelPackagesPaginator:
|
|
4568
4927
|
"""
|
|
4928
|
+
Create a paginator for an operation.
|
|
4929
|
+
|
|
4569
4930
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4570
4931
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4571
4932
|
"""
|
|
4572
4933
|
|
|
4573
|
-
@overload
|
|
4574
|
-
def get_paginator(
|
|
4934
|
+
@overload # type: ignore[override]
|
|
4935
|
+
def get_paginator( # type: ignore[override]
|
|
4575
4936
|
self, operation_name: Literal["list_model_quality_job_definitions"]
|
|
4576
4937
|
) -> ListModelQualityJobDefinitionsPaginator:
|
|
4577
4938
|
"""
|
|
4939
|
+
Create a paginator for an operation.
|
|
4940
|
+
|
|
4578
4941
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4579
4942
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4580
4943
|
"""
|
|
4581
4944
|
|
|
4582
|
-
@overload
|
|
4583
|
-
def get_paginator(
|
|
4945
|
+
@overload # type: ignore[override]
|
|
4946
|
+
def get_paginator( # type: ignore[override]
|
|
4947
|
+
self, operation_name: Literal["list_models"]
|
|
4948
|
+
) -> ListModelsPaginator:
|
|
4584
4949
|
"""
|
|
4950
|
+
Create a paginator for an operation.
|
|
4951
|
+
|
|
4585
4952
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4586
4953
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4587
4954
|
"""
|
|
4588
4955
|
|
|
4589
|
-
@overload
|
|
4590
|
-
def get_paginator(
|
|
4956
|
+
@overload # type: ignore[override]
|
|
4957
|
+
def get_paginator( # type: ignore[override]
|
|
4591
4958
|
self, operation_name: Literal["list_monitoring_alert_history"]
|
|
4592
4959
|
) -> ListMonitoringAlertHistoryPaginator:
|
|
4593
4960
|
"""
|
|
4961
|
+
Create a paginator for an operation.
|
|
4962
|
+
|
|
4594
4963
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4595
4964
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4596
4965
|
"""
|
|
4597
4966
|
|
|
4598
|
-
@overload
|
|
4599
|
-
def get_paginator(
|
|
4967
|
+
@overload # type: ignore[override]
|
|
4968
|
+
def get_paginator( # type: ignore[override]
|
|
4600
4969
|
self, operation_name: Literal["list_monitoring_alerts"]
|
|
4601
4970
|
) -> ListMonitoringAlertsPaginator:
|
|
4602
4971
|
"""
|
|
4972
|
+
Create a paginator for an operation.
|
|
4973
|
+
|
|
4603
4974
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4604
4975
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4605
4976
|
"""
|
|
4606
4977
|
|
|
4607
|
-
@overload
|
|
4608
|
-
def get_paginator(
|
|
4978
|
+
@overload # type: ignore[override]
|
|
4979
|
+
def get_paginator( # type: ignore[override]
|
|
4609
4980
|
self, operation_name: Literal["list_monitoring_executions"]
|
|
4610
4981
|
) -> ListMonitoringExecutionsPaginator:
|
|
4611
4982
|
"""
|
|
4983
|
+
Create a paginator for an operation.
|
|
4984
|
+
|
|
4612
4985
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4613
4986
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4614
4987
|
"""
|
|
4615
4988
|
|
|
4616
|
-
@overload
|
|
4617
|
-
def get_paginator(
|
|
4989
|
+
@overload # type: ignore[override]
|
|
4990
|
+
def get_paginator( # type: ignore[override]
|
|
4618
4991
|
self, operation_name: Literal["list_monitoring_schedules"]
|
|
4619
4992
|
) -> ListMonitoringSchedulesPaginator:
|
|
4620
4993
|
"""
|
|
4994
|
+
Create a paginator for an operation.
|
|
4995
|
+
|
|
4621
4996
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4622
4997
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4623
4998
|
"""
|
|
4624
4999
|
|
|
4625
|
-
@overload
|
|
4626
|
-
def get_paginator(
|
|
5000
|
+
@overload # type: ignore[override]
|
|
5001
|
+
def get_paginator( # type: ignore[override]
|
|
4627
5002
|
self, operation_name: Literal["list_notebook_instance_lifecycle_configs"]
|
|
4628
5003
|
) -> ListNotebookInstanceLifecycleConfigsPaginator:
|
|
4629
5004
|
"""
|
|
5005
|
+
Create a paginator for an operation.
|
|
5006
|
+
|
|
4630
5007
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4631
5008
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4632
5009
|
"""
|
|
4633
5010
|
|
|
4634
|
-
@overload
|
|
4635
|
-
def get_paginator(
|
|
5011
|
+
@overload # type: ignore[override]
|
|
5012
|
+
def get_paginator( # type: ignore[override]
|
|
4636
5013
|
self, operation_name: Literal["list_notebook_instances"]
|
|
4637
5014
|
) -> ListNotebookInstancesPaginator:
|
|
4638
5015
|
"""
|
|
5016
|
+
Create a paginator for an operation.
|
|
5017
|
+
|
|
4639
5018
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4640
5019
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4641
5020
|
"""
|
|
4642
5021
|
|
|
4643
|
-
@overload
|
|
4644
|
-
def get_paginator(
|
|
5022
|
+
@overload # type: ignore[override]
|
|
5023
|
+
def get_paginator( # type: ignore[override]
|
|
4645
5024
|
self, operation_name: Literal["list_optimization_jobs"]
|
|
4646
5025
|
) -> ListOptimizationJobsPaginator:
|
|
4647
5026
|
"""
|
|
5027
|
+
Create a paginator for an operation.
|
|
5028
|
+
|
|
5029
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5030
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5031
|
+
"""
|
|
5032
|
+
|
|
5033
|
+
@overload # type: ignore[override]
|
|
5034
|
+
def get_paginator( # type: ignore[override]
|
|
5035
|
+
self, operation_name: Literal["list_partner_apps"]
|
|
5036
|
+
) -> ListPartnerAppsPaginator:
|
|
5037
|
+
"""
|
|
5038
|
+
Create a paginator for an operation.
|
|
5039
|
+
|
|
4648
5040
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4649
5041
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4650
5042
|
"""
|
|
4651
5043
|
|
|
4652
|
-
@overload
|
|
4653
|
-
def get_paginator(
|
|
5044
|
+
@overload # type: ignore[override]
|
|
5045
|
+
def get_paginator( # type: ignore[override]
|
|
4654
5046
|
self, operation_name: Literal["list_pipeline_execution_steps"]
|
|
4655
5047
|
) -> ListPipelineExecutionStepsPaginator:
|
|
4656
5048
|
"""
|
|
5049
|
+
Create a paginator for an operation.
|
|
5050
|
+
|
|
4657
5051
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4658
5052
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4659
5053
|
"""
|
|
4660
5054
|
|
|
4661
|
-
@overload
|
|
4662
|
-
def get_paginator(
|
|
5055
|
+
@overload # type: ignore[override]
|
|
5056
|
+
def get_paginator( # type: ignore[override]
|
|
4663
5057
|
self, operation_name: Literal["list_pipeline_executions"]
|
|
4664
5058
|
) -> ListPipelineExecutionsPaginator:
|
|
4665
5059
|
"""
|
|
5060
|
+
Create a paginator for an operation.
|
|
5061
|
+
|
|
4666
5062
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4667
5063
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4668
5064
|
"""
|
|
4669
5065
|
|
|
4670
|
-
@overload
|
|
4671
|
-
def get_paginator(
|
|
5066
|
+
@overload # type: ignore[override]
|
|
5067
|
+
def get_paginator( # type: ignore[override]
|
|
4672
5068
|
self, operation_name: Literal["list_pipeline_parameters_for_execution"]
|
|
4673
5069
|
) -> ListPipelineParametersForExecutionPaginator:
|
|
4674
5070
|
"""
|
|
5071
|
+
Create a paginator for an operation.
|
|
5072
|
+
|
|
4675
5073
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4676
5074
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4677
5075
|
"""
|
|
4678
5076
|
|
|
4679
|
-
@overload
|
|
4680
|
-
def get_paginator(
|
|
5077
|
+
@overload # type: ignore[override]
|
|
5078
|
+
def get_paginator( # type: ignore[override]
|
|
5079
|
+
self, operation_name: Literal["list_pipelines"]
|
|
5080
|
+
) -> ListPipelinesPaginator:
|
|
4681
5081
|
"""
|
|
5082
|
+
Create a paginator for an operation.
|
|
5083
|
+
|
|
4682
5084
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4683
5085
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4684
5086
|
"""
|
|
4685
5087
|
|
|
4686
|
-
@overload
|
|
4687
|
-
def get_paginator(
|
|
5088
|
+
@overload # type: ignore[override]
|
|
5089
|
+
def get_paginator( # type: ignore[override]
|
|
4688
5090
|
self, operation_name: Literal["list_processing_jobs"]
|
|
4689
5091
|
) -> ListProcessingJobsPaginator:
|
|
4690
5092
|
"""
|
|
5093
|
+
Create a paginator for an operation.
|
|
5094
|
+
|
|
4691
5095
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4692
5096
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4693
5097
|
"""
|
|
4694
5098
|
|
|
4695
|
-
@overload
|
|
4696
|
-
def get_paginator(
|
|
5099
|
+
@overload # type: ignore[override]
|
|
5100
|
+
def get_paginator( # type: ignore[override]
|
|
4697
5101
|
self, operation_name: Literal["list_resource_catalogs"]
|
|
4698
5102
|
) -> ListResourceCatalogsPaginator:
|
|
4699
5103
|
"""
|
|
5104
|
+
Create a paginator for an operation.
|
|
5105
|
+
|
|
4700
5106
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4701
5107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4702
5108
|
"""
|
|
4703
5109
|
|
|
4704
|
-
@overload
|
|
4705
|
-
def get_paginator(
|
|
5110
|
+
@overload # type: ignore[override]
|
|
5111
|
+
def get_paginator( # type: ignore[override]
|
|
5112
|
+
self, operation_name: Literal["list_spaces"]
|
|
5113
|
+
) -> ListSpacesPaginator:
|
|
4706
5114
|
"""
|
|
5115
|
+
Create a paginator for an operation.
|
|
5116
|
+
|
|
4707
5117
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4708
5118
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4709
5119
|
"""
|
|
4710
5120
|
|
|
4711
|
-
@overload
|
|
4712
|
-
def get_paginator(
|
|
5121
|
+
@overload # type: ignore[override]
|
|
5122
|
+
def get_paginator( # type: ignore[override]
|
|
4713
5123
|
self, operation_name: Literal["list_stage_devices"]
|
|
4714
5124
|
) -> ListStageDevicesPaginator:
|
|
4715
5125
|
"""
|
|
5126
|
+
Create a paginator for an operation.
|
|
5127
|
+
|
|
4716
5128
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4717
5129
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4718
5130
|
"""
|
|
4719
5131
|
|
|
4720
|
-
@overload
|
|
4721
|
-
def get_paginator(
|
|
5132
|
+
@overload # type: ignore[override]
|
|
5133
|
+
def get_paginator( # type: ignore[override]
|
|
4722
5134
|
self, operation_name: Literal["list_studio_lifecycle_configs"]
|
|
4723
5135
|
) -> ListStudioLifecycleConfigsPaginator:
|
|
4724
5136
|
"""
|
|
5137
|
+
Create a paginator for an operation.
|
|
5138
|
+
|
|
4725
5139
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4726
5140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4727
5141
|
"""
|
|
4728
5142
|
|
|
4729
|
-
@overload
|
|
4730
|
-
def get_paginator(
|
|
5143
|
+
@overload # type: ignore[override]
|
|
5144
|
+
def get_paginator( # type: ignore[override]
|
|
4731
5145
|
self, operation_name: Literal["list_subscribed_workteams"]
|
|
4732
5146
|
) -> ListSubscribedWorkteamsPaginator:
|
|
4733
5147
|
"""
|
|
5148
|
+
Create a paginator for an operation.
|
|
5149
|
+
|
|
4734
5150
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4735
5151
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4736
5152
|
"""
|
|
4737
5153
|
|
|
4738
|
-
@overload
|
|
4739
|
-
def get_paginator(
|
|
5154
|
+
@overload # type: ignore[override]
|
|
5155
|
+
def get_paginator( # type: ignore[override]
|
|
5156
|
+
self, operation_name: Literal["list_tags"]
|
|
5157
|
+
) -> ListTagsPaginator:
|
|
4740
5158
|
"""
|
|
5159
|
+
Create a paginator for an operation.
|
|
5160
|
+
|
|
4741
5161
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4742
5162
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4743
5163
|
"""
|
|
4744
5164
|
|
|
4745
|
-
@overload
|
|
4746
|
-
def get_paginator(
|
|
5165
|
+
@overload # type: ignore[override]
|
|
5166
|
+
def get_paginator( # type: ignore[override]
|
|
4747
5167
|
self, operation_name: Literal["list_training_jobs_for_hyper_parameter_tuning_job"]
|
|
4748
5168
|
) -> ListTrainingJobsForHyperParameterTuningJobPaginator:
|
|
4749
5169
|
"""
|
|
5170
|
+
Create a paginator for an operation.
|
|
5171
|
+
|
|
4750
5172
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4751
5173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4752
5174
|
"""
|
|
4753
5175
|
|
|
4754
|
-
@overload
|
|
4755
|
-
def get_paginator(
|
|
5176
|
+
@overload # type: ignore[override]
|
|
5177
|
+
def get_paginator( # type: ignore[override]
|
|
4756
5178
|
self, operation_name: Literal["list_training_jobs"]
|
|
4757
5179
|
) -> ListTrainingJobsPaginator:
|
|
4758
5180
|
"""
|
|
5181
|
+
Create a paginator for an operation.
|
|
5182
|
+
|
|
4759
5183
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4760
5184
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4761
5185
|
"""
|
|
4762
5186
|
|
|
4763
|
-
@overload
|
|
4764
|
-
def get_paginator(
|
|
5187
|
+
@overload # type: ignore[override]
|
|
5188
|
+
def get_paginator( # type: ignore[override]
|
|
5189
|
+
self, operation_name: Literal["list_training_plans"]
|
|
5190
|
+
) -> ListTrainingPlansPaginator:
|
|
5191
|
+
"""
|
|
5192
|
+
Create a paginator for an operation.
|
|
5193
|
+
|
|
5194
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5195
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5196
|
+
"""
|
|
5197
|
+
|
|
5198
|
+
@overload # type: ignore[override]
|
|
5199
|
+
def get_paginator( # type: ignore[override]
|
|
4765
5200
|
self, operation_name: Literal["list_transform_jobs"]
|
|
4766
5201
|
) -> ListTransformJobsPaginator:
|
|
4767
5202
|
"""
|
|
5203
|
+
Create a paginator for an operation.
|
|
5204
|
+
|
|
4768
5205
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4769
5206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4770
5207
|
"""
|
|
4771
5208
|
|
|
4772
|
-
@overload
|
|
4773
|
-
def get_paginator(
|
|
5209
|
+
@overload # type: ignore[override]
|
|
5210
|
+
def get_paginator( # type: ignore[override]
|
|
4774
5211
|
self, operation_name: Literal["list_trial_components"]
|
|
4775
5212
|
) -> ListTrialComponentsPaginator:
|
|
4776
5213
|
"""
|
|
5214
|
+
Create a paginator for an operation.
|
|
5215
|
+
|
|
4777
5216
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4778
5217
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4779
5218
|
"""
|
|
4780
5219
|
|
|
4781
|
-
@overload
|
|
4782
|
-
def get_paginator(
|
|
5220
|
+
@overload # type: ignore[override]
|
|
5221
|
+
def get_paginator( # type: ignore[override]
|
|
5222
|
+
self, operation_name: Literal["list_trials"]
|
|
5223
|
+
) -> ListTrialsPaginator:
|
|
4783
5224
|
"""
|
|
5225
|
+
Create a paginator for an operation.
|
|
5226
|
+
|
|
4784
5227
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4785
5228
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4786
5229
|
"""
|
|
4787
5230
|
|
|
4788
|
-
@overload
|
|
4789
|
-
def get_paginator(
|
|
5231
|
+
@overload # type: ignore[override]
|
|
5232
|
+
def get_paginator( # type: ignore[override]
|
|
4790
5233
|
self, operation_name: Literal["list_user_profiles"]
|
|
4791
5234
|
) -> ListUserProfilesPaginator:
|
|
4792
5235
|
"""
|
|
5236
|
+
Create a paginator for an operation.
|
|
5237
|
+
|
|
4793
5238
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4794
5239
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4795
5240
|
"""
|
|
4796
5241
|
|
|
4797
|
-
@overload
|
|
4798
|
-
def get_paginator(
|
|
5242
|
+
@overload # type: ignore[override]
|
|
5243
|
+
def get_paginator( # type: ignore[override]
|
|
5244
|
+
self, operation_name: Literal["list_workforces"]
|
|
5245
|
+
) -> ListWorkforcesPaginator:
|
|
4799
5246
|
"""
|
|
5247
|
+
Create a paginator for an operation.
|
|
5248
|
+
|
|
4800
5249
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4801
5250
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4802
5251
|
"""
|
|
4803
5252
|
|
|
4804
|
-
@overload
|
|
4805
|
-
def get_paginator(
|
|
5253
|
+
@overload # type: ignore[override]
|
|
5254
|
+
def get_paginator( # type: ignore[override]
|
|
5255
|
+
self, operation_name: Literal["list_workteams"]
|
|
5256
|
+
) -> ListWorkteamsPaginator:
|
|
4806
5257
|
"""
|
|
5258
|
+
Create a paginator for an operation.
|
|
5259
|
+
|
|
4807
5260
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4808
5261
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4809
5262
|
"""
|
|
4810
5263
|
|
|
4811
|
-
@overload
|
|
4812
|
-
def get_paginator(
|
|
5264
|
+
@overload # type: ignore[override]
|
|
5265
|
+
def get_paginator( # type: ignore[override]
|
|
5266
|
+
self, operation_name: Literal["search"]
|
|
5267
|
+
) -> SearchPaginator:
|
|
4813
5268
|
"""
|
|
5269
|
+
Create a paginator for an operation.
|
|
5270
|
+
|
|
4814
5271
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4815
5272
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4816
5273
|
"""
|
|
4817
5274
|
|
|
4818
|
-
@overload
|
|
4819
|
-
def get_waiter(
|
|
5275
|
+
@overload # type: ignore[override]
|
|
5276
|
+
def get_waiter( # type: ignore[override]
|
|
5277
|
+
self, waiter_name: Literal["endpoint_deleted"]
|
|
5278
|
+
) -> EndpointDeletedWaiter:
|
|
4820
5279
|
"""
|
|
5280
|
+
Returns an object that can wait for some condition.
|
|
5281
|
+
|
|
4821
5282
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4822
5283
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4823
5284
|
"""
|
|
4824
5285
|
|
|
4825
|
-
@overload
|
|
4826
|
-
def get_waiter(
|
|
5286
|
+
@overload # type: ignore[override]
|
|
5287
|
+
def get_waiter( # type: ignore[override]
|
|
5288
|
+
self, waiter_name: Literal["endpoint_in_service"]
|
|
5289
|
+
) -> EndpointInServiceWaiter:
|
|
4827
5290
|
"""
|
|
5291
|
+
Returns an object that can wait for some condition.
|
|
5292
|
+
|
|
4828
5293
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4829
5294
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4830
5295
|
"""
|
|
4831
5296
|
|
|
4832
|
-
@overload
|
|
4833
|
-
def get_waiter(
|
|
5297
|
+
@overload # type: ignore[override]
|
|
5298
|
+
def get_waiter( # type: ignore[override]
|
|
5299
|
+
self, waiter_name: Literal["image_created"]
|
|
5300
|
+
) -> ImageCreatedWaiter:
|
|
4834
5301
|
"""
|
|
5302
|
+
Returns an object that can wait for some condition.
|
|
5303
|
+
|
|
4835
5304
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4836
5305
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4837
5306
|
"""
|
|
4838
5307
|
|
|
4839
|
-
@overload
|
|
4840
|
-
def get_waiter(
|
|
5308
|
+
@overload # type: ignore[override]
|
|
5309
|
+
def get_waiter( # type: ignore[override]
|
|
5310
|
+
self, waiter_name: Literal["image_deleted"]
|
|
5311
|
+
) -> ImageDeletedWaiter:
|
|
4841
5312
|
"""
|
|
5313
|
+
Returns an object that can wait for some condition.
|
|
5314
|
+
|
|
4842
5315
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4843
5316
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4844
5317
|
"""
|
|
4845
5318
|
|
|
4846
|
-
@overload
|
|
4847
|
-
def get_waiter(
|
|
5319
|
+
@overload # type: ignore[override]
|
|
5320
|
+
def get_waiter( # type: ignore[override]
|
|
5321
|
+
self, waiter_name: Literal["image_updated"]
|
|
5322
|
+
) -> ImageUpdatedWaiter:
|
|
4848
5323
|
"""
|
|
5324
|
+
Returns an object that can wait for some condition.
|
|
5325
|
+
|
|
4849
5326
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4850
5327
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4851
5328
|
"""
|
|
4852
5329
|
|
|
4853
|
-
@overload
|
|
4854
|
-
def get_waiter(
|
|
5330
|
+
@overload # type: ignore[override]
|
|
5331
|
+
def get_waiter( # type: ignore[override]
|
|
4855
5332
|
self, waiter_name: Literal["image_version_created"]
|
|
4856
5333
|
) -> ImageVersionCreatedWaiter:
|
|
4857
5334
|
"""
|
|
5335
|
+
Returns an object that can wait for some condition.
|
|
5336
|
+
|
|
4858
5337
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4859
5338
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4860
5339
|
"""
|
|
4861
5340
|
|
|
4862
|
-
@overload
|
|
4863
|
-
def get_waiter(
|
|
5341
|
+
@overload # type: ignore[override]
|
|
5342
|
+
def get_waiter( # type: ignore[override]
|
|
4864
5343
|
self, waiter_name: Literal["image_version_deleted"]
|
|
4865
5344
|
) -> ImageVersionDeletedWaiter:
|
|
4866
5345
|
"""
|
|
5346
|
+
Returns an object that can wait for some condition.
|
|
5347
|
+
|
|
4867
5348
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4868
5349
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4869
5350
|
"""
|
|
4870
5351
|
|
|
4871
|
-
@overload
|
|
4872
|
-
def get_waiter(
|
|
5352
|
+
@overload # type: ignore[override]
|
|
5353
|
+
def get_waiter( # type: ignore[override]
|
|
4873
5354
|
self, waiter_name: Literal["notebook_instance_deleted"]
|
|
4874
5355
|
) -> NotebookInstanceDeletedWaiter:
|
|
4875
5356
|
"""
|
|
5357
|
+
Returns an object that can wait for some condition.
|
|
5358
|
+
|
|
4876
5359
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4877
5360
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4878
5361
|
"""
|
|
4879
5362
|
|
|
4880
|
-
@overload
|
|
4881
|
-
def get_waiter(
|
|
5363
|
+
@overload # type: ignore[override]
|
|
5364
|
+
def get_waiter( # type: ignore[override]
|
|
4882
5365
|
self, waiter_name: Literal["notebook_instance_in_service"]
|
|
4883
5366
|
) -> NotebookInstanceInServiceWaiter:
|
|
4884
5367
|
"""
|
|
5368
|
+
Returns an object that can wait for some condition.
|
|
5369
|
+
|
|
4885
5370
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4886
5371
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4887
5372
|
"""
|
|
4888
5373
|
|
|
4889
|
-
@overload
|
|
4890
|
-
def get_waiter(
|
|
5374
|
+
@overload # type: ignore[override]
|
|
5375
|
+
def get_waiter( # type: ignore[override]
|
|
4891
5376
|
self, waiter_name: Literal["notebook_instance_stopped"]
|
|
4892
5377
|
) -> NotebookInstanceStoppedWaiter:
|
|
4893
5378
|
"""
|
|
5379
|
+
Returns an object that can wait for some condition.
|
|
5380
|
+
|
|
4894
5381
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4895
5382
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4896
5383
|
"""
|
|
4897
5384
|
|
|
4898
|
-
@overload
|
|
4899
|
-
def get_waiter(
|
|
5385
|
+
@overload # type: ignore[override]
|
|
5386
|
+
def get_waiter( # type: ignore[override]
|
|
4900
5387
|
self, waiter_name: Literal["processing_job_completed_or_stopped"]
|
|
4901
5388
|
) -> ProcessingJobCompletedOrStoppedWaiter:
|
|
4902
5389
|
"""
|
|
5390
|
+
Returns an object that can wait for some condition.
|
|
5391
|
+
|
|
4903
5392
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4904
5393
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4905
5394
|
"""
|
|
4906
5395
|
|
|
4907
|
-
@overload
|
|
4908
|
-
def get_waiter(
|
|
5396
|
+
@overload # type: ignore[override]
|
|
5397
|
+
def get_waiter( # type: ignore[override]
|
|
4909
5398
|
self, waiter_name: Literal["training_job_completed_or_stopped"]
|
|
4910
5399
|
) -> TrainingJobCompletedOrStoppedWaiter:
|
|
4911
5400
|
"""
|
|
5401
|
+
Returns an object that can wait for some condition.
|
|
5402
|
+
|
|
4912
5403
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4913
5404
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4914
5405
|
"""
|
|
4915
5406
|
|
|
4916
|
-
@overload
|
|
4917
|
-
def get_waiter(
|
|
5407
|
+
@overload # type: ignore[override]
|
|
5408
|
+
def get_waiter( # type: ignore[override]
|
|
4918
5409
|
self, waiter_name: Literal["transform_job_completed_or_stopped"]
|
|
4919
5410
|
) -> TransformJobCompletedOrStoppedWaiter:
|
|
4920
5411
|
"""
|
|
5412
|
+
Returns an object that can wait for some condition.
|
|
5413
|
+
|
|
4921
5414
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4922
5415
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4923
5416
|
"""
|