mypy-boto3-sagemaker 1.35.75__py3-none-any.whl → 1.35.91__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 +1 -1
- mypy_boto3_sagemaker/__init__.pyi +1 -1
- mypy_boto3_sagemaker/__main__.py +9 -8
- mypy_boto3_sagemaker/client.py +280 -240
- mypy_boto3_sagemaker/client.pyi +280 -239
- mypy_boto3_sagemaker/literals.py +32 -2
- mypy_boto3_sagemaker/literals.pyi +32 -2
- mypy_boto3_sagemaker/paginator.py +893 -452
- mypy_boto3_sagemaker/paginator.pyi +816 -451
- mypy_boto3_sagemaker/type_defs.py +573 -615
- mypy_boto3_sagemaker/type_defs.pyi +572 -608
- mypy_boto3_sagemaker/version.py +2 -2
- mypy_boto3_sagemaker/waiter.py +42 -37
- mypy_boto3_sagemaker/waiter.pyi +42 -37
- {mypy_boto3_sagemaker-1.35.75.dist-info → mypy_boto3_sagemaker-1.35.91.dist-info}/LICENSE +1 -1
- {mypy_boto3_sagemaker-1.35.75.dist-info → mypy_boto3_sagemaker-1.35.91.dist-info}/METADATA +22 -8
- mypy_boto3_sagemaker-1.35.91.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.35.75.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.75.dist-info → mypy_boto3_sagemaker-1.35.91.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.35.75.dist-info → mypy_boto3_sagemaker-1.35.91.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for sagemaker service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -173,170 +173,172 @@ Usage::
|
|
|
173
173
|
search_paginator: SearchPaginator = client.get_paginator("search")
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
-
Copyright
|
|
176
|
+
Copyright 2025 Vlad Emelianov
|
|
177
177
|
"""
|
|
178
178
|
|
|
179
|
+
from __future__ import annotations
|
|
180
|
+
|
|
179
181
|
import sys
|
|
180
|
-
from typing import
|
|
182
|
+
from typing import TYPE_CHECKING
|
|
181
183
|
|
|
182
184
|
from botocore.paginate import PageIterator, Paginator
|
|
183
185
|
|
|
184
186
|
from .type_defs import (
|
|
185
|
-
|
|
187
|
+
ListActionsRequestPaginateTypeDef,
|
|
186
188
|
ListActionsResponseTypeDef,
|
|
187
|
-
|
|
189
|
+
ListAlgorithmsInputPaginateTypeDef,
|
|
188
190
|
ListAlgorithmsOutputTypeDef,
|
|
189
|
-
|
|
191
|
+
ListAliasesRequestPaginateTypeDef,
|
|
190
192
|
ListAliasesResponseTypeDef,
|
|
191
|
-
|
|
193
|
+
ListAppImageConfigsRequestPaginateTypeDef,
|
|
192
194
|
ListAppImageConfigsResponseTypeDef,
|
|
193
|
-
|
|
195
|
+
ListAppsRequestPaginateTypeDef,
|
|
194
196
|
ListAppsResponseTypeDef,
|
|
195
|
-
|
|
197
|
+
ListArtifactsRequestPaginateTypeDef,
|
|
196
198
|
ListArtifactsResponseTypeDef,
|
|
197
|
-
|
|
199
|
+
ListAssociationsRequestPaginateTypeDef,
|
|
198
200
|
ListAssociationsResponseTypeDef,
|
|
199
|
-
|
|
201
|
+
ListAutoMLJobsRequestPaginateTypeDef,
|
|
200
202
|
ListAutoMLJobsResponseTypeDef,
|
|
201
|
-
|
|
203
|
+
ListCandidatesForAutoMLJobRequestPaginateTypeDef,
|
|
202
204
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
203
|
-
|
|
205
|
+
ListClusterNodesRequestPaginateTypeDef,
|
|
204
206
|
ListClusterNodesResponseTypeDef,
|
|
205
|
-
|
|
207
|
+
ListClusterSchedulerConfigsRequestPaginateTypeDef,
|
|
206
208
|
ListClusterSchedulerConfigsResponseTypeDef,
|
|
207
|
-
|
|
209
|
+
ListClustersRequestPaginateTypeDef,
|
|
208
210
|
ListClustersResponseTypeDef,
|
|
209
|
-
|
|
211
|
+
ListCodeRepositoriesInputPaginateTypeDef,
|
|
210
212
|
ListCodeRepositoriesOutputTypeDef,
|
|
211
|
-
|
|
213
|
+
ListCompilationJobsRequestPaginateTypeDef,
|
|
212
214
|
ListCompilationJobsResponseTypeDef,
|
|
213
|
-
|
|
215
|
+
ListComputeQuotasRequestPaginateTypeDef,
|
|
214
216
|
ListComputeQuotasResponseTypeDef,
|
|
215
|
-
|
|
217
|
+
ListContextsRequestPaginateTypeDef,
|
|
216
218
|
ListContextsResponseTypeDef,
|
|
217
|
-
|
|
219
|
+
ListDataQualityJobDefinitionsRequestPaginateTypeDef,
|
|
218
220
|
ListDataQualityJobDefinitionsResponseTypeDef,
|
|
219
|
-
|
|
221
|
+
ListDeviceFleetsRequestPaginateTypeDef,
|
|
220
222
|
ListDeviceFleetsResponseTypeDef,
|
|
221
|
-
|
|
223
|
+
ListDevicesRequestPaginateTypeDef,
|
|
222
224
|
ListDevicesResponseTypeDef,
|
|
223
|
-
|
|
225
|
+
ListDomainsRequestPaginateTypeDef,
|
|
224
226
|
ListDomainsResponseTypeDef,
|
|
225
|
-
|
|
227
|
+
ListEdgeDeploymentPlansRequestPaginateTypeDef,
|
|
226
228
|
ListEdgeDeploymentPlansResponseTypeDef,
|
|
227
|
-
|
|
229
|
+
ListEdgePackagingJobsRequestPaginateTypeDef,
|
|
228
230
|
ListEdgePackagingJobsResponseTypeDef,
|
|
229
|
-
|
|
231
|
+
ListEndpointConfigsInputPaginateTypeDef,
|
|
230
232
|
ListEndpointConfigsOutputTypeDef,
|
|
231
|
-
|
|
233
|
+
ListEndpointsInputPaginateTypeDef,
|
|
232
234
|
ListEndpointsOutputTypeDef,
|
|
233
|
-
|
|
235
|
+
ListExperimentsRequestPaginateTypeDef,
|
|
234
236
|
ListExperimentsResponseTypeDef,
|
|
235
|
-
|
|
237
|
+
ListFeatureGroupsRequestPaginateTypeDef,
|
|
236
238
|
ListFeatureGroupsResponseTypeDef,
|
|
237
|
-
|
|
239
|
+
ListFlowDefinitionsRequestPaginateTypeDef,
|
|
238
240
|
ListFlowDefinitionsResponseTypeDef,
|
|
239
|
-
|
|
241
|
+
ListHumanTaskUisRequestPaginateTypeDef,
|
|
240
242
|
ListHumanTaskUisResponseTypeDef,
|
|
241
|
-
|
|
243
|
+
ListHyperParameterTuningJobsRequestPaginateTypeDef,
|
|
242
244
|
ListHyperParameterTuningJobsResponseTypeDef,
|
|
243
|
-
|
|
245
|
+
ListImagesRequestPaginateTypeDef,
|
|
244
246
|
ListImagesResponseTypeDef,
|
|
245
|
-
|
|
247
|
+
ListImageVersionsRequestPaginateTypeDef,
|
|
246
248
|
ListImageVersionsResponseTypeDef,
|
|
247
|
-
|
|
249
|
+
ListInferenceComponentsInputPaginateTypeDef,
|
|
248
250
|
ListInferenceComponentsOutputTypeDef,
|
|
249
|
-
|
|
251
|
+
ListInferenceExperimentsRequestPaginateTypeDef,
|
|
250
252
|
ListInferenceExperimentsResponseTypeDef,
|
|
251
|
-
|
|
253
|
+
ListInferenceRecommendationsJobsRequestPaginateTypeDef,
|
|
252
254
|
ListInferenceRecommendationsJobsResponseTypeDef,
|
|
253
|
-
|
|
255
|
+
ListInferenceRecommendationsJobStepsRequestPaginateTypeDef,
|
|
254
256
|
ListInferenceRecommendationsJobStepsResponseTypeDef,
|
|
255
|
-
|
|
257
|
+
ListLabelingJobsForWorkteamRequestPaginateTypeDef,
|
|
256
258
|
ListLabelingJobsForWorkteamResponseTypeDef,
|
|
257
|
-
|
|
259
|
+
ListLabelingJobsRequestPaginateTypeDef,
|
|
258
260
|
ListLabelingJobsResponseTypeDef,
|
|
259
|
-
|
|
261
|
+
ListLineageGroupsRequestPaginateTypeDef,
|
|
260
262
|
ListLineageGroupsResponseTypeDef,
|
|
261
|
-
|
|
263
|
+
ListMlflowTrackingServersRequestPaginateTypeDef,
|
|
262
264
|
ListMlflowTrackingServersResponseTypeDef,
|
|
263
|
-
|
|
265
|
+
ListModelBiasJobDefinitionsRequestPaginateTypeDef,
|
|
264
266
|
ListModelBiasJobDefinitionsResponseTypeDef,
|
|
265
|
-
|
|
267
|
+
ListModelCardExportJobsRequestPaginateTypeDef,
|
|
266
268
|
ListModelCardExportJobsResponseTypeDef,
|
|
267
|
-
|
|
269
|
+
ListModelCardsRequestPaginateTypeDef,
|
|
268
270
|
ListModelCardsResponseTypeDef,
|
|
269
|
-
|
|
271
|
+
ListModelCardVersionsRequestPaginateTypeDef,
|
|
270
272
|
ListModelCardVersionsResponseTypeDef,
|
|
271
|
-
|
|
273
|
+
ListModelExplainabilityJobDefinitionsRequestPaginateTypeDef,
|
|
272
274
|
ListModelExplainabilityJobDefinitionsResponseTypeDef,
|
|
273
|
-
|
|
275
|
+
ListModelMetadataRequestPaginateTypeDef,
|
|
274
276
|
ListModelMetadataResponseTypeDef,
|
|
275
|
-
|
|
277
|
+
ListModelPackageGroupsInputPaginateTypeDef,
|
|
276
278
|
ListModelPackageGroupsOutputTypeDef,
|
|
277
|
-
|
|
279
|
+
ListModelPackagesInputPaginateTypeDef,
|
|
278
280
|
ListModelPackagesOutputTypeDef,
|
|
279
|
-
|
|
281
|
+
ListModelQualityJobDefinitionsRequestPaginateTypeDef,
|
|
280
282
|
ListModelQualityJobDefinitionsResponseTypeDef,
|
|
281
|
-
|
|
283
|
+
ListModelsInputPaginateTypeDef,
|
|
282
284
|
ListModelsOutputTypeDef,
|
|
283
|
-
|
|
285
|
+
ListMonitoringAlertHistoryRequestPaginateTypeDef,
|
|
284
286
|
ListMonitoringAlertHistoryResponseTypeDef,
|
|
285
|
-
|
|
287
|
+
ListMonitoringAlertsRequestPaginateTypeDef,
|
|
286
288
|
ListMonitoringAlertsResponseTypeDef,
|
|
287
|
-
|
|
289
|
+
ListMonitoringExecutionsRequestPaginateTypeDef,
|
|
288
290
|
ListMonitoringExecutionsResponseTypeDef,
|
|
289
|
-
|
|
291
|
+
ListMonitoringSchedulesRequestPaginateTypeDef,
|
|
290
292
|
ListMonitoringSchedulesResponseTypeDef,
|
|
291
|
-
|
|
293
|
+
ListNotebookInstanceLifecycleConfigsInputPaginateTypeDef,
|
|
292
294
|
ListNotebookInstanceLifecycleConfigsOutputTypeDef,
|
|
293
|
-
|
|
295
|
+
ListNotebookInstancesInputPaginateTypeDef,
|
|
294
296
|
ListNotebookInstancesOutputTypeDef,
|
|
295
|
-
|
|
297
|
+
ListOptimizationJobsRequestPaginateTypeDef,
|
|
296
298
|
ListOptimizationJobsResponseTypeDef,
|
|
297
|
-
|
|
299
|
+
ListPartnerAppsRequestPaginateTypeDef,
|
|
298
300
|
ListPartnerAppsResponseTypeDef,
|
|
299
|
-
|
|
301
|
+
ListPipelineExecutionsRequestPaginateTypeDef,
|
|
300
302
|
ListPipelineExecutionsResponseTypeDef,
|
|
301
|
-
|
|
303
|
+
ListPipelineExecutionStepsRequestPaginateTypeDef,
|
|
302
304
|
ListPipelineExecutionStepsResponseTypeDef,
|
|
303
|
-
|
|
305
|
+
ListPipelineParametersForExecutionRequestPaginateTypeDef,
|
|
304
306
|
ListPipelineParametersForExecutionResponseTypeDef,
|
|
305
|
-
|
|
307
|
+
ListPipelinesRequestPaginateTypeDef,
|
|
306
308
|
ListPipelinesResponseTypeDef,
|
|
307
|
-
|
|
309
|
+
ListProcessingJobsRequestPaginateTypeDef,
|
|
308
310
|
ListProcessingJobsResponseTypeDef,
|
|
309
|
-
|
|
311
|
+
ListResourceCatalogsRequestPaginateTypeDef,
|
|
310
312
|
ListResourceCatalogsResponseTypeDef,
|
|
311
|
-
|
|
313
|
+
ListSpacesRequestPaginateTypeDef,
|
|
312
314
|
ListSpacesResponseTypeDef,
|
|
313
|
-
|
|
315
|
+
ListStageDevicesRequestPaginateTypeDef,
|
|
314
316
|
ListStageDevicesResponseTypeDef,
|
|
315
|
-
|
|
317
|
+
ListStudioLifecycleConfigsRequestPaginateTypeDef,
|
|
316
318
|
ListStudioLifecycleConfigsResponseTypeDef,
|
|
317
|
-
|
|
319
|
+
ListSubscribedWorkteamsRequestPaginateTypeDef,
|
|
318
320
|
ListSubscribedWorkteamsResponseTypeDef,
|
|
319
|
-
|
|
321
|
+
ListTagsInputPaginateTypeDef,
|
|
320
322
|
ListTagsOutputTypeDef,
|
|
321
|
-
|
|
323
|
+
ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef,
|
|
322
324
|
ListTrainingJobsForHyperParameterTuningJobResponseTypeDef,
|
|
323
|
-
|
|
325
|
+
ListTrainingJobsRequestPaginateTypeDef,
|
|
324
326
|
ListTrainingJobsResponseTypeDef,
|
|
325
|
-
|
|
327
|
+
ListTrainingPlansRequestPaginateTypeDef,
|
|
326
328
|
ListTrainingPlansResponseTypeDef,
|
|
327
|
-
|
|
329
|
+
ListTransformJobsRequestPaginateTypeDef,
|
|
328
330
|
ListTransformJobsResponseTypeDef,
|
|
329
|
-
|
|
331
|
+
ListTrialComponentsRequestPaginateTypeDef,
|
|
330
332
|
ListTrialComponentsResponseTypeDef,
|
|
331
|
-
|
|
333
|
+
ListTrialsRequestPaginateTypeDef,
|
|
332
334
|
ListTrialsResponseTypeDef,
|
|
333
|
-
|
|
335
|
+
ListUserProfilesRequestPaginateTypeDef,
|
|
334
336
|
ListUserProfilesResponseTypeDef,
|
|
335
|
-
|
|
337
|
+
ListWorkforcesRequestPaginateTypeDef,
|
|
336
338
|
ListWorkforcesResponseTypeDef,
|
|
337
|
-
|
|
339
|
+
ListWorkteamsRequestPaginateTypeDef,
|
|
338
340
|
ListWorkteamsResponseTypeDef,
|
|
339
|
-
|
|
341
|
+
SearchRequestPaginateTypeDef,
|
|
340
342
|
SearchResponseTypeDef,
|
|
341
343
|
)
|
|
342
344
|
|
|
@@ -428,1231 +430,1670 @@ __all__ = (
|
|
|
428
430
|
)
|
|
429
431
|
|
|
430
432
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
436
|
-
"""
|
|
437
|
-
Proxy method to specify iterator item type.
|
|
438
|
-
"""
|
|
433
|
+
if TYPE_CHECKING:
|
|
434
|
+
_ListActionsPaginatorBase = Paginator[ListActionsResponseTypeDef]
|
|
435
|
+
else:
|
|
436
|
+
_ListActionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
439
437
|
|
|
440
438
|
|
|
441
|
-
class ListActionsPaginator(
|
|
439
|
+
class ListActionsPaginator(_ListActionsPaginatorBase):
|
|
442
440
|
"""
|
|
443
441
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions)
|
|
444
442
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
|
|
445
443
|
"""
|
|
446
444
|
|
|
447
|
-
def paginate(
|
|
448
|
-
self, **kwargs: Unpack[
|
|
449
|
-
) ->
|
|
445
|
+
def paginate( # type: ignore[override]
|
|
446
|
+
self, **kwargs: Unpack[ListActionsRequestPaginateTypeDef]
|
|
447
|
+
) -> PageIterator[ListActionsResponseTypeDef]:
|
|
450
448
|
"""
|
|
451
449
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions.paginate)
|
|
452
450
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
|
|
453
451
|
"""
|
|
454
452
|
|
|
455
453
|
|
|
456
|
-
|
|
454
|
+
if TYPE_CHECKING:
|
|
455
|
+
_ListAlgorithmsPaginatorBase = Paginator[ListAlgorithmsOutputTypeDef]
|
|
456
|
+
else:
|
|
457
|
+
_ListAlgorithmsPaginatorBase = Paginator # type: ignore[assignment]
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
class ListAlgorithmsPaginator(_ListAlgorithmsPaginatorBase):
|
|
457
461
|
"""
|
|
458
462
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms)
|
|
459
463
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
|
|
460
464
|
"""
|
|
461
465
|
|
|
462
|
-
def paginate(
|
|
463
|
-
self, **kwargs: Unpack[
|
|
464
|
-
) ->
|
|
466
|
+
def paginate( # type: ignore[override]
|
|
467
|
+
self, **kwargs: Unpack[ListAlgorithmsInputPaginateTypeDef]
|
|
468
|
+
) -> PageIterator[ListAlgorithmsOutputTypeDef]:
|
|
465
469
|
"""
|
|
466
470
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms.paginate)
|
|
467
471
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
|
|
468
472
|
"""
|
|
469
473
|
|
|
470
474
|
|
|
471
|
-
|
|
475
|
+
if TYPE_CHECKING:
|
|
476
|
+
_ListAliasesPaginatorBase = Paginator[ListAliasesResponseTypeDef]
|
|
477
|
+
else:
|
|
478
|
+
_ListAliasesPaginatorBase = Paginator # type: ignore[assignment]
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
class ListAliasesPaginator(_ListAliasesPaginatorBase):
|
|
472
482
|
"""
|
|
473
483
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases)
|
|
474
484
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
|
|
475
485
|
"""
|
|
476
486
|
|
|
477
|
-
def paginate(
|
|
478
|
-
self, **kwargs: Unpack[
|
|
479
|
-
) ->
|
|
487
|
+
def paginate( # type: ignore[override]
|
|
488
|
+
self, **kwargs: Unpack[ListAliasesRequestPaginateTypeDef]
|
|
489
|
+
) -> PageIterator[ListAliasesResponseTypeDef]:
|
|
480
490
|
"""
|
|
481
491
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases.paginate)
|
|
482
492
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
|
|
483
493
|
"""
|
|
484
494
|
|
|
485
495
|
|
|
486
|
-
|
|
496
|
+
if TYPE_CHECKING:
|
|
497
|
+
_ListAppImageConfigsPaginatorBase = Paginator[ListAppImageConfigsResponseTypeDef]
|
|
498
|
+
else:
|
|
499
|
+
_ListAppImageConfigsPaginatorBase = Paginator # type: ignore[assignment]
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
class ListAppImageConfigsPaginator(_ListAppImageConfigsPaginatorBase):
|
|
487
503
|
"""
|
|
488
504
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs)
|
|
489
505
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
|
|
490
506
|
"""
|
|
491
507
|
|
|
492
|
-
def paginate(
|
|
493
|
-
self, **kwargs: Unpack[
|
|
494
|
-
) ->
|
|
508
|
+
def paginate( # type: ignore[override]
|
|
509
|
+
self, **kwargs: Unpack[ListAppImageConfigsRequestPaginateTypeDef]
|
|
510
|
+
) -> PageIterator[ListAppImageConfigsResponseTypeDef]:
|
|
495
511
|
"""
|
|
496
512
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
|
|
497
513
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
|
|
498
514
|
"""
|
|
499
515
|
|
|
500
516
|
|
|
501
|
-
|
|
517
|
+
if TYPE_CHECKING:
|
|
518
|
+
_ListAppsPaginatorBase = Paginator[ListAppsResponseTypeDef]
|
|
519
|
+
else:
|
|
520
|
+
_ListAppsPaginatorBase = Paginator # type: ignore[assignment]
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class ListAppsPaginator(_ListAppsPaginatorBase):
|
|
502
524
|
"""
|
|
503
525
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps)
|
|
504
526
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
|
|
505
527
|
"""
|
|
506
528
|
|
|
507
|
-
def paginate(
|
|
508
|
-
self, **kwargs: Unpack[
|
|
509
|
-
) ->
|
|
529
|
+
def paginate( # type: ignore[override]
|
|
530
|
+
self, **kwargs: Unpack[ListAppsRequestPaginateTypeDef]
|
|
531
|
+
) -> PageIterator[ListAppsResponseTypeDef]:
|
|
510
532
|
"""
|
|
511
533
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps.paginate)
|
|
512
534
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
|
|
513
535
|
"""
|
|
514
536
|
|
|
515
537
|
|
|
516
|
-
|
|
538
|
+
if TYPE_CHECKING:
|
|
539
|
+
_ListArtifactsPaginatorBase = Paginator[ListArtifactsResponseTypeDef]
|
|
540
|
+
else:
|
|
541
|
+
_ListArtifactsPaginatorBase = Paginator # type: ignore[assignment]
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
class ListArtifactsPaginator(_ListArtifactsPaginatorBase):
|
|
517
545
|
"""
|
|
518
546
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts)
|
|
519
547
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
|
|
520
548
|
"""
|
|
521
549
|
|
|
522
|
-
def paginate(
|
|
523
|
-
self, **kwargs: Unpack[
|
|
524
|
-
) ->
|
|
550
|
+
def paginate( # type: ignore[override]
|
|
551
|
+
self, **kwargs: Unpack[ListArtifactsRequestPaginateTypeDef]
|
|
552
|
+
) -> PageIterator[ListArtifactsResponseTypeDef]:
|
|
525
553
|
"""
|
|
526
554
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts.paginate)
|
|
527
555
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
|
|
528
556
|
"""
|
|
529
557
|
|
|
530
558
|
|
|
531
|
-
|
|
559
|
+
if TYPE_CHECKING:
|
|
560
|
+
_ListAssociationsPaginatorBase = Paginator[ListAssociationsResponseTypeDef]
|
|
561
|
+
else:
|
|
562
|
+
_ListAssociationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
class ListAssociationsPaginator(_ListAssociationsPaginatorBase):
|
|
532
566
|
"""
|
|
533
567
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations)
|
|
534
568
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
|
|
535
569
|
"""
|
|
536
570
|
|
|
537
|
-
def paginate(
|
|
538
|
-
self, **kwargs: Unpack[
|
|
539
|
-
) ->
|
|
571
|
+
def paginate( # type: ignore[override]
|
|
572
|
+
self, **kwargs: Unpack[ListAssociationsRequestPaginateTypeDef]
|
|
573
|
+
) -> PageIterator[ListAssociationsResponseTypeDef]:
|
|
540
574
|
"""
|
|
541
575
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations.paginate)
|
|
542
576
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
|
|
543
577
|
"""
|
|
544
578
|
|
|
545
579
|
|
|
546
|
-
|
|
580
|
+
if TYPE_CHECKING:
|
|
581
|
+
_ListAutoMLJobsPaginatorBase = Paginator[ListAutoMLJobsResponseTypeDef]
|
|
582
|
+
else:
|
|
583
|
+
_ListAutoMLJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
class ListAutoMLJobsPaginator(_ListAutoMLJobsPaginatorBase):
|
|
547
587
|
"""
|
|
548
588
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs)
|
|
549
589
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
|
|
550
590
|
"""
|
|
551
591
|
|
|
552
|
-
def paginate(
|
|
553
|
-
self, **kwargs: Unpack[
|
|
554
|
-
) ->
|
|
592
|
+
def paginate( # type: ignore[override]
|
|
593
|
+
self, **kwargs: Unpack[ListAutoMLJobsRequestPaginateTypeDef]
|
|
594
|
+
) -> PageIterator[ListAutoMLJobsResponseTypeDef]:
|
|
555
595
|
"""
|
|
556
596
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
|
|
557
597
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
|
|
558
598
|
"""
|
|
559
599
|
|
|
560
600
|
|
|
561
|
-
|
|
601
|
+
if TYPE_CHECKING:
|
|
602
|
+
_ListCandidatesForAutoMLJobPaginatorBase = Paginator[ListCandidatesForAutoMLJobResponseTypeDef]
|
|
603
|
+
else:
|
|
604
|
+
_ListCandidatesForAutoMLJobPaginatorBase = Paginator # type: ignore[assignment]
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBase):
|
|
562
608
|
"""
|
|
563
609
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
|
|
564
610
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
|
|
565
611
|
"""
|
|
566
612
|
|
|
567
|
-
def paginate(
|
|
568
|
-
self,
|
|
569
|
-
|
|
570
|
-
ListCandidatesForAutoMLJobRequestListCandidatesForAutoMLJobPaginateTypeDef
|
|
571
|
-
],
|
|
572
|
-
) -> _PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
|
|
613
|
+
def paginate( # type: ignore[override]
|
|
614
|
+
self, **kwargs: Unpack[ListCandidatesForAutoMLJobRequestPaginateTypeDef]
|
|
615
|
+
) -> PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
|
|
573
616
|
"""
|
|
574
617
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
|
|
575
618
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
|
|
576
619
|
"""
|
|
577
620
|
|
|
578
621
|
|
|
579
|
-
|
|
622
|
+
if TYPE_CHECKING:
|
|
623
|
+
_ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
|
|
624
|
+
else:
|
|
625
|
+
_ListClusterNodesPaginatorBase = Paginator # type: ignore[assignment]
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class ListClusterNodesPaginator(_ListClusterNodesPaginatorBase):
|
|
580
629
|
"""
|
|
581
630
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes)
|
|
582
631
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
|
|
583
632
|
"""
|
|
584
633
|
|
|
585
|
-
def paginate(
|
|
586
|
-
self, **kwargs: Unpack[
|
|
587
|
-
) ->
|
|
634
|
+
def paginate( # type: ignore[override]
|
|
635
|
+
self, **kwargs: Unpack[ListClusterNodesRequestPaginateTypeDef]
|
|
636
|
+
) -> PageIterator[ListClusterNodesResponseTypeDef]:
|
|
588
637
|
"""
|
|
589
638
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes.paginate)
|
|
590
639
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
|
|
591
640
|
"""
|
|
592
641
|
|
|
593
642
|
|
|
594
|
-
|
|
643
|
+
if TYPE_CHECKING:
|
|
644
|
+
_ListClusterSchedulerConfigsPaginatorBase = Paginator[
|
|
645
|
+
ListClusterSchedulerConfigsResponseTypeDef
|
|
646
|
+
]
|
|
647
|
+
else:
|
|
648
|
+
_ListClusterSchedulerConfigsPaginatorBase = Paginator # type: ignore[assignment]
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
class ListClusterSchedulerConfigsPaginator(_ListClusterSchedulerConfigsPaginatorBase):
|
|
595
652
|
"""
|
|
596
653
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterSchedulerConfigs.html#SageMaker.Paginator.ListClusterSchedulerConfigs)
|
|
597
654
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterschedulerconfigspaginator)
|
|
598
655
|
"""
|
|
599
656
|
|
|
600
|
-
def paginate(
|
|
601
|
-
self,
|
|
602
|
-
|
|
603
|
-
ListClusterSchedulerConfigsRequestListClusterSchedulerConfigsPaginateTypeDef
|
|
604
|
-
],
|
|
605
|
-
) -> _PageIterator[ListClusterSchedulerConfigsResponseTypeDef]:
|
|
657
|
+
def paginate( # type: ignore[override]
|
|
658
|
+
self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestPaginateTypeDef]
|
|
659
|
+
) -> PageIterator[ListClusterSchedulerConfigsResponseTypeDef]:
|
|
606
660
|
"""
|
|
607
661
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterSchedulerConfigs.html#SageMaker.Paginator.ListClusterSchedulerConfigs.paginate)
|
|
608
662
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterschedulerconfigspaginator)
|
|
609
663
|
"""
|
|
610
664
|
|
|
611
665
|
|
|
612
|
-
|
|
666
|
+
if TYPE_CHECKING:
|
|
667
|
+
_ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
|
|
668
|
+
else:
|
|
669
|
+
_ListClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class ListClustersPaginator(_ListClustersPaginatorBase):
|
|
613
673
|
"""
|
|
614
674
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters)
|
|
615
675
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
|
|
616
676
|
"""
|
|
617
677
|
|
|
618
|
-
def paginate(
|
|
619
|
-
self, **kwargs: Unpack[
|
|
620
|
-
) ->
|
|
678
|
+
def paginate( # type: ignore[override]
|
|
679
|
+
self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
|
|
680
|
+
) -> PageIterator[ListClustersResponseTypeDef]:
|
|
621
681
|
"""
|
|
622
682
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters.paginate)
|
|
623
683
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
|
|
624
684
|
"""
|
|
625
685
|
|
|
626
686
|
|
|
627
|
-
|
|
687
|
+
if TYPE_CHECKING:
|
|
688
|
+
_ListCodeRepositoriesPaginatorBase = Paginator[ListCodeRepositoriesOutputTypeDef]
|
|
689
|
+
else:
|
|
690
|
+
_ListCodeRepositoriesPaginatorBase = Paginator # type: ignore[assignment]
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class ListCodeRepositoriesPaginator(_ListCodeRepositoriesPaginatorBase):
|
|
628
694
|
"""
|
|
629
695
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories)
|
|
630
696
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
|
|
631
697
|
"""
|
|
632
698
|
|
|
633
|
-
def paginate(
|
|
634
|
-
self, **kwargs: Unpack[
|
|
635
|
-
) ->
|
|
699
|
+
def paginate( # type: ignore[override]
|
|
700
|
+
self, **kwargs: Unpack[ListCodeRepositoriesInputPaginateTypeDef]
|
|
701
|
+
) -> PageIterator[ListCodeRepositoriesOutputTypeDef]:
|
|
636
702
|
"""
|
|
637
703
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories.paginate)
|
|
638
704
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
|
|
639
705
|
"""
|
|
640
706
|
|
|
641
707
|
|
|
642
|
-
|
|
708
|
+
if TYPE_CHECKING:
|
|
709
|
+
_ListCompilationJobsPaginatorBase = Paginator[ListCompilationJobsResponseTypeDef]
|
|
710
|
+
else:
|
|
711
|
+
_ListCompilationJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
class ListCompilationJobsPaginator(_ListCompilationJobsPaginatorBase):
|
|
643
715
|
"""
|
|
644
716
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs)
|
|
645
717
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
|
|
646
718
|
"""
|
|
647
719
|
|
|
648
|
-
def paginate(
|
|
649
|
-
self, **kwargs: Unpack[
|
|
650
|
-
) ->
|
|
720
|
+
def paginate( # type: ignore[override]
|
|
721
|
+
self, **kwargs: Unpack[ListCompilationJobsRequestPaginateTypeDef]
|
|
722
|
+
) -> PageIterator[ListCompilationJobsResponseTypeDef]:
|
|
651
723
|
"""
|
|
652
724
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs.paginate)
|
|
653
725
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
|
|
654
726
|
"""
|
|
655
727
|
|
|
656
728
|
|
|
657
|
-
|
|
729
|
+
if TYPE_CHECKING:
|
|
730
|
+
_ListComputeQuotasPaginatorBase = Paginator[ListComputeQuotasResponseTypeDef]
|
|
731
|
+
else:
|
|
732
|
+
_ListComputeQuotasPaginatorBase = Paginator # type: ignore[assignment]
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
class ListComputeQuotasPaginator(_ListComputeQuotasPaginatorBase):
|
|
658
736
|
"""
|
|
659
737
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListComputeQuotas.html#SageMaker.Paginator.ListComputeQuotas)
|
|
660
738
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcomputequotaspaginator)
|
|
661
739
|
"""
|
|
662
740
|
|
|
663
|
-
def paginate(
|
|
664
|
-
self, **kwargs: Unpack[
|
|
665
|
-
) ->
|
|
741
|
+
def paginate( # type: ignore[override]
|
|
742
|
+
self, **kwargs: Unpack[ListComputeQuotasRequestPaginateTypeDef]
|
|
743
|
+
) -> PageIterator[ListComputeQuotasResponseTypeDef]:
|
|
666
744
|
"""
|
|
667
745
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListComputeQuotas.html#SageMaker.Paginator.ListComputeQuotas.paginate)
|
|
668
746
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcomputequotaspaginator)
|
|
669
747
|
"""
|
|
670
748
|
|
|
671
749
|
|
|
672
|
-
|
|
750
|
+
if TYPE_CHECKING:
|
|
751
|
+
_ListContextsPaginatorBase = Paginator[ListContextsResponseTypeDef]
|
|
752
|
+
else:
|
|
753
|
+
_ListContextsPaginatorBase = Paginator # type: ignore[assignment]
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
class ListContextsPaginator(_ListContextsPaginatorBase):
|
|
673
757
|
"""
|
|
674
758
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts)
|
|
675
759
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
|
|
676
760
|
"""
|
|
677
761
|
|
|
678
|
-
def paginate(
|
|
679
|
-
self, **kwargs: Unpack[
|
|
680
|
-
) ->
|
|
762
|
+
def paginate( # type: ignore[override]
|
|
763
|
+
self, **kwargs: Unpack[ListContextsRequestPaginateTypeDef]
|
|
764
|
+
) -> PageIterator[ListContextsResponseTypeDef]:
|
|
681
765
|
"""
|
|
682
766
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts.paginate)
|
|
683
767
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
|
|
684
768
|
"""
|
|
685
769
|
|
|
686
770
|
|
|
687
|
-
|
|
771
|
+
if TYPE_CHECKING:
|
|
772
|
+
_ListDataQualityJobDefinitionsPaginatorBase = Paginator[
|
|
773
|
+
ListDataQualityJobDefinitionsResponseTypeDef
|
|
774
|
+
]
|
|
775
|
+
else:
|
|
776
|
+
_ListDataQualityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
class ListDataQualityJobDefinitionsPaginator(_ListDataQualityJobDefinitionsPaginatorBase):
|
|
688
780
|
"""
|
|
689
781
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
|
|
690
782
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
|
|
691
783
|
"""
|
|
692
784
|
|
|
693
|
-
def paginate(
|
|
694
|
-
self,
|
|
695
|
-
|
|
696
|
-
ListDataQualityJobDefinitionsRequestListDataQualityJobDefinitionsPaginateTypeDef
|
|
697
|
-
],
|
|
698
|
-
) -> _PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
|
|
785
|
+
def paginate( # type: ignore[override]
|
|
786
|
+
self, **kwargs: Unpack[ListDataQualityJobDefinitionsRequestPaginateTypeDef]
|
|
787
|
+
) -> PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
|
|
699
788
|
"""
|
|
700
789
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
|
|
701
790
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
|
|
702
791
|
"""
|
|
703
792
|
|
|
704
793
|
|
|
705
|
-
|
|
794
|
+
if TYPE_CHECKING:
|
|
795
|
+
_ListDeviceFleetsPaginatorBase = Paginator[ListDeviceFleetsResponseTypeDef]
|
|
796
|
+
else:
|
|
797
|
+
_ListDeviceFleetsPaginatorBase = Paginator # type: ignore[assignment]
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
class ListDeviceFleetsPaginator(_ListDeviceFleetsPaginatorBase):
|
|
706
801
|
"""
|
|
707
802
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets)
|
|
708
803
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
|
|
709
804
|
"""
|
|
710
805
|
|
|
711
|
-
def paginate(
|
|
712
|
-
self, **kwargs: Unpack[
|
|
713
|
-
) ->
|
|
806
|
+
def paginate( # type: ignore[override]
|
|
807
|
+
self, **kwargs: Unpack[ListDeviceFleetsRequestPaginateTypeDef]
|
|
808
|
+
) -> PageIterator[ListDeviceFleetsResponseTypeDef]:
|
|
714
809
|
"""
|
|
715
810
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets.paginate)
|
|
716
811
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
|
|
717
812
|
"""
|
|
718
813
|
|
|
719
814
|
|
|
720
|
-
|
|
815
|
+
if TYPE_CHECKING:
|
|
816
|
+
_ListDevicesPaginatorBase = Paginator[ListDevicesResponseTypeDef]
|
|
817
|
+
else:
|
|
818
|
+
_ListDevicesPaginatorBase = Paginator # type: ignore[assignment]
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
class ListDevicesPaginator(_ListDevicesPaginatorBase):
|
|
721
822
|
"""
|
|
722
823
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices)
|
|
723
824
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
|
|
724
825
|
"""
|
|
725
826
|
|
|
726
|
-
def paginate(
|
|
727
|
-
self, **kwargs: Unpack[
|
|
728
|
-
) ->
|
|
827
|
+
def paginate( # type: ignore[override]
|
|
828
|
+
self, **kwargs: Unpack[ListDevicesRequestPaginateTypeDef]
|
|
829
|
+
) -> PageIterator[ListDevicesResponseTypeDef]:
|
|
729
830
|
"""
|
|
730
831
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices.paginate)
|
|
731
832
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
|
|
732
833
|
"""
|
|
733
834
|
|
|
734
835
|
|
|
735
|
-
|
|
836
|
+
if TYPE_CHECKING:
|
|
837
|
+
_ListDomainsPaginatorBase = Paginator[ListDomainsResponseTypeDef]
|
|
838
|
+
else:
|
|
839
|
+
_ListDomainsPaginatorBase = Paginator # type: ignore[assignment]
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
class ListDomainsPaginator(_ListDomainsPaginatorBase):
|
|
736
843
|
"""
|
|
737
844
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains)
|
|
738
845
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
|
|
739
846
|
"""
|
|
740
847
|
|
|
741
|
-
def paginate(
|
|
742
|
-
self, **kwargs: Unpack[
|
|
743
|
-
) ->
|
|
848
|
+
def paginate( # type: ignore[override]
|
|
849
|
+
self, **kwargs: Unpack[ListDomainsRequestPaginateTypeDef]
|
|
850
|
+
) -> PageIterator[ListDomainsResponseTypeDef]:
|
|
744
851
|
"""
|
|
745
852
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains.paginate)
|
|
746
853
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
|
|
747
854
|
"""
|
|
748
855
|
|
|
749
856
|
|
|
750
|
-
|
|
857
|
+
if TYPE_CHECKING:
|
|
858
|
+
_ListEdgeDeploymentPlansPaginatorBase = Paginator[ListEdgeDeploymentPlansResponseTypeDef]
|
|
859
|
+
else:
|
|
860
|
+
_ListEdgeDeploymentPlansPaginatorBase = Paginator # type: ignore[assignment]
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
class ListEdgeDeploymentPlansPaginator(_ListEdgeDeploymentPlansPaginatorBase):
|
|
751
864
|
"""
|
|
752
865
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans)
|
|
753
866
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
|
|
754
867
|
"""
|
|
755
868
|
|
|
756
|
-
def paginate(
|
|
757
|
-
self, **kwargs: Unpack[
|
|
758
|
-
) ->
|
|
869
|
+
def paginate( # type: ignore[override]
|
|
870
|
+
self, **kwargs: Unpack[ListEdgeDeploymentPlansRequestPaginateTypeDef]
|
|
871
|
+
) -> PageIterator[ListEdgeDeploymentPlansResponseTypeDef]:
|
|
759
872
|
"""
|
|
760
873
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans.paginate)
|
|
761
874
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
|
|
762
875
|
"""
|
|
763
876
|
|
|
764
877
|
|
|
765
|
-
|
|
878
|
+
if TYPE_CHECKING:
|
|
879
|
+
_ListEdgePackagingJobsPaginatorBase = Paginator[ListEdgePackagingJobsResponseTypeDef]
|
|
880
|
+
else:
|
|
881
|
+
_ListEdgePackagingJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
class ListEdgePackagingJobsPaginator(_ListEdgePackagingJobsPaginatorBase):
|
|
766
885
|
"""
|
|
767
886
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs)
|
|
768
887
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
|
|
769
888
|
"""
|
|
770
889
|
|
|
771
|
-
def paginate(
|
|
772
|
-
self, **kwargs: Unpack[
|
|
773
|
-
) ->
|
|
890
|
+
def paginate( # type: ignore[override]
|
|
891
|
+
self, **kwargs: Unpack[ListEdgePackagingJobsRequestPaginateTypeDef]
|
|
892
|
+
) -> PageIterator[ListEdgePackagingJobsResponseTypeDef]:
|
|
774
893
|
"""
|
|
775
894
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
|
|
776
895
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
|
|
777
896
|
"""
|
|
778
897
|
|
|
779
898
|
|
|
780
|
-
|
|
899
|
+
if TYPE_CHECKING:
|
|
900
|
+
_ListEndpointConfigsPaginatorBase = Paginator[ListEndpointConfigsOutputTypeDef]
|
|
901
|
+
else:
|
|
902
|
+
_ListEndpointConfigsPaginatorBase = Paginator # type: ignore[assignment]
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
class ListEndpointConfigsPaginator(_ListEndpointConfigsPaginatorBase):
|
|
781
906
|
"""
|
|
782
907
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs)
|
|
783
908
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
|
|
784
909
|
"""
|
|
785
910
|
|
|
786
|
-
def paginate(
|
|
787
|
-
self, **kwargs: Unpack[
|
|
788
|
-
) ->
|
|
911
|
+
def paginate( # type: ignore[override]
|
|
912
|
+
self, **kwargs: Unpack[ListEndpointConfigsInputPaginateTypeDef]
|
|
913
|
+
) -> PageIterator[ListEndpointConfigsOutputTypeDef]:
|
|
789
914
|
"""
|
|
790
915
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
|
|
791
916
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
|
|
792
917
|
"""
|
|
793
918
|
|
|
794
919
|
|
|
795
|
-
|
|
920
|
+
if TYPE_CHECKING:
|
|
921
|
+
_ListEndpointsPaginatorBase = Paginator[ListEndpointsOutputTypeDef]
|
|
922
|
+
else:
|
|
923
|
+
_ListEndpointsPaginatorBase = Paginator # type: ignore[assignment]
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
class ListEndpointsPaginator(_ListEndpointsPaginatorBase):
|
|
796
927
|
"""
|
|
797
928
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints)
|
|
798
929
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
|
|
799
930
|
"""
|
|
800
931
|
|
|
801
|
-
def paginate(
|
|
802
|
-
self, **kwargs: Unpack[
|
|
803
|
-
) ->
|
|
932
|
+
def paginate( # type: ignore[override]
|
|
933
|
+
self, **kwargs: Unpack[ListEndpointsInputPaginateTypeDef]
|
|
934
|
+
) -> PageIterator[ListEndpointsOutputTypeDef]:
|
|
804
935
|
"""
|
|
805
936
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints.paginate)
|
|
806
937
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
|
|
807
938
|
"""
|
|
808
939
|
|
|
809
940
|
|
|
810
|
-
|
|
941
|
+
if TYPE_CHECKING:
|
|
942
|
+
_ListExperimentsPaginatorBase = Paginator[ListExperimentsResponseTypeDef]
|
|
943
|
+
else:
|
|
944
|
+
_ListExperimentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
class ListExperimentsPaginator(_ListExperimentsPaginatorBase):
|
|
811
948
|
"""
|
|
812
949
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments)
|
|
813
950
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
|
|
814
951
|
"""
|
|
815
952
|
|
|
816
|
-
def paginate(
|
|
817
|
-
self, **kwargs: Unpack[
|
|
818
|
-
) ->
|
|
953
|
+
def paginate( # type: ignore[override]
|
|
954
|
+
self, **kwargs: Unpack[ListExperimentsRequestPaginateTypeDef]
|
|
955
|
+
) -> PageIterator[ListExperimentsResponseTypeDef]:
|
|
819
956
|
"""
|
|
820
957
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments.paginate)
|
|
821
958
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
|
|
822
959
|
"""
|
|
823
960
|
|
|
824
961
|
|
|
825
|
-
|
|
962
|
+
if TYPE_CHECKING:
|
|
963
|
+
_ListFeatureGroupsPaginatorBase = Paginator[ListFeatureGroupsResponseTypeDef]
|
|
964
|
+
else:
|
|
965
|
+
_ListFeatureGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
class ListFeatureGroupsPaginator(_ListFeatureGroupsPaginatorBase):
|
|
826
969
|
"""
|
|
827
970
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups)
|
|
828
971
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
|
|
829
972
|
"""
|
|
830
973
|
|
|
831
|
-
def paginate(
|
|
832
|
-
self, **kwargs: Unpack[
|
|
833
|
-
) ->
|
|
974
|
+
def paginate( # type: ignore[override]
|
|
975
|
+
self, **kwargs: Unpack[ListFeatureGroupsRequestPaginateTypeDef]
|
|
976
|
+
) -> PageIterator[ListFeatureGroupsResponseTypeDef]:
|
|
834
977
|
"""
|
|
835
978
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups.paginate)
|
|
836
979
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
|
|
837
980
|
"""
|
|
838
981
|
|
|
839
982
|
|
|
840
|
-
|
|
983
|
+
if TYPE_CHECKING:
|
|
984
|
+
_ListFlowDefinitionsPaginatorBase = Paginator[ListFlowDefinitionsResponseTypeDef]
|
|
985
|
+
else:
|
|
986
|
+
_ListFlowDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
class ListFlowDefinitionsPaginator(_ListFlowDefinitionsPaginatorBase):
|
|
841
990
|
"""
|
|
842
991
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions)
|
|
843
992
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
|
|
844
993
|
"""
|
|
845
994
|
|
|
846
|
-
def paginate(
|
|
847
|
-
self, **kwargs: Unpack[
|
|
848
|
-
) ->
|
|
995
|
+
def paginate( # type: ignore[override]
|
|
996
|
+
self, **kwargs: Unpack[ListFlowDefinitionsRequestPaginateTypeDef]
|
|
997
|
+
) -> PageIterator[ListFlowDefinitionsResponseTypeDef]:
|
|
849
998
|
"""
|
|
850
999
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
|
|
851
1000
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
|
|
852
1001
|
"""
|
|
853
1002
|
|
|
854
1003
|
|
|
855
|
-
|
|
1004
|
+
if TYPE_CHECKING:
|
|
1005
|
+
_ListHumanTaskUisPaginatorBase = Paginator[ListHumanTaskUisResponseTypeDef]
|
|
1006
|
+
else:
|
|
1007
|
+
_ListHumanTaskUisPaginatorBase = Paginator # type: ignore[assignment]
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
class ListHumanTaskUisPaginator(_ListHumanTaskUisPaginatorBase):
|
|
856
1011
|
"""
|
|
857
1012
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis)
|
|
858
1013
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
|
|
859
1014
|
"""
|
|
860
1015
|
|
|
861
|
-
def paginate(
|
|
862
|
-
self, **kwargs: Unpack[
|
|
863
|
-
) ->
|
|
1016
|
+
def paginate( # type: ignore[override]
|
|
1017
|
+
self, **kwargs: Unpack[ListHumanTaskUisRequestPaginateTypeDef]
|
|
1018
|
+
) -> PageIterator[ListHumanTaskUisResponseTypeDef]:
|
|
864
1019
|
"""
|
|
865
1020
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
|
|
866
1021
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
|
|
867
1022
|
"""
|
|
868
1023
|
|
|
869
1024
|
|
|
870
|
-
|
|
1025
|
+
if TYPE_CHECKING:
|
|
1026
|
+
_ListHyperParameterTuningJobsPaginatorBase = Paginator[
|
|
1027
|
+
ListHyperParameterTuningJobsResponseTypeDef
|
|
1028
|
+
]
|
|
1029
|
+
else:
|
|
1030
|
+
_ListHyperParameterTuningJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
class ListHyperParameterTuningJobsPaginator(_ListHyperParameterTuningJobsPaginatorBase):
|
|
871
1034
|
"""
|
|
872
1035
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
|
|
873
1036
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
|
|
874
1037
|
"""
|
|
875
1038
|
|
|
876
|
-
def paginate(
|
|
877
|
-
self,
|
|
878
|
-
|
|
879
|
-
ListHyperParameterTuningJobsRequestListHyperParameterTuningJobsPaginateTypeDef
|
|
880
|
-
],
|
|
881
|
-
) -> _PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
|
|
1039
|
+
def paginate( # type: ignore[override]
|
|
1040
|
+
self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestPaginateTypeDef]
|
|
1041
|
+
) -> PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
|
|
882
1042
|
"""
|
|
883
1043
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
|
|
884
1044
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
|
|
885
1045
|
"""
|
|
886
1046
|
|
|
887
1047
|
|
|
888
|
-
|
|
1048
|
+
if TYPE_CHECKING:
|
|
1049
|
+
_ListImageVersionsPaginatorBase = Paginator[ListImageVersionsResponseTypeDef]
|
|
1050
|
+
else:
|
|
1051
|
+
_ListImageVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
|
+
class ListImageVersionsPaginator(_ListImageVersionsPaginatorBase):
|
|
889
1055
|
"""
|
|
890
1056
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions)
|
|
891
1057
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
|
|
892
1058
|
"""
|
|
893
1059
|
|
|
894
|
-
def paginate(
|
|
895
|
-
self, **kwargs: Unpack[
|
|
896
|
-
) ->
|
|
1060
|
+
def paginate( # type: ignore[override]
|
|
1061
|
+
self, **kwargs: Unpack[ListImageVersionsRequestPaginateTypeDef]
|
|
1062
|
+
) -> PageIterator[ListImageVersionsResponseTypeDef]:
|
|
897
1063
|
"""
|
|
898
1064
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions.paginate)
|
|
899
1065
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
|
|
900
1066
|
"""
|
|
901
1067
|
|
|
902
1068
|
|
|
903
|
-
|
|
1069
|
+
if TYPE_CHECKING:
|
|
1070
|
+
_ListImagesPaginatorBase = Paginator[ListImagesResponseTypeDef]
|
|
1071
|
+
else:
|
|
1072
|
+
_ListImagesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
class ListImagesPaginator(_ListImagesPaginatorBase):
|
|
904
1076
|
"""
|
|
905
1077
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages)
|
|
906
1078
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
|
|
907
1079
|
"""
|
|
908
1080
|
|
|
909
|
-
def paginate(
|
|
910
|
-
self, **kwargs: Unpack[
|
|
911
|
-
) ->
|
|
1081
|
+
def paginate( # type: ignore[override]
|
|
1082
|
+
self, **kwargs: Unpack[ListImagesRequestPaginateTypeDef]
|
|
1083
|
+
) -> PageIterator[ListImagesResponseTypeDef]:
|
|
912
1084
|
"""
|
|
913
1085
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages.paginate)
|
|
914
1086
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
|
|
915
1087
|
"""
|
|
916
1088
|
|
|
917
1089
|
|
|
918
|
-
|
|
1090
|
+
if TYPE_CHECKING:
|
|
1091
|
+
_ListInferenceComponentsPaginatorBase = Paginator[ListInferenceComponentsOutputTypeDef]
|
|
1092
|
+
else:
|
|
1093
|
+
_ListInferenceComponentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
class ListInferenceComponentsPaginator(_ListInferenceComponentsPaginatorBase):
|
|
919
1097
|
"""
|
|
920
1098
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents)
|
|
921
1099
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
|
|
922
1100
|
"""
|
|
923
1101
|
|
|
924
|
-
def paginate(
|
|
925
|
-
self, **kwargs: Unpack[
|
|
926
|
-
) ->
|
|
1102
|
+
def paginate( # type: ignore[override]
|
|
1103
|
+
self, **kwargs: Unpack[ListInferenceComponentsInputPaginateTypeDef]
|
|
1104
|
+
) -> PageIterator[ListInferenceComponentsOutputTypeDef]:
|
|
927
1105
|
"""
|
|
928
1106
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents.paginate)
|
|
929
1107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
|
|
930
1108
|
"""
|
|
931
1109
|
|
|
932
1110
|
|
|
933
|
-
|
|
1111
|
+
if TYPE_CHECKING:
|
|
1112
|
+
_ListInferenceExperimentsPaginatorBase = Paginator[ListInferenceExperimentsResponseTypeDef]
|
|
1113
|
+
else:
|
|
1114
|
+
_ListInferenceExperimentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
class ListInferenceExperimentsPaginator(_ListInferenceExperimentsPaginatorBase):
|
|
934
1118
|
"""
|
|
935
1119
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments)
|
|
936
1120
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
|
|
937
1121
|
"""
|
|
938
1122
|
|
|
939
|
-
def paginate(
|
|
940
|
-
self,
|
|
941
|
-
|
|
942
|
-
) -> _PageIterator[ListInferenceExperimentsResponseTypeDef]:
|
|
1123
|
+
def paginate( # type: ignore[override]
|
|
1124
|
+
self, **kwargs: Unpack[ListInferenceExperimentsRequestPaginateTypeDef]
|
|
1125
|
+
) -> PageIterator[ListInferenceExperimentsResponseTypeDef]:
|
|
943
1126
|
"""
|
|
944
1127
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments.paginate)
|
|
945
1128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
|
|
946
1129
|
"""
|
|
947
1130
|
|
|
948
1131
|
|
|
949
|
-
|
|
1132
|
+
if TYPE_CHECKING:
|
|
1133
|
+
_ListInferenceRecommendationsJobStepsPaginatorBase = Paginator[
|
|
1134
|
+
ListInferenceRecommendationsJobStepsResponseTypeDef
|
|
1135
|
+
]
|
|
1136
|
+
else:
|
|
1137
|
+
_ListInferenceRecommendationsJobStepsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
class ListInferenceRecommendationsJobStepsPaginator(
|
|
1141
|
+
_ListInferenceRecommendationsJobStepsPaginatorBase
|
|
1142
|
+
):
|
|
950
1143
|
"""
|
|
951
1144
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps)
|
|
952
1145
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
|
|
953
1146
|
"""
|
|
954
1147
|
|
|
955
|
-
def paginate(
|
|
956
|
-
self,
|
|
957
|
-
|
|
958
|
-
ListInferenceRecommendationsJobStepsRequestListInferenceRecommendationsJobStepsPaginateTypeDef
|
|
959
|
-
],
|
|
960
|
-
) -> _PageIterator[ListInferenceRecommendationsJobStepsResponseTypeDef]:
|
|
1148
|
+
def paginate( # type: ignore[override]
|
|
1149
|
+
self, **kwargs: Unpack[ListInferenceRecommendationsJobStepsRequestPaginateTypeDef]
|
|
1150
|
+
) -> PageIterator[ListInferenceRecommendationsJobStepsResponseTypeDef]:
|
|
961
1151
|
"""
|
|
962
1152
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps.paginate)
|
|
963
1153
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
|
|
964
1154
|
"""
|
|
965
1155
|
|
|
966
1156
|
|
|
967
|
-
|
|
1157
|
+
if TYPE_CHECKING:
|
|
1158
|
+
_ListInferenceRecommendationsJobsPaginatorBase = Paginator[
|
|
1159
|
+
ListInferenceRecommendationsJobsResponseTypeDef
|
|
1160
|
+
]
|
|
1161
|
+
else:
|
|
1162
|
+
_ListInferenceRecommendationsJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
class ListInferenceRecommendationsJobsPaginator(_ListInferenceRecommendationsJobsPaginatorBase):
|
|
968
1166
|
"""
|
|
969
1167
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
|
|
970
1168
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
|
|
971
1169
|
"""
|
|
972
1170
|
|
|
973
|
-
def paginate(
|
|
974
|
-
self,
|
|
975
|
-
|
|
976
|
-
ListInferenceRecommendationsJobsRequestListInferenceRecommendationsJobsPaginateTypeDef
|
|
977
|
-
],
|
|
978
|
-
) -> _PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
|
|
1171
|
+
def paginate( # type: ignore[override]
|
|
1172
|
+
self, **kwargs: Unpack[ListInferenceRecommendationsJobsRequestPaginateTypeDef]
|
|
1173
|
+
) -> PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
|
|
979
1174
|
"""
|
|
980
1175
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
|
|
981
1176
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
|
|
982
1177
|
"""
|
|
983
1178
|
|
|
984
1179
|
|
|
985
|
-
|
|
1180
|
+
if TYPE_CHECKING:
|
|
1181
|
+
_ListLabelingJobsForWorkteamPaginatorBase = Paginator[
|
|
1182
|
+
ListLabelingJobsForWorkteamResponseTypeDef
|
|
1183
|
+
]
|
|
1184
|
+
else:
|
|
1185
|
+
_ListLabelingJobsForWorkteamPaginatorBase = Paginator # type: ignore[assignment]
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
class ListLabelingJobsForWorkteamPaginator(_ListLabelingJobsForWorkteamPaginatorBase):
|
|
986
1189
|
"""
|
|
987
1190
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
|
|
988
1191
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
|
|
989
1192
|
"""
|
|
990
1193
|
|
|
991
|
-
def paginate(
|
|
992
|
-
self,
|
|
993
|
-
|
|
994
|
-
ListLabelingJobsForWorkteamRequestListLabelingJobsForWorkteamPaginateTypeDef
|
|
995
|
-
],
|
|
996
|
-
) -> _PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
|
|
1194
|
+
def paginate( # type: ignore[override]
|
|
1195
|
+
self, **kwargs: Unpack[ListLabelingJobsForWorkteamRequestPaginateTypeDef]
|
|
1196
|
+
) -> PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
|
|
997
1197
|
"""
|
|
998
1198
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
|
|
999
1199
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
|
|
1000
1200
|
"""
|
|
1001
1201
|
|
|
1002
1202
|
|
|
1003
|
-
|
|
1203
|
+
if TYPE_CHECKING:
|
|
1204
|
+
_ListLabelingJobsPaginatorBase = Paginator[ListLabelingJobsResponseTypeDef]
|
|
1205
|
+
else:
|
|
1206
|
+
_ListLabelingJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
class ListLabelingJobsPaginator(_ListLabelingJobsPaginatorBase):
|
|
1004
1210
|
"""
|
|
1005
1211
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs)
|
|
1006
1212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
|
|
1007
1213
|
"""
|
|
1008
1214
|
|
|
1009
|
-
def paginate(
|
|
1010
|
-
self, **kwargs: Unpack[
|
|
1011
|
-
) ->
|
|
1215
|
+
def paginate( # type: ignore[override]
|
|
1216
|
+
self, **kwargs: Unpack[ListLabelingJobsRequestPaginateTypeDef]
|
|
1217
|
+
) -> PageIterator[ListLabelingJobsResponseTypeDef]:
|
|
1012
1218
|
"""
|
|
1013
1219
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs.paginate)
|
|
1014
1220
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
|
|
1015
1221
|
"""
|
|
1016
1222
|
|
|
1017
1223
|
|
|
1018
|
-
|
|
1224
|
+
if TYPE_CHECKING:
|
|
1225
|
+
_ListLineageGroupsPaginatorBase = Paginator[ListLineageGroupsResponseTypeDef]
|
|
1226
|
+
else:
|
|
1227
|
+
_ListLineageGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
class ListLineageGroupsPaginator(_ListLineageGroupsPaginatorBase):
|
|
1019
1231
|
"""
|
|
1020
1232
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups)
|
|
1021
1233
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
|
|
1022
1234
|
"""
|
|
1023
1235
|
|
|
1024
|
-
def paginate(
|
|
1025
|
-
self, **kwargs: Unpack[
|
|
1026
|
-
) ->
|
|
1236
|
+
def paginate( # type: ignore[override]
|
|
1237
|
+
self, **kwargs: Unpack[ListLineageGroupsRequestPaginateTypeDef]
|
|
1238
|
+
) -> PageIterator[ListLineageGroupsResponseTypeDef]:
|
|
1027
1239
|
"""
|
|
1028
1240
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups.paginate)
|
|
1029
1241
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
|
|
1030
1242
|
"""
|
|
1031
1243
|
|
|
1032
1244
|
|
|
1033
|
-
|
|
1245
|
+
if TYPE_CHECKING:
|
|
1246
|
+
_ListMlflowTrackingServersPaginatorBase = Paginator[ListMlflowTrackingServersResponseTypeDef]
|
|
1247
|
+
else:
|
|
1248
|
+
_ListMlflowTrackingServersPaginatorBase = Paginator # type: ignore[assignment]
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
class ListMlflowTrackingServersPaginator(_ListMlflowTrackingServersPaginatorBase):
|
|
1034
1252
|
"""
|
|
1035
1253
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers)
|
|
1036
1254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
1037
1255
|
"""
|
|
1038
1256
|
|
|
1039
|
-
def paginate(
|
|
1040
|
-
self,
|
|
1041
|
-
|
|
1042
|
-
) -> _PageIterator[ListMlflowTrackingServersResponseTypeDef]:
|
|
1257
|
+
def paginate( # type: ignore[override]
|
|
1258
|
+
self, **kwargs: Unpack[ListMlflowTrackingServersRequestPaginateTypeDef]
|
|
1259
|
+
) -> PageIterator[ListMlflowTrackingServersResponseTypeDef]:
|
|
1043
1260
|
"""
|
|
1044
1261
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
|
|
1045
1262
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
1046
1263
|
"""
|
|
1047
1264
|
|
|
1048
1265
|
|
|
1049
|
-
|
|
1266
|
+
if TYPE_CHECKING:
|
|
1267
|
+
_ListModelBiasJobDefinitionsPaginatorBase = Paginator[
|
|
1268
|
+
ListModelBiasJobDefinitionsResponseTypeDef
|
|
1269
|
+
]
|
|
1270
|
+
else:
|
|
1271
|
+
_ListModelBiasJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
class ListModelBiasJobDefinitionsPaginator(_ListModelBiasJobDefinitionsPaginatorBase):
|
|
1050
1275
|
"""
|
|
1051
1276
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
|
|
1052
1277
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
|
|
1053
1278
|
"""
|
|
1054
1279
|
|
|
1055
|
-
def paginate(
|
|
1056
|
-
self,
|
|
1057
|
-
|
|
1058
|
-
ListModelBiasJobDefinitionsRequestListModelBiasJobDefinitionsPaginateTypeDef
|
|
1059
|
-
],
|
|
1060
|
-
) -> _PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
|
|
1280
|
+
def paginate( # type: ignore[override]
|
|
1281
|
+
self, **kwargs: Unpack[ListModelBiasJobDefinitionsRequestPaginateTypeDef]
|
|
1282
|
+
) -> PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
|
|
1061
1283
|
"""
|
|
1062
1284
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
|
|
1063
1285
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
|
|
1064
1286
|
"""
|
|
1065
1287
|
|
|
1066
1288
|
|
|
1067
|
-
|
|
1289
|
+
if TYPE_CHECKING:
|
|
1290
|
+
_ListModelCardExportJobsPaginatorBase = Paginator[ListModelCardExportJobsResponseTypeDef]
|
|
1291
|
+
else:
|
|
1292
|
+
_ListModelCardExportJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1293
|
+
|
|
1294
|
+
|
|
1295
|
+
class ListModelCardExportJobsPaginator(_ListModelCardExportJobsPaginatorBase):
|
|
1068
1296
|
"""
|
|
1069
1297
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs)
|
|
1070
1298
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
|
|
1071
1299
|
"""
|
|
1072
1300
|
|
|
1073
|
-
def paginate(
|
|
1074
|
-
self, **kwargs: Unpack[
|
|
1075
|
-
) ->
|
|
1301
|
+
def paginate( # type: ignore[override]
|
|
1302
|
+
self, **kwargs: Unpack[ListModelCardExportJobsRequestPaginateTypeDef]
|
|
1303
|
+
) -> PageIterator[ListModelCardExportJobsResponseTypeDef]:
|
|
1076
1304
|
"""
|
|
1077
1305
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs.paginate)
|
|
1078
1306
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
|
|
1079
1307
|
"""
|
|
1080
1308
|
|
|
1081
1309
|
|
|
1082
|
-
|
|
1310
|
+
if TYPE_CHECKING:
|
|
1311
|
+
_ListModelCardVersionsPaginatorBase = Paginator[ListModelCardVersionsResponseTypeDef]
|
|
1312
|
+
else:
|
|
1313
|
+
_ListModelCardVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
class ListModelCardVersionsPaginator(_ListModelCardVersionsPaginatorBase):
|
|
1083
1317
|
"""
|
|
1084
1318
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions)
|
|
1085
1319
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
|
|
1086
1320
|
"""
|
|
1087
1321
|
|
|
1088
|
-
def paginate(
|
|
1089
|
-
self, **kwargs: Unpack[
|
|
1090
|
-
) ->
|
|
1322
|
+
def paginate( # type: ignore[override]
|
|
1323
|
+
self, **kwargs: Unpack[ListModelCardVersionsRequestPaginateTypeDef]
|
|
1324
|
+
) -> PageIterator[ListModelCardVersionsResponseTypeDef]:
|
|
1091
1325
|
"""
|
|
1092
1326
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions.paginate)
|
|
1093
1327
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
|
|
1094
1328
|
"""
|
|
1095
1329
|
|
|
1096
1330
|
|
|
1097
|
-
|
|
1331
|
+
if TYPE_CHECKING:
|
|
1332
|
+
_ListModelCardsPaginatorBase = Paginator[ListModelCardsResponseTypeDef]
|
|
1333
|
+
else:
|
|
1334
|
+
_ListModelCardsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
class ListModelCardsPaginator(_ListModelCardsPaginatorBase):
|
|
1098
1338
|
"""
|
|
1099
1339
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards)
|
|
1100
1340
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
|
|
1101
1341
|
"""
|
|
1102
1342
|
|
|
1103
|
-
def paginate(
|
|
1104
|
-
self, **kwargs: Unpack[
|
|
1105
|
-
) ->
|
|
1343
|
+
def paginate( # type: ignore[override]
|
|
1344
|
+
self, **kwargs: Unpack[ListModelCardsRequestPaginateTypeDef]
|
|
1345
|
+
) -> PageIterator[ListModelCardsResponseTypeDef]:
|
|
1106
1346
|
"""
|
|
1107
1347
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards.paginate)
|
|
1108
1348
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
|
|
1109
1349
|
"""
|
|
1110
1350
|
|
|
1111
1351
|
|
|
1112
|
-
|
|
1352
|
+
if TYPE_CHECKING:
|
|
1353
|
+
_ListModelExplainabilityJobDefinitionsPaginatorBase = Paginator[
|
|
1354
|
+
ListModelExplainabilityJobDefinitionsResponseTypeDef
|
|
1355
|
+
]
|
|
1356
|
+
else:
|
|
1357
|
+
_ListModelExplainabilityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
class ListModelExplainabilityJobDefinitionsPaginator(
|
|
1361
|
+
_ListModelExplainabilityJobDefinitionsPaginatorBase
|
|
1362
|
+
):
|
|
1113
1363
|
"""
|
|
1114
1364
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
|
|
1115
1365
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
|
|
1116
1366
|
"""
|
|
1117
1367
|
|
|
1118
|
-
def paginate(
|
|
1119
|
-
self,
|
|
1120
|
-
|
|
1121
|
-
ListModelExplainabilityJobDefinitionsRequestListModelExplainabilityJobDefinitionsPaginateTypeDef
|
|
1122
|
-
],
|
|
1123
|
-
) -> _PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
|
|
1368
|
+
def paginate( # type: ignore[override]
|
|
1369
|
+
self, **kwargs: Unpack[ListModelExplainabilityJobDefinitionsRequestPaginateTypeDef]
|
|
1370
|
+
) -> PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
|
|
1124
1371
|
"""
|
|
1125
1372
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
|
|
1126
1373
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
|
|
1127
1374
|
"""
|
|
1128
1375
|
|
|
1129
1376
|
|
|
1130
|
-
|
|
1377
|
+
if TYPE_CHECKING:
|
|
1378
|
+
_ListModelMetadataPaginatorBase = Paginator[ListModelMetadataResponseTypeDef]
|
|
1379
|
+
else:
|
|
1380
|
+
_ListModelMetadataPaginatorBase = Paginator # type: ignore[assignment]
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
class ListModelMetadataPaginator(_ListModelMetadataPaginatorBase):
|
|
1131
1384
|
"""
|
|
1132
1385
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata)
|
|
1133
1386
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
|
|
1134
1387
|
"""
|
|
1135
1388
|
|
|
1136
|
-
def paginate(
|
|
1137
|
-
self, **kwargs: Unpack[
|
|
1138
|
-
) ->
|
|
1389
|
+
def paginate( # type: ignore[override]
|
|
1390
|
+
self, **kwargs: Unpack[ListModelMetadataRequestPaginateTypeDef]
|
|
1391
|
+
) -> PageIterator[ListModelMetadataResponseTypeDef]:
|
|
1139
1392
|
"""
|
|
1140
1393
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata.paginate)
|
|
1141
1394
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
|
|
1142
1395
|
"""
|
|
1143
1396
|
|
|
1144
1397
|
|
|
1145
|
-
|
|
1398
|
+
if TYPE_CHECKING:
|
|
1399
|
+
_ListModelPackageGroupsPaginatorBase = Paginator[ListModelPackageGroupsOutputTypeDef]
|
|
1400
|
+
else:
|
|
1401
|
+
_ListModelPackageGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
class ListModelPackageGroupsPaginator(_ListModelPackageGroupsPaginatorBase):
|
|
1146
1405
|
"""
|
|
1147
1406
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups)
|
|
1148
1407
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
|
|
1149
1408
|
"""
|
|
1150
1409
|
|
|
1151
|
-
def paginate(
|
|
1152
|
-
self, **kwargs: Unpack[
|
|
1153
|
-
) ->
|
|
1410
|
+
def paginate( # type: ignore[override]
|
|
1411
|
+
self, **kwargs: Unpack[ListModelPackageGroupsInputPaginateTypeDef]
|
|
1412
|
+
) -> PageIterator[ListModelPackageGroupsOutputTypeDef]:
|
|
1154
1413
|
"""
|
|
1155
1414
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
|
|
1156
1415
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
|
|
1157
1416
|
"""
|
|
1158
1417
|
|
|
1159
1418
|
|
|
1160
|
-
|
|
1419
|
+
if TYPE_CHECKING:
|
|
1420
|
+
_ListModelPackagesPaginatorBase = Paginator[ListModelPackagesOutputTypeDef]
|
|
1421
|
+
else:
|
|
1422
|
+
_ListModelPackagesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
class ListModelPackagesPaginator(_ListModelPackagesPaginatorBase):
|
|
1161
1426
|
"""
|
|
1162
1427
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages)
|
|
1163
1428
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
|
|
1164
1429
|
"""
|
|
1165
1430
|
|
|
1166
|
-
def paginate(
|
|
1167
|
-
self, **kwargs: Unpack[
|
|
1168
|
-
) ->
|
|
1431
|
+
def paginate( # type: ignore[override]
|
|
1432
|
+
self, **kwargs: Unpack[ListModelPackagesInputPaginateTypeDef]
|
|
1433
|
+
) -> PageIterator[ListModelPackagesOutputTypeDef]:
|
|
1169
1434
|
"""
|
|
1170
1435
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages.paginate)
|
|
1171
1436
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
|
|
1172
1437
|
"""
|
|
1173
1438
|
|
|
1174
1439
|
|
|
1175
|
-
|
|
1440
|
+
if TYPE_CHECKING:
|
|
1441
|
+
_ListModelQualityJobDefinitionsPaginatorBase = Paginator[
|
|
1442
|
+
ListModelQualityJobDefinitionsResponseTypeDef
|
|
1443
|
+
]
|
|
1444
|
+
else:
|
|
1445
|
+
_ListModelQualityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class ListModelQualityJobDefinitionsPaginator(_ListModelQualityJobDefinitionsPaginatorBase):
|
|
1176
1449
|
"""
|
|
1177
1450
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
|
|
1178
1451
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
|
|
1179
1452
|
"""
|
|
1180
1453
|
|
|
1181
|
-
def paginate(
|
|
1182
|
-
self,
|
|
1183
|
-
|
|
1184
|
-
ListModelQualityJobDefinitionsRequestListModelQualityJobDefinitionsPaginateTypeDef
|
|
1185
|
-
],
|
|
1186
|
-
) -> _PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
|
|
1454
|
+
def paginate( # type: ignore[override]
|
|
1455
|
+
self, **kwargs: Unpack[ListModelQualityJobDefinitionsRequestPaginateTypeDef]
|
|
1456
|
+
) -> PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
|
|
1187
1457
|
"""
|
|
1188
1458
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
|
|
1189
1459
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
|
|
1190
1460
|
"""
|
|
1191
1461
|
|
|
1192
1462
|
|
|
1193
|
-
|
|
1463
|
+
if TYPE_CHECKING:
|
|
1464
|
+
_ListModelsPaginatorBase = Paginator[ListModelsOutputTypeDef]
|
|
1465
|
+
else:
|
|
1466
|
+
_ListModelsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
class ListModelsPaginator(_ListModelsPaginatorBase):
|
|
1194
1470
|
"""
|
|
1195
1471
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels)
|
|
1196
1472
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
|
|
1197
1473
|
"""
|
|
1198
1474
|
|
|
1199
|
-
def paginate(
|
|
1200
|
-
self, **kwargs: Unpack[
|
|
1201
|
-
) ->
|
|
1475
|
+
def paginate( # type: ignore[override]
|
|
1476
|
+
self, **kwargs: Unpack[ListModelsInputPaginateTypeDef]
|
|
1477
|
+
) -> PageIterator[ListModelsOutputTypeDef]:
|
|
1202
1478
|
"""
|
|
1203
1479
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels.paginate)
|
|
1204
1480
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
|
|
1205
1481
|
"""
|
|
1206
1482
|
|
|
1207
1483
|
|
|
1208
|
-
|
|
1484
|
+
if TYPE_CHECKING:
|
|
1485
|
+
_ListMonitoringAlertHistoryPaginatorBase = Paginator[ListMonitoringAlertHistoryResponseTypeDef]
|
|
1486
|
+
else:
|
|
1487
|
+
_ListMonitoringAlertHistoryPaginatorBase = Paginator # type: ignore[assignment]
|
|
1488
|
+
|
|
1489
|
+
|
|
1490
|
+
class ListMonitoringAlertHistoryPaginator(_ListMonitoringAlertHistoryPaginatorBase):
|
|
1209
1491
|
"""
|
|
1210
1492
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory)
|
|
1211
1493
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
|
|
1212
1494
|
"""
|
|
1213
1495
|
|
|
1214
|
-
def paginate(
|
|
1215
|
-
self,
|
|
1216
|
-
|
|
1217
|
-
ListMonitoringAlertHistoryRequestListMonitoringAlertHistoryPaginateTypeDef
|
|
1218
|
-
],
|
|
1219
|
-
) -> _PageIterator[ListMonitoringAlertHistoryResponseTypeDef]:
|
|
1496
|
+
def paginate( # type: ignore[override]
|
|
1497
|
+
self, **kwargs: Unpack[ListMonitoringAlertHistoryRequestPaginateTypeDef]
|
|
1498
|
+
) -> PageIterator[ListMonitoringAlertHistoryResponseTypeDef]:
|
|
1220
1499
|
"""
|
|
1221
1500
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory.paginate)
|
|
1222
1501
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
|
|
1223
1502
|
"""
|
|
1224
1503
|
|
|
1225
1504
|
|
|
1226
|
-
|
|
1505
|
+
if TYPE_CHECKING:
|
|
1506
|
+
_ListMonitoringAlertsPaginatorBase = Paginator[ListMonitoringAlertsResponseTypeDef]
|
|
1507
|
+
else:
|
|
1508
|
+
_ListMonitoringAlertsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
class ListMonitoringAlertsPaginator(_ListMonitoringAlertsPaginatorBase):
|
|
1227
1512
|
"""
|
|
1228
1513
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts)
|
|
1229
1514
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
|
|
1230
1515
|
"""
|
|
1231
1516
|
|
|
1232
|
-
def paginate(
|
|
1233
|
-
self, **kwargs: Unpack[
|
|
1234
|
-
) ->
|
|
1517
|
+
def paginate( # type: ignore[override]
|
|
1518
|
+
self, **kwargs: Unpack[ListMonitoringAlertsRequestPaginateTypeDef]
|
|
1519
|
+
) -> PageIterator[ListMonitoringAlertsResponseTypeDef]:
|
|
1235
1520
|
"""
|
|
1236
1521
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts.paginate)
|
|
1237
1522
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
|
|
1238
1523
|
"""
|
|
1239
1524
|
|
|
1240
1525
|
|
|
1241
|
-
|
|
1526
|
+
if TYPE_CHECKING:
|
|
1527
|
+
_ListMonitoringExecutionsPaginatorBase = Paginator[ListMonitoringExecutionsResponseTypeDef]
|
|
1528
|
+
else:
|
|
1529
|
+
_ListMonitoringExecutionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
class ListMonitoringExecutionsPaginator(_ListMonitoringExecutionsPaginatorBase):
|
|
1242
1533
|
"""
|
|
1243
1534
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions)
|
|
1244
1535
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
|
|
1245
1536
|
"""
|
|
1246
1537
|
|
|
1247
|
-
def paginate(
|
|
1248
|
-
self,
|
|
1249
|
-
|
|
1250
|
-
) -> _PageIterator[ListMonitoringExecutionsResponseTypeDef]:
|
|
1538
|
+
def paginate( # type: ignore[override]
|
|
1539
|
+
self, **kwargs: Unpack[ListMonitoringExecutionsRequestPaginateTypeDef]
|
|
1540
|
+
) -> PageIterator[ListMonitoringExecutionsResponseTypeDef]:
|
|
1251
1541
|
"""
|
|
1252
1542
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
|
|
1253
1543
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
|
|
1254
1544
|
"""
|
|
1255
1545
|
|
|
1256
1546
|
|
|
1257
|
-
|
|
1547
|
+
if TYPE_CHECKING:
|
|
1548
|
+
_ListMonitoringSchedulesPaginatorBase = Paginator[ListMonitoringSchedulesResponseTypeDef]
|
|
1549
|
+
else:
|
|
1550
|
+
_ListMonitoringSchedulesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
class ListMonitoringSchedulesPaginator(_ListMonitoringSchedulesPaginatorBase):
|
|
1258
1554
|
"""
|
|
1259
1555
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules)
|
|
1260
1556
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
|
|
1261
1557
|
"""
|
|
1262
1558
|
|
|
1263
|
-
def paginate(
|
|
1264
|
-
self, **kwargs: Unpack[
|
|
1265
|
-
) ->
|
|
1559
|
+
def paginate( # type: ignore[override]
|
|
1560
|
+
self, **kwargs: Unpack[ListMonitoringSchedulesRequestPaginateTypeDef]
|
|
1561
|
+
) -> PageIterator[ListMonitoringSchedulesResponseTypeDef]:
|
|
1266
1562
|
"""
|
|
1267
1563
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
|
|
1268
1564
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
|
|
1269
1565
|
"""
|
|
1270
1566
|
|
|
1271
1567
|
|
|
1272
|
-
|
|
1568
|
+
if TYPE_CHECKING:
|
|
1569
|
+
_ListNotebookInstanceLifecycleConfigsPaginatorBase = Paginator[
|
|
1570
|
+
ListNotebookInstanceLifecycleConfigsOutputTypeDef
|
|
1571
|
+
]
|
|
1572
|
+
else:
|
|
1573
|
+
_ListNotebookInstanceLifecycleConfigsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1574
|
+
|
|
1575
|
+
|
|
1576
|
+
class ListNotebookInstanceLifecycleConfigsPaginator(
|
|
1577
|
+
_ListNotebookInstanceLifecycleConfigsPaginatorBase
|
|
1578
|
+
):
|
|
1273
1579
|
"""
|
|
1274
1580
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
|
|
1275
1581
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
|
|
1276
1582
|
"""
|
|
1277
1583
|
|
|
1278
|
-
def paginate(
|
|
1279
|
-
self,
|
|
1280
|
-
|
|
1281
|
-
ListNotebookInstanceLifecycleConfigsInputListNotebookInstanceLifecycleConfigsPaginateTypeDef
|
|
1282
|
-
],
|
|
1283
|
-
) -> _PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
|
|
1584
|
+
def paginate( # type: ignore[override]
|
|
1585
|
+
self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputPaginateTypeDef]
|
|
1586
|
+
) -> PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
|
|
1284
1587
|
"""
|
|
1285
1588
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
|
|
1286
1589
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
|
|
1287
1590
|
"""
|
|
1288
1591
|
|
|
1289
1592
|
|
|
1290
|
-
|
|
1593
|
+
if TYPE_CHECKING:
|
|
1594
|
+
_ListNotebookInstancesPaginatorBase = Paginator[ListNotebookInstancesOutputTypeDef]
|
|
1595
|
+
else:
|
|
1596
|
+
_ListNotebookInstancesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
|
+
class ListNotebookInstancesPaginator(_ListNotebookInstancesPaginatorBase):
|
|
1291
1600
|
"""
|
|
1292
1601
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances)
|
|
1293
1602
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
|
|
1294
1603
|
"""
|
|
1295
1604
|
|
|
1296
|
-
def paginate(
|
|
1297
|
-
self, **kwargs: Unpack[
|
|
1298
|
-
) ->
|
|
1605
|
+
def paginate( # type: ignore[override]
|
|
1606
|
+
self, **kwargs: Unpack[ListNotebookInstancesInputPaginateTypeDef]
|
|
1607
|
+
) -> PageIterator[ListNotebookInstancesOutputTypeDef]:
|
|
1299
1608
|
"""
|
|
1300
1609
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances.paginate)
|
|
1301
1610
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
|
|
1302
1611
|
"""
|
|
1303
1612
|
|
|
1304
1613
|
|
|
1305
|
-
|
|
1614
|
+
if TYPE_CHECKING:
|
|
1615
|
+
_ListOptimizationJobsPaginatorBase = Paginator[ListOptimizationJobsResponseTypeDef]
|
|
1616
|
+
else:
|
|
1617
|
+
_ListOptimizationJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
class ListOptimizationJobsPaginator(_ListOptimizationJobsPaginatorBase):
|
|
1306
1621
|
"""
|
|
1307
1622
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs)
|
|
1308
1623
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
|
|
1309
1624
|
"""
|
|
1310
1625
|
|
|
1311
|
-
def paginate(
|
|
1312
|
-
self, **kwargs: Unpack[
|
|
1313
|
-
) ->
|
|
1626
|
+
def paginate( # type: ignore[override]
|
|
1627
|
+
self, **kwargs: Unpack[ListOptimizationJobsRequestPaginateTypeDef]
|
|
1628
|
+
) -> PageIterator[ListOptimizationJobsResponseTypeDef]:
|
|
1314
1629
|
"""
|
|
1315
1630
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs.paginate)
|
|
1316
1631
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
|
|
1317
1632
|
"""
|
|
1318
1633
|
|
|
1319
1634
|
|
|
1320
|
-
|
|
1635
|
+
if TYPE_CHECKING:
|
|
1636
|
+
_ListPartnerAppsPaginatorBase = Paginator[ListPartnerAppsResponseTypeDef]
|
|
1637
|
+
else:
|
|
1638
|
+
_ListPartnerAppsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
class ListPartnerAppsPaginator(_ListPartnerAppsPaginatorBase):
|
|
1321
1642
|
"""
|
|
1322
1643
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPartnerApps.html#SageMaker.Paginator.ListPartnerApps)
|
|
1323
1644
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpartnerappspaginator)
|
|
1324
1645
|
"""
|
|
1325
1646
|
|
|
1326
|
-
def paginate(
|
|
1327
|
-
self, **kwargs: Unpack[
|
|
1328
|
-
) ->
|
|
1647
|
+
def paginate( # type: ignore[override]
|
|
1648
|
+
self, **kwargs: Unpack[ListPartnerAppsRequestPaginateTypeDef]
|
|
1649
|
+
) -> PageIterator[ListPartnerAppsResponseTypeDef]:
|
|
1329
1650
|
"""
|
|
1330
1651
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPartnerApps.html#SageMaker.Paginator.ListPartnerApps.paginate)
|
|
1331
1652
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpartnerappspaginator)
|
|
1332
1653
|
"""
|
|
1333
1654
|
|
|
1334
1655
|
|
|
1335
|
-
|
|
1656
|
+
if TYPE_CHECKING:
|
|
1657
|
+
_ListPipelineExecutionStepsPaginatorBase = Paginator[ListPipelineExecutionStepsResponseTypeDef]
|
|
1658
|
+
else:
|
|
1659
|
+
_ListPipelineExecutionStepsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
class ListPipelineExecutionStepsPaginator(_ListPipelineExecutionStepsPaginatorBase):
|
|
1336
1663
|
"""
|
|
1337
1664
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps)
|
|
1338
1665
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
|
|
1339
1666
|
"""
|
|
1340
1667
|
|
|
1341
|
-
def paginate(
|
|
1342
|
-
self,
|
|
1343
|
-
|
|
1344
|
-
ListPipelineExecutionStepsRequestListPipelineExecutionStepsPaginateTypeDef
|
|
1345
|
-
],
|
|
1346
|
-
) -> _PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
|
|
1668
|
+
def paginate( # type: ignore[override]
|
|
1669
|
+
self, **kwargs: Unpack[ListPipelineExecutionStepsRequestPaginateTypeDef]
|
|
1670
|
+
) -> PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
|
|
1347
1671
|
"""
|
|
1348
1672
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
|
|
1349
1673
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
|
|
1350
1674
|
"""
|
|
1351
1675
|
|
|
1352
1676
|
|
|
1353
|
-
|
|
1677
|
+
if TYPE_CHECKING:
|
|
1678
|
+
_ListPipelineExecutionsPaginatorBase = Paginator[ListPipelineExecutionsResponseTypeDef]
|
|
1679
|
+
else:
|
|
1680
|
+
_ListPipelineExecutionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
class ListPipelineExecutionsPaginator(_ListPipelineExecutionsPaginatorBase):
|
|
1354
1684
|
"""
|
|
1355
1685
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions)
|
|
1356
1686
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
|
|
1357
1687
|
"""
|
|
1358
1688
|
|
|
1359
|
-
def paginate(
|
|
1360
|
-
self, **kwargs: Unpack[
|
|
1361
|
-
) ->
|
|
1689
|
+
def paginate( # type: ignore[override]
|
|
1690
|
+
self, **kwargs: Unpack[ListPipelineExecutionsRequestPaginateTypeDef]
|
|
1691
|
+
) -> PageIterator[ListPipelineExecutionsResponseTypeDef]:
|
|
1362
1692
|
"""
|
|
1363
1693
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
|
|
1364
1694
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
|
|
1365
1695
|
"""
|
|
1366
1696
|
|
|
1367
1697
|
|
|
1368
|
-
|
|
1698
|
+
if TYPE_CHECKING:
|
|
1699
|
+
_ListPipelineParametersForExecutionPaginatorBase = Paginator[
|
|
1700
|
+
ListPipelineParametersForExecutionResponseTypeDef
|
|
1701
|
+
]
|
|
1702
|
+
else:
|
|
1703
|
+
_ListPipelineParametersForExecutionPaginatorBase = Paginator # type: ignore[assignment]
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
class ListPipelineParametersForExecutionPaginator(_ListPipelineParametersForExecutionPaginatorBase):
|
|
1369
1707
|
"""
|
|
1370
1708
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution)
|
|
1371
1709
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
|
|
1372
1710
|
"""
|
|
1373
1711
|
|
|
1374
|
-
def paginate(
|
|
1375
|
-
self,
|
|
1376
|
-
|
|
1377
|
-
ListPipelineParametersForExecutionRequestListPipelineParametersForExecutionPaginateTypeDef
|
|
1378
|
-
],
|
|
1379
|
-
) -> _PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
|
|
1712
|
+
def paginate( # type: ignore[override]
|
|
1713
|
+
self, **kwargs: Unpack[ListPipelineParametersForExecutionRequestPaginateTypeDef]
|
|
1714
|
+
) -> PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
|
|
1380
1715
|
"""
|
|
1381
1716
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
|
|
1382
1717
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
|
|
1383
1718
|
"""
|
|
1384
1719
|
|
|
1385
1720
|
|
|
1386
|
-
|
|
1721
|
+
if TYPE_CHECKING:
|
|
1722
|
+
_ListPipelinesPaginatorBase = Paginator[ListPipelinesResponseTypeDef]
|
|
1723
|
+
else:
|
|
1724
|
+
_ListPipelinesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1725
|
+
|
|
1726
|
+
|
|
1727
|
+
class ListPipelinesPaginator(_ListPipelinesPaginatorBase):
|
|
1387
1728
|
"""
|
|
1388
1729
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines)
|
|
1389
1730
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
|
|
1390
1731
|
"""
|
|
1391
1732
|
|
|
1392
|
-
def paginate(
|
|
1393
|
-
self, **kwargs: Unpack[
|
|
1394
|
-
) ->
|
|
1733
|
+
def paginate( # type: ignore[override]
|
|
1734
|
+
self, **kwargs: Unpack[ListPipelinesRequestPaginateTypeDef]
|
|
1735
|
+
) -> PageIterator[ListPipelinesResponseTypeDef]:
|
|
1395
1736
|
"""
|
|
1396
1737
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines.paginate)
|
|
1397
1738
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
|
|
1398
1739
|
"""
|
|
1399
1740
|
|
|
1400
1741
|
|
|
1401
|
-
|
|
1742
|
+
if TYPE_CHECKING:
|
|
1743
|
+
_ListProcessingJobsPaginatorBase = Paginator[ListProcessingJobsResponseTypeDef]
|
|
1744
|
+
else:
|
|
1745
|
+
_ListProcessingJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
class ListProcessingJobsPaginator(_ListProcessingJobsPaginatorBase):
|
|
1402
1749
|
"""
|
|
1403
1750
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs)
|
|
1404
1751
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
|
|
1405
1752
|
"""
|
|
1406
1753
|
|
|
1407
|
-
def paginate(
|
|
1408
|
-
self, **kwargs: Unpack[
|
|
1409
|
-
) ->
|
|
1754
|
+
def paginate( # type: ignore[override]
|
|
1755
|
+
self, **kwargs: Unpack[ListProcessingJobsRequestPaginateTypeDef]
|
|
1756
|
+
) -> PageIterator[ListProcessingJobsResponseTypeDef]:
|
|
1410
1757
|
"""
|
|
1411
1758
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs.paginate)
|
|
1412
1759
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
|
|
1413
1760
|
"""
|
|
1414
1761
|
|
|
1415
1762
|
|
|
1416
|
-
|
|
1763
|
+
if TYPE_CHECKING:
|
|
1764
|
+
_ListResourceCatalogsPaginatorBase = Paginator[ListResourceCatalogsResponseTypeDef]
|
|
1765
|
+
else:
|
|
1766
|
+
_ListResourceCatalogsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
class ListResourceCatalogsPaginator(_ListResourceCatalogsPaginatorBase):
|
|
1417
1770
|
"""
|
|
1418
1771
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs)
|
|
1419
1772
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
|
|
1420
1773
|
"""
|
|
1421
1774
|
|
|
1422
|
-
def paginate(
|
|
1423
|
-
self, **kwargs: Unpack[
|
|
1424
|
-
) ->
|
|
1775
|
+
def paginate( # type: ignore[override]
|
|
1776
|
+
self, **kwargs: Unpack[ListResourceCatalogsRequestPaginateTypeDef]
|
|
1777
|
+
) -> PageIterator[ListResourceCatalogsResponseTypeDef]:
|
|
1425
1778
|
"""
|
|
1426
1779
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs.paginate)
|
|
1427
1780
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
|
|
1428
1781
|
"""
|
|
1429
1782
|
|
|
1430
1783
|
|
|
1431
|
-
|
|
1784
|
+
if TYPE_CHECKING:
|
|
1785
|
+
_ListSpacesPaginatorBase = Paginator[ListSpacesResponseTypeDef]
|
|
1786
|
+
else:
|
|
1787
|
+
_ListSpacesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1788
|
+
|
|
1789
|
+
|
|
1790
|
+
class ListSpacesPaginator(_ListSpacesPaginatorBase):
|
|
1432
1791
|
"""
|
|
1433
1792
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces)
|
|
1434
1793
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
|
|
1435
1794
|
"""
|
|
1436
1795
|
|
|
1437
|
-
def paginate(
|
|
1438
|
-
self, **kwargs: Unpack[
|
|
1439
|
-
) ->
|
|
1796
|
+
def paginate( # type: ignore[override]
|
|
1797
|
+
self, **kwargs: Unpack[ListSpacesRequestPaginateTypeDef]
|
|
1798
|
+
) -> PageIterator[ListSpacesResponseTypeDef]:
|
|
1440
1799
|
"""
|
|
1441
1800
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces.paginate)
|
|
1442
1801
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
|
|
1443
1802
|
"""
|
|
1444
1803
|
|
|
1445
1804
|
|
|
1446
|
-
|
|
1805
|
+
if TYPE_CHECKING:
|
|
1806
|
+
_ListStageDevicesPaginatorBase = Paginator[ListStageDevicesResponseTypeDef]
|
|
1807
|
+
else:
|
|
1808
|
+
_ListStageDevicesPaginatorBase = Paginator # type: ignore[assignment]
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
class ListStageDevicesPaginator(_ListStageDevicesPaginatorBase):
|
|
1447
1812
|
"""
|
|
1448
1813
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices)
|
|
1449
1814
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
|
|
1450
1815
|
"""
|
|
1451
1816
|
|
|
1452
|
-
def paginate(
|
|
1453
|
-
self, **kwargs: Unpack[
|
|
1454
|
-
) ->
|
|
1817
|
+
def paginate( # type: ignore[override]
|
|
1818
|
+
self, **kwargs: Unpack[ListStageDevicesRequestPaginateTypeDef]
|
|
1819
|
+
) -> PageIterator[ListStageDevicesResponseTypeDef]:
|
|
1455
1820
|
"""
|
|
1456
1821
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices.paginate)
|
|
1457
1822
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
|
|
1458
1823
|
"""
|
|
1459
1824
|
|
|
1460
1825
|
|
|
1461
|
-
|
|
1826
|
+
if TYPE_CHECKING:
|
|
1827
|
+
_ListStudioLifecycleConfigsPaginatorBase = Paginator[ListStudioLifecycleConfigsResponseTypeDef]
|
|
1828
|
+
else:
|
|
1829
|
+
_ListStudioLifecycleConfigsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1830
|
+
|
|
1831
|
+
|
|
1832
|
+
class ListStudioLifecycleConfigsPaginator(_ListStudioLifecycleConfigsPaginatorBase):
|
|
1462
1833
|
"""
|
|
1463
1834
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
|
|
1464
1835
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
|
|
1465
1836
|
"""
|
|
1466
1837
|
|
|
1467
|
-
def paginate(
|
|
1468
|
-
self,
|
|
1469
|
-
|
|
1470
|
-
ListStudioLifecycleConfigsRequestListStudioLifecycleConfigsPaginateTypeDef
|
|
1471
|
-
],
|
|
1472
|
-
) -> _PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
|
|
1838
|
+
def paginate( # type: ignore[override]
|
|
1839
|
+
self, **kwargs: Unpack[ListStudioLifecycleConfigsRequestPaginateTypeDef]
|
|
1840
|
+
) -> PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
|
|
1473
1841
|
"""
|
|
1474
1842
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
|
|
1475
1843
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
|
|
1476
1844
|
"""
|
|
1477
1845
|
|
|
1478
1846
|
|
|
1479
|
-
|
|
1847
|
+
if TYPE_CHECKING:
|
|
1848
|
+
_ListSubscribedWorkteamsPaginatorBase = Paginator[ListSubscribedWorkteamsResponseTypeDef]
|
|
1849
|
+
else:
|
|
1850
|
+
_ListSubscribedWorkteamsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
class ListSubscribedWorkteamsPaginator(_ListSubscribedWorkteamsPaginatorBase):
|
|
1480
1854
|
"""
|
|
1481
1855
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams)
|
|
1482
1856
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
|
|
1483
1857
|
"""
|
|
1484
1858
|
|
|
1485
|
-
def paginate(
|
|
1486
|
-
self, **kwargs: Unpack[
|
|
1487
|
-
) ->
|
|
1859
|
+
def paginate( # type: ignore[override]
|
|
1860
|
+
self, **kwargs: Unpack[ListSubscribedWorkteamsRequestPaginateTypeDef]
|
|
1861
|
+
) -> PageIterator[ListSubscribedWorkteamsResponseTypeDef]:
|
|
1488
1862
|
"""
|
|
1489
1863
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
|
|
1490
1864
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
|
|
1491
1865
|
"""
|
|
1492
1866
|
|
|
1493
1867
|
|
|
1494
|
-
|
|
1868
|
+
if TYPE_CHECKING:
|
|
1869
|
+
_ListTagsPaginatorBase = Paginator[ListTagsOutputTypeDef]
|
|
1870
|
+
else:
|
|
1871
|
+
_ListTagsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1872
|
+
|
|
1873
|
+
|
|
1874
|
+
class ListTagsPaginator(_ListTagsPaginatorBase):
|
|
1495
1875
|
"""
|
|
1496
1876
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags)
|
|
1497
1877
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
|
|
1498
1878
|
"""
|
|
1499
1879
|
|
|
1500
|
-
def paginate(
|
|
1501
|
-
self, **kwargs: Unpack[
|
|
1502
|
-
) ->
|
|
1880
|
+
def paginate( # type: ignore[override]
|
|
1881
|
+
self, **kwargs: Unpack[ListTagsInputPaginateTypeDef]
|
|
1882
|
+
) -> PageIterator[ListTagsOutputTypeDef]:
|
|
1503
1883
|
"""
|
|
1504
1884
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags.paginate)
|
|
1505
1885
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
|
|
1506
1886
|
"""
|
|
1507
1887
|
|
|
1508
1888
|
|
|
1509
|
-
|
|
1889
|
+
if TYPE_CHECKING:
|
|
1890
|
+
_ListTrainingJobsForHyperParameterTuningJobPaginatorBase = Paginator[
|
|
1891
|
+
ListTrainingJobsForHyperParameterTuningJobResponseTypeDef
|
|
1892
|
+
]
|
|
1893
|
+
else:
|
|
1894
|
+
_ListTrainingJobsForHyperParameterTuningJobPaginatorBase = Paginator # type: ignore[assignment]
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
class ListTrainingJobsForHyperParameterTuningJobPaginator(
|
|
1898
|
+
_ListTrainingJobsForHyperParameterTuningJobPaginatorBase
|
|
1899
|
+
):
|
|
1510
1900
|
"""
|
|
1511
1901
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
|
|
1512
1902
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
|
|
1513
1903
|
"""
|
|
1514
1904
|
|
|
1515
|
-
def paginate(
|
|
1516
|
-
self,
|
|
1517
|
-
|
|
1518
|
-
ListTrainingJobsForHyperParameterTuningJobRequestListTrainingJobsForHyperParameterTuningJobPaginateTypeDef
|
|
1519
|
-
],
|
|
1520
|
-
) -> _PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
|
|
1905
|
+
def paginate( # type: ignore[override]
|
|
1906
|
+
self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef]
|
|
1907
|
+
) -> PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
|
|
1521
1908
|
"""
|
|
1522
1909
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
|
|
1523
1910
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
|
|
1524
1911
|
"""
|
|
1525
1912
|
|
|
1526
1913
|
|
|
1527
|
-
|
|
1914
|
+
if TYPE_CHECKING:
|
|
1915
|
+
_ListTrainingJobsPaginatorBase = Paginator[ListTrainingJobsResponseTypeDef]
|
|
1916
|
+
else:
|
|
1917
|
+
_ListTrainingJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1918
|
+
|
|
1919
|
+
|
|
1920
|
+
class ListTrainingJobsPaginator(_ListTrainingJobsPaginatorBase):
|
|
1528
1921
|
"""
|
|
1529
1922
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs)
|
|
1530
1923
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
|
|
1531
1924
|
"""
|
|
1532
1925
|
|
|
1533
|
-
def paginate(
|
|
1534
|
-
self, **kwargs: Unpack[
|
|
1535
|
-
) ->
|
|
1926
|
+
def paginate( # type: ignore[override]
|
|
1927
|
+
self, **kwargs: Unpack[ListTrainingJobsRequestPaginateTypeDef]
|
|
1928
|
+
) -> PageIterator[ListTrainingJobsResponseTypeDef]:
|
|
1536
1929
|
"""
|
|
1537
1930
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs.paginate)
|
|
1538
1931
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
|
|
1539
1932
|
"""
|
|
1540
1933
|
|
|
1541
1934
|
|
|
1542
|
-
|
|
1935
|
+
if TYPE_CHECKING:
|
|
1936
|
+
_ListTrainingPlansPaginatorBase = Paginator[ListTrainingPlansResponseTypeDef]
|
|
1937
|
+
else:
|
|
1938
|
+
_ListTrainingPlansPaginatorBase = Paginator # type: ignore[assignment]
|
|
1939
|
+
|
|
1940
|
+
|
|
1941
|
+
class ListTrainingPlansPaginator(_ListTrainingPlansPaginatorBase):
|
|
1543
1942
|
"""
|
|
1544
1943
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingPlans.html#SageMaker.Paginator.ListTrainingPlans)
|
|
1545
1944
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingplanspaginator)
|
|
1546
1945
|
"""
|
|
1547
1946
|
|
|
1548
|
-
def paginate(
|
|
1549
|
-
self, **kwargs: Unpack[
|
|
1550
|
-
) ->
|
|
1947
|
+
def paginate( # type: ignore[override]
|
|
1948
|
+
self, **kwargs: Unpack[ListTrainingPlansRequestPaginateTypeDef]
|
|
1949
|
+
) -> PageIterator[ListTrainingPlansResponseTypeDef]:
|
|
1551
1950
|
"""
|
|
1552
1951
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingPlans.html#SageMaker.Paginator.ListTrainingPlans.paginate)
|
|
1553
1952
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingplanspaginator)
|
|
1554
1953
|
"""
|
|
1555
1954
|
|
|
1556
1955
|
|
|
1557
|
-
|
|
1956
|
+
if TYPE_CHECKING:
|
|
1957
|
+
_ListTransformJobsPaginatorBase = Paginator[ListTransformJobsResponseTypeDef]
|
|
1958
|
+
else:
|
|
1959
|
+
_ListTransformJobsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
class ListTransformJobsPaginator(_ListTransformJobsPaginatorBase):
|
|
1558
1963
|
"""
|
|
1559
1964
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs)
|
|
1560
1965
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
|
|
1561
1966
|
"""
|
|
1562
1967
|
|
|
1563
|
-
def paginate(
|
|
1564
|
-
self, **kwargs: Unpack[
|
|
1565
|
-
) ->
|
|
1968
|
+
def paginate( # type: ignore[override]
|
|
1969
|
+
self, **kwargs: Unpack[ListTransformJobsRequestPaginateTypeDef]
|
|
1970
|
+
) -> PageIterator[ListTransformJobsResponseTypeDef]:
|
|
1566
1971
|
"""
|
|
1567
1972
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs.paginate)
|
|
1568
1973
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
|
|
1569
1974
|
"""
|
|
1570
1975
|
|
|
1571
1976
|
|
|
1572
|
-
|
|
1977
|
+
if TYPE_CHECKING:
|
|
1978
|
+
_ListTrialComponentsPaginatorBase = Paginator[ListTrialComponentsResponseTypeDef]
|
|
1979
|
+
else:
|
|
1980
|
+
_ListTrialComponentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
1981
|
+
|
|
1982
|
+
|
|
1983
|
+
class ListTrialComponentsPaginator(_ListTrialComponentsPaginatorBase):
|
|
1573
1984
|
"""
|
|
1574
1985
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents)
|
|
1575
1986
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
|
|
1576
1987
|
"""
|
|
1577
1988
|
|
|
1578
|
-
def paginate(
|
|
1579
|
-
self, **kwargs: Unpack[
|
|
1580
|
-
) ->
|
|
1989
|
+
def paginate( # type: ignore[override]
|
|
1990
|
+
self, **kwargs: Unpack[ListTrialComponentsRequestPaginateTypeDef]
|
|
1991
|
+
) -> PageIterator[ListTrialComponentsResponseTypeDef]:
|
|
1581
1992
|
"""
|
|
1582
1993
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents.paginate)
|
|
1583
1994
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
|
|
1584
1995
|
"""
|
|
1585
1996
|
|
|
1586
1997
|
|
|
1587
|
-
|
|
1998
|
+
if TYPE_CHECKING:
|
|
1999
|
+
_ListTrialsPaginatorBase = Paginator[ListTrialsResponseTypeDef]
|
|
2000
|
+
else:
|
|
2001
|
+
_ListTrialsPaginatorBase = Paginator # type: ignore[assignment]
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
class ListTrialsPaginator(_ListTrialsPaginatorBase):
|
|
1588
2005
|
"""
|
|
1589
2006
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials)
|
|
1590
2007
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
|
|
1591
2008
|
"""
|
|
1592
2009
|
|
|
1593
|
-
def paginate(
|
|
1594
|
-
self, **kwargs: Unpack[
|
|
1595
|
-
) ->
|
|
2010
|
+
def paginate( # type: ignore[override]
|
|
2011
|
+
self, **kwargs: Unpack[ListTrialsRequestPaginateTypeDef]
|
|
2012
|
+
) -> PageIterator[ListTrialsResponseTypeDef]:
|
|
1596
2013
|
"""
|
|
1597
2014
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials.paginate)
|
|
1598
2015
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
|
|
1599
2016
|
"""
|
|
1600
2017
|
|
|
1601
2018
|
|
|
1602
|
-
|
|
2019
|
+
if TYPE_CHECKING:
|
|
2020
|
+
_ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
|
|
2021
|
+
else:
|
|
2022
|
+
_ListUserProfilesPaginatorBase = Paginator # type: ignore[assignment]
|
|
2023
|
+
|
|
2024
|
+
|
|
2025
|
+
class ListUserProfilesPaginator(_ListUserProfilesPaginatorBase):
|
|
1603
2026
|
"""
|
|
1604
2027
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles)
|
|
1605
2028
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
|
|
1606
2029
|
"""
|
|
1607
2030
|
|
|
1608
|
-
def paginate(
|
|
1609
|
-
self, **kwargs: Unpack[
|
|
1610
|
-
) ->
|
|
2031
|
+
def paginate( # type: ignore[override]
|
|
2032
|
+
self, **kwargs: Unpack[ListUserProfilesRequestPaginateTypeDef]
|
|
2033
|
+
) -> PageIterator[ListUserProfilesResponseTypeDef]:
|
|
1611
2034
|
"""
|
|
1612
2035
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles.paginate)
|
|
1613
2036
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
|
|
1614
2037
|
"""
|
|
1615
2038
|
|
|
1616
2039
|
|
|
1617
|
-
|
|
2040
|
+
if TYPE_CHECKING:
|
|
2041
|
+
_ListWorkforcesPaginatorBase = Paginator[ListWorkforcesResponseTypeDef]
|
|
2042
|
+
else:
|
|
2043
|
+
_ListWorkforcesPaginatorBase = Paginator # type: ignore[assignment]
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
class ListWorkforcesPaginator(_ListWorkforcesPaginatorBase):
|
|
1618
2047
|
"""
|
|
1619
2048
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces)
|
|
1620
2049
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
|
|
1621
2050
|
"""
|
|
1622
2051
|
|
|
1623
|
-
def paginate(
|
|
1624
|
-
self, **kwargs: Unpack[
|
|
1625
|
-
) ->
|
|
2052
|
+
def paginate( # type: ignore[override]
|
|
2053
|
+
self, **kwargs: Unpack[ListWorkforcesRequestPaginateTypeDef]
|
|
2054
|
+
) -> PageIterator[ListWorkforcesResponseTypeDef]:
|
|
1626
2055
|
"""
|
|
1627
2056
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces.paginate)
|
|
1628
2057
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
|
|
1629
2058
|
"""
|
|
1630
2059
|
|
|
1631
2060
|
|
|
1632
|
-
|
|
2061
|
+
if TYPE_CHECKING:
|
|
2062
|
+
_ListWorkteamsPaginatorBase = Paginator[ListWorkteamsResponseTypeDef]
|
|
2063
|
+
else:
|
|
2064
|
+
_ListWorkteamsPaginatorBase = Paginator # type: ignore[assignment]
|
|
2065
|
+
|
|
2066
|
+
|
|
2067
|
+
class ListWorkteamsPaginator(_ListWorkteamsPaginatorBase):
|
|
1633
2068
|
"""
|
|
1634
2069
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams)
|
|
1635
2070
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
|
|
1636
2071
|
"""
|
|
1637
2072
|
|
|
1638
|
-
def paginate(
|
|
1639
|
-
self, **kwargs: Unpack[
|
|
1640
|
-
) ->
|
|
2073
|
+
def paginate( # type: ignore[override]
|
|
2074
|
+
self, **kwargs: Unpack[ListWorkteamsRequestPaginateTypeDef]
|
|
2075
|
+
) -> PageIterator[ListWorkteamsResponseTypeDef]:
|
|
1641
2076
|
"""
|
|
1642
2077
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams.paginate)
|
|
1643
2078
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
|
|
1644
2079
|
"""
|
|
1645
2080
|
|
|
1646
2081
|
|
|
1647
|
-
|
|
2082
|
+
if TYPE_CHECKING:
|
|
2083
|
+
_SearchPaginatorBase = Paginator[SearchResponseTypeDef]
|
|
2084
|
+
else:
|
|
2085
|
+
_SearchPaginatorBase = Paginator # type: ignore[assignment]
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
class SearchPaginator(_SearchPaginatorBase):
|
|
1648
2089
|
"""
|
|
1649
2090
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search)
|
|
1650
2091
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
|
|
1651
2092
|
"""
|
|
1652
2093
|
|
|
1653
|
-
def paginate(
|
|
1654
|
-
self, **kwargs: Unpack[
|
|
1655
|
-
) ->
|
|
2094
|
+
def paginate( # type: ignore[override]
|
|
2095
|
+
self, **kwargs: Unpack[SearchRequestPaginateTypeDef]
|
|
2096
|
+
) -> PageIterator[SearchResponseTypeDef]:
|
|
1656
2097
|
"""
|
|
1657
2098
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search.paginate)
|
|
1658
2099
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
|