mypy-boto3-sagemaker 1.21.36__py3-none-any.whl → 1.41.1__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.
@@ -1,7 +1,9 @@
1
1
  """
2
2
  Type annotations for sagemaker service client paginators.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/)
5
+
6
+ Copyright 2025 Vlad Emelianov
5
7
 
6
8
  Usage::
7
9
 
@@ -10,21 +12,29 @@ Usage::
10
12
 
11
13
  from mypy_boto3_sagemaker.client import SageMakerClient
12
14
  from mypy_boto3_sagemaker.paginator import (
15
+ CreateHubContentPresignedUrlsPaginator,
13
16
  ListActionsPaginator,
14
17
  ListAlgorithmsPaginator,
18
+ ListAliasesPaginator,
15
19
  ListAppImageConfigsPaginator,
16
20
  ListAppsPaginator,
17
21
  ListArtifactsPaginator,
18
22
  ListAssociationsPaginator,
19
23
  ListAutoMLJobsPaginator,
20
24
  ListCandidatesForAutoMLJobPaginator,
25
+ ListClusterEventsPaginator,
26
+ ListClusterNodesPaginator,
27
+ ListClusterSchedulerConfigsPaginator,
28
+ ListClustersPaginator,
21
29
  ListCodeRepositoriesPaginator,
22
30
  ListCompilationJobsPaginator,
31
+ ListComputeQuotasPaginator,
23
32
  ListContextsPaginator,
24
33
  ListDataQualityJobDefinitionsPaginator,
25
34
  ListDeviceFleetsPaginator,
26
35
  ListDevicesPaginator,
27
36
  ListDomainsPaginator,
37
+ ListEdgeDeploymentPlansPaginator,
28
38
  ListEdgePackagingJobsPaginator,
29
39
  ListEndpointConfigsPaginator,
30
40
  ListEndpointsPaginator,
@@ -35,34 +45,51 @@ Usage::
35
45
  ListHyperParameterTuningJobsPaginator,
36
46
  ListImageVersionsPaginator,
37
47
  ListImagesPaginator,
48
+ ListInferenceComponentsPaginator,
49
+ ListInferenceExperimentsPaginator,
50
+ ListInferenceRecommendationsJobStepsPaginator,
38
51
  ListInferenceRecommendationsJobsPaginator,
39
- ListLabelingJobsPaginator,
40
52
  ListLabelingJobsForWorkteamPaginator,
53
+ ListLabelingJobsPaginator,
41
54
  ListLineageGroupsPaginator,
55
+ ListMlflowTrackingServersPaginator,
42
56
  ListModelBiasJobDefinitionsPaginator,
57
+ ListModelCardExportJobsPaginator,
58
+ ListModelCardVersionsPaginator,
59
+ ListModelCardsPaginator,
43
60
  ListModelExplainabilityJobDefinitionsPaginator,
44
61
  ListModelMetadataPaginator,
45
62
  ListModelPackageGroupsPaginator,
46
63
  ListModelPackagesPaginator,
47
64
  ListModelQualityJobDefinitionsPaginator,
48
65
  ListModelsPaginator,
66
+ ListMonitoringAlertHistoryPaginator,
67
+ ListMonitoringAlertsPaginator,
49
68
  ListMonitoringExecutionsPaginator,
50
69
  ListMonitoringSchedulesPaginator,
51
70
  ListNotebookInstanceLifecycleConfigsPaginator,
52
71
  ListNotebookInstancesPaginator,
72
+ ListOptimizationJobsPaginator,
73
+ ListPartnerAppsPaginator,
53
74
  ListPipelineExecutionStepsPaginator,
54
75
  ListPipelineExecutionsPaginator,
55
76
  ListPipelineParametersForExecutionPaginator,
77
+ ListPipelineVersionsPaginator,
56
78
  ListPipelinesPaginator,
57
79
  ListProcessingJobsPaginator,
80
+ ListResourceCatalogsPaginator,
81
+ ListSpacesPaginator,
82
+ ListStageDevicesPaginator,
58
83
  ListStudioLifecycleConfigsPaginator,
59
84
  ListSubscribedWorkteamsPaginator,
60
85
  ListTagsPaginator,
61
- ListTrainingJobsPaginator,
62
86
  ListTrainingJobsForHyperParameterTuningJobPaginator,
87
+ ListTrainingJobsPaginator,
88
+ ListTrainingPlansPaginator,
63
89
  ListTransformJobsPaginator,
64
90
  ListTrialComponentsPaginator,
65
91
  ListTrialsPaginator,
92
+ ListUltraServersByReservedCapacityPaginator,
66
93
  ListUserProfilesPaginator,
67
94
  ListWorkforcesPaginator,
68
95
  ListWorkteamsPaginator,
@@ -72,21 +99,29 @@ Usage::
72
99
  session = Session()
73
100
  client: SageMakerClient = session.client("sagemaker")
74
101
 
102
+ create_hub_content_presigned_urls_paginator: CreateHubContentPresignedUrlsPaginator = client.get_paginator("create_hub_content_presigned_urls")
75
103
  list_actions_paginator: ListActionsPaginator = client.get_paginator("list_actions")
76
104
  list_algorithms_paginator: ListAlgorithmsPaginator = client.get_paginator("list_algorithms")
105
+ list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
77
106
  list_app_image_configs_paginator: ListAppImageConfigsPaginator = client.get_paginator("list_app_image_configs")
78
107
  list_apps_paginator: ListAppsPaginator = client.get_paginator("list_apps")
79
108
  list_artifacts_paginator: ListArtifactsPaginator = client.get_paginator("list_artifacts")
80
109
  list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
81
110
  list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
82
111
  list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
112
+ list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
113
+ list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
114
+ list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
115
+ list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
83
116
  list_code_repositories_paginator: ListCodeRepositoriesPaginator = client.get_paginator("list_code_repositories")
84
117
  list_compilation_jobs_paginator: ListCompilationJobsPaginator = client.get_paginator("list_compilation_jobs")
118
+ list_compute_quotas_paginator: ListComputeQuotasPaginator = client.get_paginator("list_compute_quotas")
85
119
  list_contexts_paginator: ListContextsPaginator = client.get_paginator("list_contexts")
86
120
  list_data_quality_job_definitions_paginator: ListDataQualityJobDefinitionsPaginator = client.get_paginator("list_data_quality_job_definitions")
87
121
  list_device_fleets_paginator: ListDeviceFleetsPaginator = client.get_paginator("list_device_fleets")
88
122
  list_devices_paginator: ListDevicesPaginator = client.get_paginator("list_devices")
89
123
  list_domains_paginator: ListDomainsPaginator = client.get_paginator("list_domains")
124
+ list_edge_deployment_plans_paginator: ListEdgeDeploymentPlansPaginator = client.get_paginator("list_edge_deployment_plans")
90
125
  list_edge_packaging_jobs_paginator: ListEdgePackagingJobsPaginator = client.get_paginator("list_edge_packaging_jobs")
91
126
  list_endpoint_configs_paginator: ListEndpointConfigsPaginator = client.get_paginator("list_endpoint_configs")
92
127
  list_endpoints_paginator: ListEndpointsPaginator = client.get_paginator("list_endpoints")
@@ -97,204 +132,262 @@ Usage::
97
132
  list_hyper_parameter_tuning_jobs_paginator: ListHyperParameterTuningJobsPaginator = client.get_paginator("list_hyper_parameter_tuning_jobs")
98
133
  list_image_versions_paginator: ListImageVersionsPaginator = client.get_paginator("list_image_versions")
99
134
  list_images_paginator: ListImagesPaginator = client.get_paginator("list_images")
135
+ list_inference_components_paginator: ListInferenceComponentsPaginator = client.get_paginator("list_inference_components")
136
+ list_inference_experiments_paginator: ListInferenceExperimentsPaginator = client.get_paginator("list_inference_experiments")
137
+ list_inference_recommendations_job_steps_paginator: ListInferenceRecommendationsJobStepsPaginator = client.get_paginator("list_inference_recommendations_job_steps")
100
138
  list_inference_recommendations_jobs_paginator: ListInferenceRecommendationsJobsPaginator = client.get_paginator("list_inference_recommendations_jobs")
101
- list_labeling_jobs_paginator: ListLabelingJobsPaginator = client.get_paginator("list_labeling_jobs")
102
139
  list_labeling_jobs_for_workteam_paginator: ListLabelingJobsForWorkteamPaginator = client.get_paginator("list_labeling_jobs_for_workteam")
140
+ list_labeling_jobs_paginator: ListLabelingJobsPaginator = client.get_paginator("list_labeling_jobs")
103
141
  list_lineage_groups_paginator: ListLineageGroupsPaginator = client.get_paginator("list_lineage_groups")
142
+ list_mlflow_tracking_servers_paginator: ListMlflowTrackingServersPaginator = client.get_paginator("list_mlflow_tracking_servers")
104
143
  list_model_bias_job_definitions_paginator: ListModelBiasJobDefinitionsPaginator = client.get_paginator("list_model_bias_job_definitions")
144
+ list_model_card_export_jobs_paginator: ListModelCardExportJobsPaginator = client.get_paginator("list_model_card_export_jobs")
145
+ list_model_card_versions_paginator: ListModelCardVersionsPaginator = client.get_paginator("list_model_card_versions")
146
+ list_model_cards_paginator: ListModelCardsPaginator = client.get_paginator("list_model_cards")
105
147
  list_model_explainability_job_definitions_paginator: ListModelExplainabilityJobDefinitionsPaginator = client.get_paginator("list_model_explainability_job_definitions")
106
148
  list_model_metadata_paginator: ListModelMetadataPaginator = client.get_paginator("list_model_metadata")
107
149
  list_model_package_groups_paginator: ListModelPackageGroupsPaginator = client.get_paginator("list_model_package_groups")
108
150
  list_model_packages_paginator: ListModelPackagesPaginator = client.get_paginator("list_model_packages")
109
151
  list_model_quality_job_definitions_paginator: ListModelQualityJobDefinitionsPaginator = client.get_paginator("list_model_quality_job_definitions")
110
152
  list_models_paginator: ListModelsPaginator = client.get_paginator("list_models")
153
+ list_monitoring_alert_history_paginator: ListMonitoringAlertHistoryPaginator = client.get_paginator("list_monitoring_alert_history")
154
+ list_monitoring_alerts_paginator: ListMonitoringAlertsPaginator = client.get_paginator("list_monitoring_alerts")
111
155
  list_monitoring_executions_paginator: ListMonitoringExecutionsPaginator = client.get_paginator("list_monitoring_executions")
112
156
  list_monitoring_schedules_paginator: ListMonitoringSchedulesPaginator = client.get_paginator("list_monitoring_schedules")
113
157
  list_notebook_instance_lifecycle_configs_paginator: ListNotebookInstanceLifecycleConfigsPaginator = client.get_paginator("list_notebook_instance_lifecycle_configs")
114
158
  list_notebook_instances_paginator: ListNotebookInstancesPaginator = client.get_paginator("list_notebook_instances")
159
+ list_optimization_jobs_paginator: ListOptimizationJobsPaginator = client.get_paginator("list_optimization_jobs")
160
+ list_partner_apps_paginator: ListPartnerAppsPaginator = client.get_paginator("list_partner_apps")
115
161
  list_pipeline_execution_steps_paginator: ListPipelineExecutionStepsPaginator = client.get_paginator("list_pipeline_execution_steps")
116
162
  list_pipeline_executions_paginator: ListPipelineExecutionsPaginator = client.get_paginator("list_pipeline_executions")
117
163
  list_pipeline_parameters_for_execution_paginator: ListPipelineParametersForExecutionPaginator = client.get_paginator("list_pipeline_parameters_for_execution")
164
+ list_pipeline_versions_paginator: ListPipelineVersionsPaginator = client.get_paginator("list_pipeline_versions")
118
165
  list_pipelines_paginator: ListPipelinesPaginator = client.get_paginator("list_pipelines")
119
166
  list_processing_jobs_paginator: ListProcessingJobsPaginator = client.get_paginator("list_processing_jobs")
167
+ list_resource_catalogs_paginator: ListResourceCatalogsPaginator = client.get_paginator("list_resource_catalogs")
168
+ list_spaces_paginator: ListSpacesPaginator = client.get_paginator("list_spaces")
169
+ list_stage_devices_paginator: ListStageDevicesPaginator = client.get_paginator("list_stage_devices")
120
170
  list_studio_lifecycle_configs_paginator: ListStudioLifecycleConfigsPaginator = client.get_paginator("list_studio_lifecycle_configs")
121
171
  list_subscribed_workteams_paginator: ListSubscribedWorkteamsPaginator = client.get_paginator("list_subscribed_workteams")
122
172
  list_tags_paginator: ListTagsPaginator = client.get_paginator("list_tags")
123
- list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
124
173
  list_training_jobs_for_hyper_parameter_tuning_job_paginator: ListTrainingJobsForHyperParameterTuningJobPaginator = client.get_paginator("list_training_jobs_for_hyper_parameter_tuning_job")
174
+ list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
175
+ list_training_plans_paginator: ListTrainingPlansPaginator = client.get_paginator("list_training_plans")
125
176
  list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
126
177
  list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
127
178
  list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
179
+ list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = client.get_paginator("list_ultra_servers_by_reserved_capacity")
128
180
  list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
129
181
  list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
130
182
  list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
131
183
  search_paginator: SearchPaginator = client.get_paginator("search")
132
184
  ```
133
185
  """
186
+
187
+ from __future__ import annotations
188
+
134
189
  import sys
135
- from datetime import datetime
136
- from typing import Generic, Iterator, TypeVar, Union
137
-
138
- from botocore.paginate import PageIterator
139
- from botocore.paginate import Paginator as Boto3Paginator
140
-
141
- from .literals import (
142
- AlgorithmSortByType,
143
- AppImageConfigSortKeyType,
144
- AssociationEdgeTypeType,
145
- AutoMLJobStatusType,
146
- AutoMLSortByType,
147
- AutoMLSortOrderType,
148
- CandidateSortByType,
149
- CandidateStatusType,
150
- CodeRepositorySortByType,
151
- CodeRepositorySortOrderType,
152
- CompilationJobStatusType,
153
- EdgePackagingJobStatusType,
154
- EndpointConfigSortKeyType,
155
- EndpointSortKeyType,
156
- EndpointStatusType,
157
- ExecutionStatusType,
158
- FeatureGroupSortByType,
159
- FeatureGroupSortOrderType,
160
- FeatureGroupStatusType,
161
- HyperParameterTuningJobSortByOptionsType,
162
- HyperParameterTuningJobStatusType,
163
- ImageSortByType,
164
- ImageSortOrderType,
165
- ImageVersionSortByType,
166
- ImageVersionSortOrderType,
167
- LabelingJobStatusType,
168
- ListCompilationJobsSortByType,
169
- ListDeviceFleetsSortByType,
170
- ListEdgePackagingJobsSortByType,
171
- ListInferenceRecommendationsJobsSortByType,
172
- ListWorkforcesSortByOptionsType,
173
- ListWorkteamsSortByOptionsType,
174
- ModelApprovalStatusType,
175
- ModelPackageGroupSortByType,
176
- ModelPackageSortByType,
177
- ModelPackageTypeType,
178
- ModelSortKeyType,
179
- MonitoringExecutionSortKeyType,
180
- MonitoringJobDefinitionSortKeyType,
181
- MonitoringScheduleSortKeyType,
182
- MonitoringTypeType,
183
- NotebookInstanceLifecycleConfigSortKeyType,
184
- NotebookInstanceLifecycleConfigSortOrderType,
185
- NotebookInstanceSortKeyType,
186
- NotebookInstanceSortOrderType,
187
- NotebookInstanceStatusType,
188
- OfflineStoreStatusValueType,
189
- OrderKeyType,
190
- ProcessingJobStatusType,
191
- RecommendationJobStatusType,
192
- ResourceTypeType,
193
- ScheduleStatusType,
194
- SearchSortOrderType,
195
- SortActionsByType,
196
- SortAssociationsByType,
197
- SortByType,
198
- SortContextsByType,
199
- SortExperimentsByType,
200
- SortLineageGroupsByType,
201
- SortOrderType,
202
- SortPipelineExecutionsByType,
203
- SortPipelinesByType,
204
- SortTrialComponentsByType,
205
- SortTrialsByType,
206
- StudioLifecycleConfigAppTypeType,
207
- StudioLifecycleConfigSortKeyType,
208
- TrainingJobSortByOptionsType,
209
- TrainingJobStatusType,
210
- TransformJobStatusType,
211
- UserProfileSortKeyType,
212
- )
190
+ from typing import TYPE_CHECKING
191
+
192
+ from botocore.paginate import PageIterator, Paginator
193
+
213
194
  from .type_defs import (
195
+ CreateHubContentPresignedUrlsRequestPaginateTypeDef,
196
+ CreateHubContentPresignedUrlsResponseTypeDef,
197
+ ListActionsRequestPaginateTypeDef,
214
198
  ListActionsResponseTypeDef,
199
+ ListAlgorithmsInputPaginateTypeDef,
215
200
  ListAlgorithmsOutputTypeDef,
201
+ ListAliasesRequestPaginateTypeDef,
202
+ ListAliasesResponseTypeDef,
203
+ ListAppImageConfigsRequestPaginateTypeDef,
216
204
  ListAppImageConfigsResponseTypeDef,
205
+ ListAppsRequestPaginateTypeDef,
217
206
  ListAppsResponseTypeDef,
207
+ ListArtifactsRequestPaginateTypeDef,
218
208
  ListArtifactsResponseTypeDef,
209
+ ListAssociationsRequestPaginateTypeDef,
219
210
  ListAssociationsResponseTypeDef,
211
+ ListAutoMLJobsRequestPaginateTypeDef,
220
212
  ListAutoMLJobsResponseTypeDef,
213
+ ListCandidatesForAutoMLJobRequestPaginateTypeDef,
221
214
  ListCandidatesForAutoMLJobResponseTypeDef,
215
+ ListClusterEventsRequestPaginateTypeDef,
216
+ ListClusterEventsResponseTypeDef,
217
+ ListClusterNodesRequestPaginateTypeDef,
218
+ ListClusterNodesResponseTypeDef,
219
+ ListClusterSchedulerConfigsRequestPaginateTypeDef,
220
+ ListClusterSchedulerConfigsResponseTypeDef,
221
+ ListClustersRequestPaginateTypeDef,
222
+ ListClustersResponseTypeDef,
223
+ ListCodeRepositoriesInputPaginateTypeDef,
222
224
  ListCodeRepositoriesOutputTypeDef,
225
+ ListCompilationJobsRequestPaginateTypeDef,
223
226
  ListCompilationJobsResponseTypeDef,
227
+ ListComputeQuotasRequestPaginateTypeDef,
228
+ ListComputeQuotasResponseTypeDef,
229
+ ListContextsRequestPaginateTypeDef,
224
230
  ListContextsResponseTypeDef,
231
+ ListDataQualityJobDefinitionsRequestPaginateTypeDef,
225
232
  ListDataQualityJobDefinitionsResponseTypeDef,
233
+ ListDeviceFleetsRequestPaginateTypeDef,
226
234
  ListDeviceFleetsResponseTypeDef,
235
+ ListDevicesRequestPaginateTypeDef,
227
236
  ListDevicesResponseTypeDef,
237
+ ListDomainsRequestPaginateTypeDef,
228
238
  ListDomainsResponseTypeDef,
239
+ ListEdgeDeploymentPlansRequestPaginateTypeDef,
240
+ ListEdgeDeploymentPlansResponseTypeDef,
241
+ ListEdgePackagingJobsRequestPaginateTypeDef,
229
242
  ListEdgePackagingJobsResponseTypeDef,
243
+ ListEndpointConfigsInputPaginateTypeDef,
230
244
  ListEndpointConfigsOutputTypeDef,
245
+ ListEndpointsInputPaginateTypeDef,
231
246
  ListEndpointsOutputTypeDef,
247
+ ListExperimentsRequestPaginateTypeDef,
232
248
  ListExperimentsResponseTypeDef,
249
+ ListFeatureGroupsRequestPaginateTypeDef,
233
250
  ListFeatureGroupsResponseTypeDef,
251
+ ListFlowDefinitionsRequestPaginateTypeDef,
234
252
  ListFlowDefinitionsResponseTypeDef,
253
+ ListHumanTaskUisRequestPaginateTypeDef,
235
254
  ListHumanTaskUisResponseTypeDef,
255
+ ListHyperParameterTuningJobsRequestPaginateTypeDef,
236
256
  ListHyperParameterTuningJobsResponseTypeDef,
257
+ ListImagesRequestPaginateTypeDef,
237
258
  ListImagesResponseTypeDef,
259
+ ListImageVersionsRequestPaginateTypeDef,
238
260
  ListImageVersionsResponseTypeDef,
261
+ ListInferenceComponentsInputPaginateTypeDef,
262
+ ListInferenceComponentsOutputTypeDef,
263
+ ListInferenceExperimentsRequestPaginateTypeDef,
264
+ ListInferenceExperimentsResponseTypeDef,
265
+ ListInferenceRecommendationsJobsRequestPaginateTypeDef,
239
266
  ListInferenceRecommendationsJobsResponseTypeDef,
267
+ ListInferenceRecommendationsJobStepsRequestPaginateTypeDef,
268
+ ListInferenceRecommendationsJobStepsResponseTypeDef,
269
+ ListLabelingJobsForWorkteamRequestPaginateTypeDef,
240
270
  ListLabelingJobsForWorkteamResponseTypeDef,
271
+ ListLabelingJobsRequestPaginateTypeDef,
241
272
  ListLabelingJobsResponseTypeDef,
273
+ ListLineageGroupsRequestPaginateTypeDef,
242
274
  ListLineageGroupsResponseTypeDef,
275
+ ListMlflowTrackingServersRequestPaginateTypeDef,
276
+ ListMlflowTrackingServersResponseTypeDef,
277
+ ListModelBiasJobDefinitionsRequestPaginateTypeDef,
243
278
  ListModelBiasJobDefinitionsResponseTypeDef,
279
+ ListModelCardExportJobsRequestPaginateTypeDef,
280
+ ListModelCardExportJobsResponseTypeDef,
281
+ ListModelCardsRequestPaginateTypeDef,
282
+ ListModelCardsResponseTypeDef,
283
+ ListModelCardVersionsRequestPaginateTypeDef,
284
+ ListModelCardVersionsResponseTypeDef,
285
+ ListModelExplainabilityJobDefinitionsRequestPaginateTypeDef,
244
286
  ListModelExplainabilityJobDefinitionsResponseTypeDef,
287
+ ListModelMetadataRequestPaginateTypeDef,
245
288
  ListModelMetadataResponseTypeDef,
289
+ ListModelPackageGroupsInputPaginateTypeDef,
246
290
  ListModelPackageGroupsOutputTypeDef,
291
+ ListModelPackagesInputPaginateTypeDef,
247
292
  ListModelPackagesOutputTypeDef,
293
+ ListModelQualityJobDefinitionsRequestPaginateTypeDef,
248
294
  ListModelQualityJobDefinitionsResponseTypeDef,
295
+ ListModelsInputPaginateTypeDef,
249
296
  ListModelsOutputTypeDef,
297
+ ListMonitoringAlertHistoryRequestPaginateTypeDef,
298
+ ListMonitoringAlertHistoryResponseTypeDef,
299
+ ListMonitoringAlertsRequestPaginateTypeDef,
300
+ ListMonitoringAlertsResponseTypeDef,
301
+ ListMonitoringExecutionsRequestPaginateTypeDef,
250
302
  ListMonitoringExecutionsResponseTypeDef,
303
+ ListMonitoringSchedulesRequestPaginateTypeDef,
251
304
  ListMonitoringSchedulesResponseTypeDef,
305
+ ListNotebookInstanceLifecycleConfigsInputPaginateTypeDef,
252
306
  ListNotebookInstanceLifecycleConfigsOutputTypeDef,
307
+ ListNotebookInstancesInputPaginateTypeDef,
253
308
  ListNotebookInstancesOutputTypeDef,
309
+ ListOptimizationJobsRequestPaginateTypeDef,
310
+ ListOptimizationJobsResponseTypeDef,
311
+ ListPartnerAppsRequestPaginateTypeDef,
312
+ ListPartnerAppsResponseTypeDef,
313
+ ListPipelineExecutionsRequestPaginateTypeDef,
254
314
  ListPipelineExecutionsResponseTypeDef,
315
+ ListPipelineExecutionStepsRequestPaginateTypeDef,
255
316
  ListPipelineExecutionStepsResponseTypeDef,
317
+ ListPipelineParametersForExecutionRequestPaginateTypeDef,
256
318
  ListPipelineParametersForExecutionResponseTypeDef,
319
+ ListPipelinesRequestPaginateTypeDef,
257
320
  ListPipelinesResponseTypeDef,
321
+ ListPipelineVersionsRequestPaginateTypeDef,
322
+ ListPipelineVersionsResponseTypeDef,
323
+ ListProcessingJobsRequestPaginateTypeDef,
258
324
  ListProcessingJobsResponseTypeDef,
325
+ ListResourceCatalogsRequestPaginateTypeDef,
326
+ ListResourceCatalogsResponseTypeDef,
327
+ ListSpacesRequestPaginateTypeDef,
328
+ ListSpacesResponseTypeDef,
329
+ ListStageDevicesRequestPaginateTypeDef,
330
+ ListStageDevicesResponseTypeDef,
331
+ ListStudioLifecycleConfigsRequestPaginateTypeDef,
259
332
  ListStudioLifecycleConfigsResponseTypeDef,
333
+ ListSubscribedWorkteamsRequestPaginateTypeDef,
260
334
  ListSubscribedWorkteamsResponseTypeDef,
335
+ ListTagsInputPaginateTypeDef,
261
336
  ListTagsOutputTypeDef,
337
+ ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef,
262
338
  ListTrainingJobsForHyperParameterTuningJobResponseTypeDef,
339
+ ListTrainingJobsRequestPaginateTypeDef,
263
340
  ListTrainingJobsResponseTypeDef,
341
+ ListTrainingPlansRequestPaginateTypeDef,
342
+ ListTrainingPlansResponseTypeDef,
343
+ ListTransformJobsRequestPaginateTypeDef,
264
344
  ListTransformJobsResponseTypeDef,
345
+ ListTrialComponentsRequestPaginateTypeDef,
265
346
  ListTrialComponentsResponseTypeDef,
347
+ ListTrialsRequestPaginateTypeDef,
266
348
  ListTrialsResponseTypeDef,
349
+ ListUltraServersByReservedCapacityRequestPaginateTypeDef,
350
+ ListUltraServersByReservedCapacityResponseTypeDef,
351
+ ListUserProfilesRequestPaginateTypeDef,
267
352
  ListUserProfilesResponseTypeDef,
353
+ ListWorkforcesRequestPaginateTypeDef,
268
354
  ListWorkforcesResponseTypeDef,
355
+ ListWorkteamsRequestPaginateTypeDef,
269
356
  ListWorkteamsResponseTypeDef,
270
- ModelMetadataSearchExpressionTypeDef,
271
- PaginatorConfigTypeDef,
272
- SearchExpressionTypeDef,
357
+ SearchRequestPaginateTypeDef,
273
358
  SearchResponseTypeDef,
274
359
  )
275
360
 
276
- if sys.version_info >= (3, 9):
277
- from typing import Literal
361
+ if sys.version_info >= (3, 12):
362
+ from typing import Unpack
278
363
  else:
279
- from typing_extensions import Literal
364
+ from typing_extensions import Unpack
280
365
 
281
366
 
282
367
  __all__ = (
368
+ "CreateHubContentPresignedUrlsPaginator",
283
369
  "ListActionsPaginator",
284
370
  "ListAlgorithmsPaginator",
371
+ "ListAliasesPaginator",
285
372
  "ListAppImageConfigsPaginator",
286
373
  "ListAppsPaginator",
287
374
  "ListArtifactsPaginator",
288
375
  "ListAssociationsPaginator",
289
376
  "ListAutoMLJobsPaginator",
290
377
  "ListCandidatesForAutoMLJobPaginator",
378
+ "ListClusterEventsPaginator",
379
+ "ListClusterNodesPaginator",
380
+ "ListClusterSchedulerConfigsPaginator",
381
+ "ListClustersPaginator",
291
382
  "ListCodeRepositoriesPaginator",
292
383
  "ListCompilationJobsPaginator",
384
+ "ListComputeQuotasPaginator",
293
385
  "ListContextsPaginator",
294
386
  "ListDataQualityJobDefinitionsPaginator",
295
387
  "ListDeviceFleetsPaginator",
296
388
  "ListDevicesPaginator",
297
389
  "ListDomainsPaginator",
390
+ "ListEdgeDeploymentPlansPaginator",
298
391
  "ListEdgePackagingJobsPaginator",
299
392
  "ListEndpointConfigsPaginator",
300
393
  "ListEndpointsPaginator",
@@ -305,34 +398,51 @@ __all__ = (
305
398
  "ListHyperParameterTuningJobsPaginator",
306
399
  "ListImageVersionsPaginator",
307
400
  "ListImagesPaginator",
401
+ "ListInferenceComponentsPaginator",
402
+ "ListInferenceExperimentsPaginator",
403
+ "ListInferenceRecommendationsJobStepsPaginator",
308
404
  "ListInferenceRecommendationsJobsPaginator",
309
- "ListLabelingJobsPaginator",
310
405
  "ListLabelingJobsForWorkteamPaginator",
406
+ "ListLabelingJobsPaginator",
311
407
  "ListLineageGroupsPaginator",
408
+ "ListMlflowTrackingServersPaginator",
312
409
  "ListModelBiasJobDefinitionsPaginator",
410
+ "ListModelCardExportJobsPaginator",
411
+ "ListModelCardVersionsPaginator",
412
+ "ListModelCardsPaginator",
313
413
  "ListModelExplainabilityJobDefinitionsPaginator",
314
414
  "ListModelMetadataPaginator",
315
415
  "ListModelPackageGroupsPaginator",
316
416
  "ListModelPackagesPaginator",
317
417
  "ListModelQualityJobDefinitionsPaginator",
318
418
  "ListModelsPaginator",
419
+ "ListMonitoringAlertHistoryPaginator",
420
+ "ListMonitoringAlertsPaginator",
319
421
  "ListMonitoringExecutionsPaginator",
320
422
  "ListMonitoringSchedulesPaginator",
321
423
  "ListNotebookInstanceLifecycleConfigsPaginator",
322
424
  "ListNotebookInstancesPaginator",
425
+ "ListOptimizationJobsPaginator",
426
+ "ListPartnerAppsPaginator",
323
427
  "ListPipelineExecutionStepsPaginator",
324
428
  "ListPipelineExecutionsPaginator",
325
429
  "ListPipelineParametersForExecutionPaginator",
430
+ "ListPipelineVersionsPaginator",
326
431
  "ListPipelinesPaginator",
327
432
  "ListProcessingJobsPaginator",
433
+ "ListResourceCatalogsPaginator",
434
+ "ListSpacesPaginator",
435
+ "ListStageDevicesPaginator",
328
436
  "ListStudioLifecycleConfigsPaginator",
329
437
  "ListSubscribedWorkteamsPaginator",
330
438
  "ListTagsPaginator",
331
- "ListTrainingJobsPaginator",
332
439
  "ListTrainingJobsForHyperParameterTuningJobPaginator",
440
+ "ListTrainingJobsPaginator",
441
+ "ListTrainingPlansPaginator",
333
442
  "ListTransformJobsPaginator",
334
443
  "ListTrialComponentsPaginator",
335
444
  "ListTrialsPaginator",
445
+ "ListUltraServersByReservedCapacityPaginator",
336
446
  "ListUserProfilesPaginator",
337
447
  "ListWorkforcesPaginator",
338
448
  "ListWorkteamsPaginator",
@@ -340,1300 +450,1759 @@ __all__ = (
340
450
  )
341
451
 
342
452
 
343
- _ItemTypeDef = TypeVar("_ItemTypeDef")
453
+ if TYPE_CHECKING:
454
+ _CreateHubContentPresignedUrlsPaginatorBase = Paginator[
455
+ CreateHubContentPresignedUrlsResponseTypeDef
456
+ ]
457
+ else:
458
+ _CreateHubContentPresignedUrlsPaginatorBase = Paginator # type: ignore[assignment]
459
+
344
460
 
461
+ class CreateHubContentPresignedUrlsPaginator(_CreateHubContentPresignedUrlsPaginatorBase):
462
+ """
463
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls)
464
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
465
+ """
345
466
 
346
- class _PageIterator(Generic[_ItemTypeDef], PageIterator):
347
- def __iter__(self) -> Iterator[_ItemTypeDef]:
467
+ def paginate( # type: ignore[override]
468
+ self, **kwargs: Unpack[CreateHubContentPresignedUrlsRequestPaginateTypeDef]
469
+ ) -> PageIterator[CreateHubContentPresignedUrlsResponseTypeDef]:
348
470
  """
349
- Proxy method to specify iterator item type.
471
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls.paginate)
472
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
350
473
  """
351
474
 
352
475
 
353
- class ListActionsPaginator(Boto3Paginator):
476
+ if TYPE_CHECKING:
477
+ _ListActionsPaginatorBase = Paginator[ListActionsResponseTypeDef]
478
+ else:
479
+ _ListActionsPaginatorBase = Paginator # type: ignore[assignment]
480
+
481
+
482
+ class ListActionsPaginator(_ListActionsPaginatorBase):
354
483
  """
355
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListActions)
484
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions)
356
485
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
357
486
  """
358
487
 
359
- def paginate(
360
- self,
361
- *,
362
- SourceUri: str = ...,
363
- ActionType: str = ...,
364
- CreatedAfter: Union[datetime, str] = ...,
365
- CreatedBefore: Union[datetime, str] = ...,
366
- SortBy: SortActionsByType = ...,
367
- SortOrder: SortOrderType = ...,
368
- PaginationConfig: "PaginatorConfigTypeDef" = ...
369
- ) -> _PageIterator[ListActionsResponseTypeDef]:
488
+ def paginate( # type: ignore[override]
489
+ self, **kwargs: Unpack[ListActionsRequestPaginateTypeDef]
490
+ ) -> PageIterator[ListActionsResponseTypeDef]:
370
491
  """
371
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListActions.paginate)
492
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions.paginate)
372
493
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
373
494
  """
374
495
 
375
496
 
376
- class ListAlgorithmsPaginator(Boto3Paginator):
497
+ if TYPE_CHECKING:
498
+ _ListAlgorithmsPaginatorBase = Paginator[ListAlgorithmsOutputTypeDef]
499
+ else:
500
+ _ListAlgorithmsPaginatorBase = Paginator # type: ignore[assignment]
501
+
502
+
503
+ class ListAlgorithmsPaginator(_ListAlgorithmsPaginatorBase):
377
504
  """
378
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAlgorithms)
505
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms)
379
506
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
380
507
  """
381
508
 
382
- def paginate(
383
- self,
384
- *,
385
- CreationTimeAfter: Union[datetime, str] = ...,
386
- CreationTimeBefore: Union[datetime, str] = ...,
387
- NameContains: str = ...,
388
- SortBy: AlgorithmSortByType = ...,
389
- SortOrder: SortOrderType = ...,
390
- PaginationConfig: "PaginatorConfigTypeDef" = ...
391
- ) -> _PageIterator[ListAlgorithmsOutputTypeDef]:
509
+ def paginate( # type: ignore[override]
510
+ self, **kwargs: Unpack[ListAlgorithmsInputPaginateTypeDef]
511
+ ) -> PageIterator[ListAlgorithmsOutputTypeDef]:
392
512
  """
393
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAlgorithms.paginate)
513
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms.paginate)
394
514
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
395
515
  """
396
516
 
397
517
 
398
- class ListAppImageConfigsPaginator(Boto3Paginator):
518
+ if TYPE_CHECKING:
519
+ _ListAliasesPaginatorBase = Paginator[ListAliasesResponseTypeDef]
520
+ else:
521
+ _ListAliasesPaginatorBase = Paginator # type: ignore[assignment]
522
+
523
+
524
+ class ListAliasesPaginator(_ListAliasesPaginatorBase):
525
+ """
526
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases)
527
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
399
528
  """
400
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAppImageConfigs)
529
+
530
+ def paginate( # type: ignore[override]
531
+ self, **kwargs: Unpack[ListAliasesRequestPaginateTypeDef]
532
+ ) -> PageIterator[ListAliasesResponseTypeDef]:
533
+ """
534
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases.paginate)
535
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
536
+ """
537
+
538
+
539
+ if TYPE_CHECKING:
540
+ _ListAppImageConfigsPaginatorBase = Paginator[ListAppImageConfigsResponseTypeDef]
541
+ else:
542
+ _ListAppImageConfigsPaginatorBase = Paginator # type: ignore[assignment]
543
+
544
+
545
+ class ListAppImageConfigsPaginator(_ListAppImageConfigsPaginatorBase):
546
+ """
547
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs)
401
548
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
402
549
  """
403
550
 
404
- def paginate(
405
- self,
406
- *,
407
- NameContains: str = ...,
408
- CreationTimeBefore: Union[datetime, str] = ...,
409
- CreationTimeAfter: Union[datetime, str] = ...,
410
- ModifiedTimeBefore: Union[datetime, str] = ...,
411
- ModifiedTimeAfter: Union[datetime, str] = ...,
412
- SortBy: AppImageConfigSortKeyType = ...,
413
- SortOrder: SortOrderType = ...,
414
- PaginationConfig: "PaginatorConfigTypeDef" = ...
415
- ) -> _PageIterator[ListAppImageConfigsResponseTypeDef]:
416
- """
417
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
551
+ def paginate( # type: ignore[override]
552
+ self, **kwargs: Unpack[ListAppImageConfigsRequestPaginateTypeDef]
553
+ ) -> PageIterator[ListAppImageConfigsResponseTypeDef]:
554
+ """
555
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
418
556
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
419
557
  """
420
558
 
421
559
 
422
- class ListAppsPaginator(Boto3Paginator):
560
+ if TYPE_CHECKING:
561
+ _ListAppsPaginatorBase = Paginator[ListAppsResponseTypeDef]
562
+ else:
563
+ _ListAppsPaginatorBase = Paginator # type: ignore[assignment]
564
+
565
+
566
+ class ListAppsPaginator(_ListAppsPaginatorBase):
423
567
  """
424
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListApps)
568
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps)
425
569
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
426
570
  """
427
571
 
428
- def paginate(
429
- self,
430
- *,
431
- SortOrder: SortOrderType = ...,
432
- SortBy: Literal["CreationTime"] = ...,
433
- DomainIdEquals: str = ...,
434
- UserProfileNameEquals: str = ...,
435
- PaginationConfig: "PaginatorConfigTypeDef" = ...
436
- ) -> _PageIterator[ListAppsResponseTypeDef]:
572
+ def paginate( # type: ignore[override]
573
+ self, **kwargs: Unpack[ListAppsRequestPaginateTypeDef]
574
+ ) -> PageIterator[ListAppsResponseTypeDef]:
437
575
  """
438
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListApps.paginate)
576
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps.paginate)
439
577
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
440
578
  """
441
579
 
442
580
 
443
- class ListArtifactsPaginator(Boto3Paginator):
581
+ if TYPE_CHECKING:
582
+ _ListArtifactsPaginatorBase = Paginator[ListArtifactsResponseTypeDef]
583
+ else:
584
+ _ListArtifactsPaginatorBase = Paginator # type: ignore[assignment]
585
+
586
+
587
+ class ListArtifactsPaginator(_ListArtifactsPaginatorBase):
444
588
  """
445
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListArtifacts)
589
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts)
446
590
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
447
591
  """
448
592
 
449
- def paginate(
450
- self,
451
- *,
452
- SourceUri: str = ...,
453
- ArtifactType: str = ...,
454
- CreatedAfter: Union[datetime, str] = ...,
455
- CreatedBefore: Union[datetime, str] = ...,
456
- SortBy: Literal["CreationTime"] = ...,
457
- SortOrder: SortOrderType = ...,
458
- PaginationConfig: "PaginatorConfigTypeDef" = ...
459
- ) -> _PageIterator[ListArtifactsResponseTypeDef]:
593
+ def paginate( # type: ignore[override]
594
+ self, **kwargs: Unpack[ListArtifactsRequestPaginateTypeDef]
595
+ ) -> PageIterator[ListArtifactsResponseTypeDef]:
460
596
  """
461
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListArtifacts.paginate)
597
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts.paginate)
462
598
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
463
599
  """
464
600
 
465
601
 
466
- class ListAssociationsPaginator(Boto3Paginator):
602
+ if TYPE_CHECKING:
603
+ _ListAssociationsPaginatorBase = Paginator[ListAssociationsResponseTypeDef]
604
+ else:
605
+ _ListAssociationsPaginatorBase = Paginator # type: ignore[assignment]
606
+
607
+
608
+ class ListAssociationsPaginator(_ListAssociationsPaginatorBase):
467
609
  """
468
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAssociations)
610
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations)
469
611
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
470
612
  """
471
613
 
472
- def paginate(
473
- self,
474
- *,
475
- SourceArn: str = ...,
476
- DestinationArn: str = ...,
477
- SourceType: str = ...,
478
- DestinationType: str = ...,
479
- AssociationType: AssociationEdgeTypeType = ...,
480
- CreatedAfter: Union[datetime, str] = ...,
481
- CreatedBefore: Union[datetime, str] = ...,
482
- SortBy: SortAssociationsByType = ...,
483
- SortOrder: SortOrderType = ...,
484
- PaginationConfig: "PaginatorConfigTypeDef" = ...
485
- ) -> _PageIterator[ListAssociationsResponseTypeDef]:
486
- """
487
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAssociations.paginate)
614
+ def paginate( # type: ignore[override]
615
+ self, **kwargs: Unpack[ListAssociationsRequestPaginateTypeDef]
616
+ ) -> PageIterator[ListAssociationsResponseTypeDef]:
617
+ """
618
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations.paginate)
488
619
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
489
620
  """
490
621
 
491
622
 
492
- class ListAutoMLJobsPaginator(Boto3Paginator):
623
+ if TYPE_CHECKING:
624
+ _ListAutoMLJobsPaginatorBase = Paginator[ListAutoMLJobsResponseTypeDef]
625
+ else:
626
+ _ListAutoMLJobsPaginatorBase = Paginator # type: ignore[assignment]
627
+
628
+
629
+ class ListAutoMLJobsPaginator(_ListAutoMLJobsPaginatorBase):
493
630
  """
494
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAutoMLJobs)
631
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs)
495
632
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
496
633
  """
497
634
 
498
- def paginate(
499
- self,
500
- *,
501
- CreationTimeAfter: Union[datetime, str] = ...,
502
- CreationTimeBefore: Union[datetime, str] = ...,
503
- LastModifiedTimeAfter: Union[datetime, str] = ...,
504
- LastModifiedTimeBefore: Union[datetime, str] = ...,
505
- NameContains: str = ...,
506
- StatusEquals: AutoMLJobStatusType = ...,
507
- SortOrder: AutoMLSortOrderType = ...,
508
- SortBy: AutoMLSortByType = ...,
509
- PaginationConfig: "PaginatorConfigTypeDef" = ...
510
- ) -> _PageIterator[ListAutoMLJobsResponseTypeDef]:
511
- """
512
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
635
+ def paginate( # type: ignore[override]
636
+ self, **kwargs: Unpack[ListAutoMLJobsRequestPaginateTypeDef]
637
+ ) -> PageIterator[ListAutoMLJobsResponseTypeDef]:
638
+ """
639
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
513
640
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
514
641
  """
515
642
 
516
643
 
517
- class ListCandidatesForAutoMLJobPaginator(Boto3Paginator):
644
+ if TYPE_CHECKING:
645
+ _ListCandidatesForAutoMLJobPaginatorBase = Paginator[ListCandidatesForAutoMLJobResponseTypeDef]
646
+ else:
647
+ _ListCandidatesForAutoMLJobPaginatorBase = Paginator # type: ignore[assignment]
648
+
649
+
650
+ class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBase):
518
651
  """
519
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
652
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
520
653
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
521
654
  """
522
655
 
523
- def paginate(
524
- self,
525
- *,
526
- AutoMLJobName: str,
527
- StatusEquals: CandidateStatusType = ...,
528
- CandidateNameEquals: str = ...,
529
- SortOrder: AutoMLSortOrderType = ...,
530
- SortBy: CandidateSortByType = ...,
531
- PaginationConfig: "PaginatorConfigTypeDef" = ...
532
- ) -> _PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
656
+ def paginate( # type: ignore[override]
657
+ self, **kwargs: Unpack[ListCandidatesForAutoMLJobRequestPaginateTypeDef]
658
+ ) -> PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
533
659
  """
534
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
660
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
535
661
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
536
662
  """
537
663
 
538
664
 
539
- class ListCodeRepositoriesPaginator(Boto3Paginator):
665
+ if TYPE_CHECKING:
666
+ _ListClusterEventsPaginatorBase = Paginator[ListClusterEventsResponseTypeDef]
667
+ else:
668
+ _ListClusterEventsPaginatorBase = Paginator # type: ignore[assignment]
669
+
670
+
671
+ class ListClusterEventsPaginator(_ListClusterEventsPaginatorBase):
672
+ """
673
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents)
674
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
675
+ """
676
+
677
+ def paginate( # type: ignore[override]
678
+ self, **kwargs: Unpack[ListClusterEventsRequestPaginateTypeDef]
679
+ ) -> PageIterator[ListClusterEventsResponseTypeDef]:
680
+ """
681
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents.paginate)
682
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
683
+ """
684
+
685
+
686
+ if TYPE_CHECKING:
687
+ _ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
688
+ else:
689
+ _ListClusterNodesPaginatorBase = Paginator # type: ignore[assignment]
690
+
691
+
692
+ class ListClusterNodesPaginator(_ListClusterNodesPaginatorBase):
693
+ """
694
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes)
695
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
696
+ """
697
+
698
+ def paginate( # type: ignore[override]
699
+ self, **kwargs: Unpack[ListClusterNodesRequestPaginateTypeDef]
700
+ ) -> PageIterator[ListClusterNodesResponseTypeDef]:
701
+ """
702
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes.paginate)
703
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
704
+ """
705
+
706
+
707
+ if TYPE_CHECKING:
708
+ _ListClusterSchedulerConfigsPaginatorBase = Paginator[
709
+ ListClusterSchedulerConfigsResponseTypeDef
710
+ ]
711
+ else:
712
+ _ListClusterSchedulerConfigsPaginatorBase = Paginator # type: ignore[assignment]
713
+
714
+
715
+ class ListClusterSchedulerConfigsPaginator(_ListClusterSchedulerConfigsPaginatorBase):
540
716
  """
541
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCodeRepositories)
717
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterSchedulerConfigs.html#SageMaker.Paginator.ListClusterSchedulerConfigs)
718
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterschedulerconfigspaginator)
719
+ """
720
+
721
+ def paginate( # type: ignore[override]
722
+ self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestPaginateTypeDef]
723
+ ) -> PageIterator[ListClusterSchedulerConfigsResponseTypeDef]:
724
+ """
725
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterSchedulerConfigs.html#SageMaker.Paginator.ListClusterSchedulerConfigs.paginate)
726
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterschedulerconfigspaginator)
727
+ """
728
+
729
+
730
+ if TYPE_CHECKING:
731
+ _ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
732
+ else:
733
+ _ListClustersPaginatorBase = Paginator # type: ignore[assignment]
734
+
735
+
736
+ class ListClustersPaginator(_ListClustersPaginatorBase):
737
+ """
738
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters)
739
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
740
+ """
741
+
742
+ def paginate( # type: ignore[override]
743
+ self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
744
+ ) -> PageIterator[ListClustersResponseTypeDef]:
745
+ """
746
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters.paginate)
747
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
748
+ """
749
+
750
+
751
+ if TYPE_CHECKING:
752
+ _ListCodeRepositoriesPaginatorBase = Paginator[ListCodeRepositoriesOutputTypeDef]
753
+ else:
754
+ _ListCodeRepositoriesPaginatorBase = Paginator # type: ignore[assignment]
755
+
756
+
757
+ class ListCodeRepositoriesPaginator(_ListCodeRepositoriesPaginatorBase):
758
+ """
759
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories)
542
760
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
543
761
  """
544
762
 
545
- def paginate(
546
- self,
547
- *,
548
- CreationTimeAfter: Union[datetime, str] = ...,
549
- CreationTimeBefore: Union[datetime, str] = ...,
550
- LastModifiedTimeAfter: Union[datetime, str] = ...,
551
- LastModifiedTimeBefore: Union[datetime, str] = ...,
552
- NameContains: str = ...,
553
- SortBy: CodeRepositorySortByType = ...,
554
- SortOrder: CodeRepositorySortOrderType = ...,
555
- PaginationConfig: "PaginatorConfigTypeDef" = ...
556
- ) -> _PageIterator[ListCodeRepositoriesOutputTypeDef]:
557
- """
558
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCodeRepositories.paginate)
763
+ def paginate( # type: ignore[override]
764
+ self, **kwargs: Unpack[ListCodeRepositoriesInputPaginateTypeDef]
765
+ ) -> PageIterator[ListCodeRepositoriesOutputTypeDef]:
766
+ """
767
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories.paginate)
559
768
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
560
769
  """
561
770
 
562
771
 
563
- class ListCompilationJobsPaginator(Boto3Paginator):
772
+ if TYPE_CHECKING:
773
+ _ListCompilationJobsPaginatorBase = Paginator[ListCompilationJobsResponseTypeDef]
774
+ else:
775
+ _ListCompilationJobsPaginatorBase = Paginator # type: ignore[assignment]
776
+
777
+
778
+ class ListCompilationJobsPaginator(_ListCompilationJobsPaginatorBase):
564
779
  """
565
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCompilationJobs)
780
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs)
566
781
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
567
782
  """
568
783
 
569
- def paginate(
570
- self,
571
- *,
572
- CreationTimeAfter: Union[datetime, str] = ...,
573
- CreationTimeBefore: Union[datetime, str] = ...,
574
- LastModifiedTimeAfter: Union[datetime, str] = ...,
575
- LastModifiedTimeBefore: Union[datetime, str] = ...,
576
- NameContains: str = ...,
577
- StatusEquals: CompilationJobStatusType = ...,
578
- SortBy: ListCompilationJobsSortByType = ...,
579
- SortOrder: SortOrderType = ...,
580
- PaginationConfig: "PaginatorConfigTypeDef" = ...
581
- ) -> _PageIterator[ListCompilationJobsResponseTypeDef]:
582
- """
583
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCompilationJobs.paginate)
784
+ def paginate( # type: ignore[override]
785
+ self, **kwargs: Unpack[ListCompilationJobsRequestPaginateTypeDef]
786
+ ) -> PageIterator[ListCompilationJobsResponseTypeDef]:
787
+ """
788
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs.paginate)
584
789
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
585
790
  """
586
791
 
587
792
 
588
- class ListContextsPaginator(Boto3Paginator):
793
+ if TYPE_CHECKING:
794
+ _ListComputeQuotasPaginatorBase = Paginator[ListComputeQuotasResponseTypeDef]
795
+ else:
796
+ _ListComputeQuotasPaginatorBase = Paginator # type: ignore[assignment]
797
+
798
+
799
+ class ListComputeQuotasPaginator(_ListComputeQuotasPaginatorBase):
800
+ """
801
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListComputeQuotas.html#SageMaker.Paginator.ListComputeQuotas)
802
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcomputequotaspaginator)
589
803
  """
590
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListContexts)
804
+
805
+ def paginate( # type: ignore[override]
806
+ self, **kwargs: Unpack[ListComputeQuotasRequestPaginateTypeDef]
807
+ ) -> PageIterator[ListComputeQuotasResponseTypeDef]:
808
+ """
809
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListComputeQuotas.html#SageMaker.Paginator.ListComputeQuotas.paginate)
810
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcomputequotaspaginator)
811
+ """
812
+
813
+
814
+ if TYPE_CHECKING:
815
+ _ListContextsPaginatorBase = Paginator[ListContextsResponseTypeDef]
816
+ else:
817
+ _ListContextsPaginatorBase = Paginator # type: ignore[assignment]
818
+
819
+
820
+ class ListContextsPaginator(_ListContextsPaginatorBase):
821
+ """
822
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts)
591
823
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
592
824
  """
593
825
 
594
- def paginate(
595
- self,
596
- *,
597
- SourceUri: str = ...,
598
- ContextType: str = ...,
599
- CreatedAfter: Union[datetime, str] = ...,
600
- CreatedBefore: Union[datetime, str] = ...,
601
- SortBy: SortContextsByType = ...,
602
- SortOrder: SortOrderType = ...,
603
- PaginationConfig: "PaginatorConfigTypeDef" = ...
604
- ) -> _PageIterator[ListContextsResponseTypeDef]:
826
+ def paginate( # type: ignore[override]
827
+ self, **kwargs: Unpack[ListContextsRequestPaginateTypeDef]
828
+ ) -> PageIterator[ListContextsResponseTypeDef]:
605
829
  """
606
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListContexts.paginate)
830
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts.paginate)
607
831
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
608
832
  """
609
833
 
610
834
 
611
- class ListDataQualityJobDefinitionsPaginator(Boto3Paginator):
835
+ if TYPE_CHECKING:
836
+ _ListDataQualityJobDefinitionsPaginatorBase = Paginator[
837
+ ListDataQualityJobDefinitionsResponseTypeDef
838
+ ]
839
+ else:
840
+ _ListDataQualityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
841
+
842
+
843
+ class ListDataQualityJobDefinitionsPaginator(_ListDataQualityJobDefinitionsPaginatorBase):
612
844
  """
613
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
845
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
614
846
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
615
847
  """
616
848
 
617
- def paginate(
618
- self,
619
- *,
620
- EndpointName: str = ...,
621
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
622
- SortOrder: SortOrderType = ...,
623
- NameContains: str = ...,
624
- CreationTimeBefore: Union[datetime, str] = ...,
625
- CreationTimeAfter: Union[datetime, str] = ...,
626
- PaginationConfig: "PaginatorConfigTypeDef" = ...
627
- ) -> _PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
849
+ def paginate( # type: ignore[override]
850
+ self, **kwargs: Unpack[ListDataQualityJobDefinitionsRequestPaginateTypeDef]
851
+ ) -> PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
628
852
  """
629
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
853
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
630
854
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
631
855
  """
632
856
 
633
857
 
634
- class ListDeviceFleetsPaginator(Boto3Paginator):
858
+ if TYPE_CHECKING:
859
+ _ListDeviceFleetsPaginatorBase = Paginator[ListDeviceFleetsResponseTypeDef]
860
+ else:
861
+ _ListDeviceFleetsPaginatorBase = Paginator # type: ignore[assignment]
862
+
863
+
864
+ class ListDeviceFleetsPaginator(_ListDeviceFleetsPaginatorBase):
635
865
  """
636
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDeviceFleets)
866
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets)
637
867
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
638
868
  """
639
869
 
640
- def paginate(
641
- self,
642
- *,
643
- CreationTimeAfter: Union[datetime, str] = ...,
644
- CreationTimeBefore: Union[datetime, str] = ...,
645
- LastModifiedTimeAfter: Union[datetime, str] = ...,
646
- LastModifiedTimeBefore: Union[datetime, str] = ...,
647
- NameContains: str = ...,
648
- SortBy: ListDeviceFleetsSortByType = ...,
649
- SortOrder: SortOrderType = ...,
650
- PaginationConfig: "PaginatorConfigTypeDef" = ...
651
- ) -> _PageIterator[ListDeviceFleetsResponseTypeDef]:
652
- """
653
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDeviceFleets.paginate)
870
+ def paginate( # type: ignore[override]
871
+ self, **kwargs: Unpack[ListDeviceFleetsRequestPaginateTypeDef]
872
+ ) -> PageIterator[ListDeviceFleetsResponseTypeDef]:
873
+ """
874
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets.paginate)
654
875
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
655
876
  """
656
877
 
657
878
 
658
- class ListDevicesPaginator(Boto3Paginator):
879
+ if TYPE_CHECKING:
880
+ _ListDevicesPaginatorBase = Paginator[ListDevicesResponseTypeDef]
881
+ else:
882
+ _ListDevicesPaginatorBase = Paginator # type: ignore[assignment]
883
+
884
+
885
+ class ListDevicesPaginator(_ListDevicesPaginatorBase):
659
886
  """
660
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDevices)
887
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices)
661
888
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
662
889
  """
663
890
 
664
- def paginate(
665
- self,
666
- *,
667
- LatestHeartbeatAfter: Union[datetime, str] = ...,
668
- ModelName: str = ...,
669
- DeviceFleetName: str = ...,
670
- PaginationConfig: "PaginatorConfigTypeDef" = ...
671
- ) -> _PageIterator[ListDevicesResponseTypeDef]:
891
+ def paginate( # type: ignore[override]
892
+ self, **kwargs: Unpack[ListDevicesRequestPaginateTypeDef]
893
+ ) -> PageIterator[ListDevicesResponseTypeDef]:
672
894
  """
673
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDevices.paginate)
895
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices.paginate)
674
896
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
675
897
  """
676
898
 
677
899
 
678
- class ListDomainsPaginator(Boto3Paginator):
900
+ if TYPE_CHECKING:
901
+ _ListDomainsPaginatorBase = Paginator[ListDomainsResponseTypeDef]
902
+ else:
903
+ _ListDomainsPaginatorBase = Paginator # type: ignore[assignment]
904
+
905
+
906
+ class ListDomainsPaginator(_ListDomainsPaginatorBase):
679
907
  """
680
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDomains)
908
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains)
681
909
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
682
910
  """
683
911
 
684
- def paginate(
685
- self, *, PaginationConfig: "PaginatorConfigTypeDef" = ...
686
- ) -> _PageIterator[ListDomainsResponseTypeDef]:
912
+ def paginate( # type: ignore[override]
913
+ self, **kwargs: Unpack[ListDomainsRequestPaginateTypeDef]
914
+ ) -> PageIterator[ListDomainsResponseTypeDef]:
687
915
  """
688
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDomains.paginate)
916
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains.paginate)
689
917
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
690
918
  """
691
919
 
692
920
 
693
- class ListEdgePackagingJobsPaginator(Boto3Paginator):
921
+ if TYPE_CHECKING:
922
+ _ListEdgeDeploymentPlansPaginatorBase = Paginator[ListEdgeDeploymentPlansResponseTypeDef]
923
+ else:
924
+ _ListEdgeDeploymentPlansPaginatorBase = Paginator # type: ignore[assignment]
925
+
926
+
927
+ class ListEdgeDeploymentPlansPaginator(_ListEdgeDeploymentPlansPaginatorBase):
928
+ """
929
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans)
930
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
694
931
  """
695
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgePackagingJobs)
932
+
933
+ def paginate( # type: ignore[override]
934
+ self, **kwargs: Unpack[ListEdgeDeploymentPlansRequestPaginateTypeDef]
935
+ ) -> PageIterator[ListEdgeDeploymentPlansResponseTypeDef]:
936
+ """
937
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans.paginate)
938
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
939
+ """
940
+
941
+
942
+ if TYPE_CHECKING:
943
+ _ListEdgePackagingJobsPaginatorBase = Paginator[ListEdgePackagingJobsResponseTypeDef]
944
+ else:
945
+ _ListEdgePackagingJobsPaginatorBase = Paginator # type: ignore[assignment]
946
+
947
+
948
+ class ListEdgePackagingJobsPaginator(_ListEdgePackagingJobsPaginatorBase):
949
+ """
950
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs)
696
951
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
697
952
  """
698
953
 
699
- def paginate(
700
- self,
701
- *,
702
- CreationTimeAfter: Union[datetime, str] = ...,
703
- CreationTimeBefore: Union[datetime, str] = ...,
704
- LastModifiedTimeAfter: Union[datetime, str] = ...,
705
- LastModifiedTimeBefore: Union[datetime, str] = ...,
706
- NameContains: str = ...,
707
- ModelNameContains: str = ...,
708
- StatusEquals: EdgePackagingJobStatusType = ...,
709
- SortBy: ListEdgePackagingJobsSortByType = ...,
710
- SortOrder: SortOrderType = ...,
711
- PaginationConfig: "PaginatorConfigTypeDef" = ...
712
- ) -> _PageIterator[ListEdgePackagingJobsResponseTypeDef]:
713
- """
714
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
954
+ def paginate( # type: ignore[override]
955
+ self, **kwargs: Unpack[ListEdgePackagingJobsRequestPaginateTypeDef]
956
+ ) -> PageIterator[ListEdgePackagingJobsResponseTypeDef]:
957
+ """
958
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
715
959
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
716
960
  """
717
961
 
718
962
 
719
- class ListEndpointConfigsPaginator(Boto3Paginator):
963
+ if TYPE_CHECKING:
964
+ _ListEndpointConfigsPaginatorBase = Paginator[ListEndpointConfigsOutputTypeDef]
965
+ else:
966
+ _ListEndpointConfigsPaginatorBase = Paginator # type: ignore[assignment]
967
+
968
+
969
+ class ListEndpointConfigsPaginator(_ListEndpointConfigsPaginatorBase):
720
970
  """
721
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpointConfigs)
971
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs)
722
972
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
723
973
  """
724
974
 
725
- def paginate(
726
- self,
727
- *,
728
- SortBy: EndpointConfigSortKeyType = ...,
729
- SortOrder: OrderKeyType = ...,
730
- NameContains: str = ...,
731
- CreationTimeBefore: Union[datetime, str] = ...,
732
- CreationTimeAfter: Union[datetime, str] = ...,
733
- PaginationConfig: "PaginatorConfigTypeDef" = ...
734
- ) -> _PageIterator[ListEndpointConfigsOutputTypeDef]:
975
+ def paginate( # type: ignore[override]
976
+ self, **kwargs: Unpack[ListEndpointConfigsInputPaginateTypeDef]
977
+ ) -> PageIterator[ListEndpointConfigsOutputTypeDef]:
735
978
  """
736
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
979
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
737
980
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
738
981
  """
739
982
 
740
983
 
741
- class ListEndpointsPaginator(Boto3Paginator):
984
+ if TYPE_CHECKING:
985
+ _ListEndpointsPaginatorBase = Paginator[ListEndpointsOutputTypeDef]
986
+ else:
987
+ _ListEndpointsPaginatorBase = Paginator # type: ignore[assignment]
988
+
989
+
990
+ class ListEndpointsPaginator(_ListEndpointsPaginatorBase):
742
991
  """
743
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpoints)
992
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints)
744
993
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
745
994
  """
746
995
 
747
- def paginate(
748
- self,
749
- *,
750
- SortBy: EndpointSortKeyType = ...,
751
- SortOrder: OrderKeyType = ...,
752
- NameContains: str = ...,
753
- CreationTimeBefore: Union[datetime, str] = ...,
754
- CreationTimeAfter: Union[datetime, str] = ...,
755
- LastModifiedTimeBefore: Union[datetime, str] = ...,
756
- LastModifiedTimeAfter: Union[datetime, str] = ...,
757
- StatusEquals: EndpointStatusType = ...,
758
- PaginationConfig: "PaginatorConfigTypeDef" = ...
759
- ) -> _PageIterator[ListEndpointsOutputTypeDef]:
760
- """
761
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpoints.paginate)
996
+ def paginate( # type: ignore[override]
997
+ self, **kwargs: Unpack[ListEndpointsInputPaginateTypeDef]
998
+ ) -> PageIterator[ListEndpointsOutputTypeDef]:
999
+ """
1000
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints.paginate)
762
1001
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
763
1002
  """
764
1003
 
765
1004
 
766
- class ListExperimentsPaginator(Boto3Paginator):
1005
+ if TYPE_CHECKING:
1006
+ _ListExperimentsPaginatorBase = Paginator[ListExperimentsResponseTypeDef]
1007
+ else:
1008
+ _ListExperimentsPaginatorBase = Paginator # type: ignore[assignment]
1009
+
1010
+
1011
+ class ListExperimentsPaginator(_ListExperimentsPaginatorBase):
767
1012
  """
768
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListExperiments)
1013
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments)
769
1014
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
770
1015
  """
771
1016
 
772
- def paginate(
773
- self,
774
- *,
775
- CreatedAfter: Union[datetime, str] = ...,
776
- CreatedBefore: Union[datetime, str] = ...,
777
- SortBy: SortExperimentsByType = ...,
778
- SortOrder: SortOrderType = ...,
779
- PaginationConfig: "PaginatorConfigTypeDef" = ...
780
- ) -> _PageIterator[ListExperimentsResponseTypeDef]:
1017
+ def paginate( # type: ignore[override]
1018
+ self, **kwargs: Unpack[ListExperimentsRequestPaginateTypeDef]
1019
+ ) -> PageIterator[ListExperimentsResponseTypeDef]:
781
1020
  """
782
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListExperiments.paginate)
1021
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments.paginate)
783
1022
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
784
1023
  """
785
1024
 
786
1025
 
787
- class ListFeatureGroupsPaginator(Boto3Paginator):
1026
+ if TYPE_CHECKING:
1027
+ _ListFeatureGroupsPaginatorBase = Paginator[ListFeatureGroupsResponseTypeDef]
1028
+ else:
1029
+ _ListFeatureGroupsPaginatorBase = Paginator # type: ignore[assignment]
1030
+
1031
+
1032
+ class ListFeatureGroupsPaginator(_ListFeatureGroupsPaginatorBase):
788
1033
  """
789
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFeatureGroups)
1034
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups)
790
1035
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
791
1036
  """
792
1037
 
793
- def paginate(
794
- self,
795
- *,
796
- NameContains: str = ...,
797
- FeatureGroupStatusEquals: FeatureGroupStatusType = ...,
798
- OfflineStoreStatusEquals: OfflineStoreStatusValueType = ...,
799
- CreationTimeAfter: Union[datetime, str] = ...,
800
- CreationTimeBefore: Union[datetime, str] = ...,
801
- SortOrder: FeatureGroupSortOrderType = ...,
802
- SortBy: FeatureGroupSortByType = ...,
803
- PaginationConfig: "PaginatorConfigTypeDef" = ...
804
- ) -> _PageIterator[ListFeatureGroupsResponseTypeDef]:
805
- """
806
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFeatureGroups.paginate)
1038
+ def paginate( # type: ignore[override]
1039
+ self, **kwargs: Unpack[ListFeatureGroupsRequestPaginateTypeDef]
1040
+ ) -> PageIterator[ListFeatureGroupsResponseTypeDef]:
1041
+ """
1042
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups.paginate)
807
1043
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
808
1044
  """
809
1045
 
810
1046
 
811
- class ListFlowDefinitionsPaginator(Boto3Paginator):
1047
+ if TYPE_CHECKING:
1048
+ _ListFlowDefinitionsPaginatorBase = Paginator[ListFlowDefinitionsResponseTypeDef]
1049
+ else:
1050
+ _ListFlowDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
1051
+
1052
+
1053
+ class ListFlowDefinitionsPaginator(_ListFlowDefinitionsPaginatorBase):
812
1054
  """
813
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFlowDefinitions)
1055
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions)
814
1056
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
815
1057
  """
816
1058
 
817
- def paginate(
818
- self,
819
- *,
820
- CreationTimeAfter: Union[datetime, str] = ...,
821
- CreationTimeBefore: Union[datetime, str] = ...,
822
- SortOrder: SortOrderType = ...,
823
- PaginationConfig: "PaginatorConfigTypeDef" = ...
824
- ) -> _PageIterator[ListFlowDefinitionsResponseTypeDef]:
1059
+ def paginate( # type: ignore[override]
1060
+ self, **kwargs: Unpack[ListFlowDefinitionsRequestPaginateTypeDef]
1061
+ ) -> PageIterator[ListFlowDefinitionsResponseTypeDef]:
825
1062
  """
826
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
1063
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
827
1064
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
828
1065
  """
829
1066
 
830
1067
 
831
- class ListHumanTaskUisPaginator(Boto3Paginator):
1068
+ if TYPE_CHECKING:
1069
+ _ListHumanTaskUisPaginatorBase = Paginator[ListHumanTaskUisResponseTypeDef]
1070
+ else:
1071
+ _ListHumanTaskUisPaginatorBase = Paginator # type: ignore[assignment]
1072
+
1073
+
1074
+ class ListHumanTaskUisPaginator(_ListHumanTaskUisPaginatorBase):
832
1075
  """
833
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHumanTaskUis)
1076
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis)
834
1077
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
835
1078
  """
836
1079
 
837
- def paginate(
838
- self,
839
- *,
840
- CreationTimeAfter: Union[datetime, str] = ...,
841
- CreationTimeBefore: Union[datetime, str] = ...,
842
- SortOrder: SortOrderType = ...,
843
- PaginationConfig: "PaginatorConfigTypeDef" = ...
844
- ) -> _PageIterator[ListHumanTaskUisResponseTypeDef]:
1080
+ def paginate( # type: ignore[override]
1081
+ self, **kwargs: Unpack[ListHumanTaskUisRequestPaginateTypeDef]
1082
+ ) -> PageIterator[ListHumanTaskUisResponseTypeDef]:
845
1083
  """
846
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
1084
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
847
1085
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
848
1086
  """
849
1087
 
850
1088
 
851
- class ListHyperParameterTuningJobsPaginator(Boto3Paginator):
1089
+ if TYPE_CHECKING:
1090
+ _ListHyperParameterTuningJobsPaginatorBase = Paginator[
1091
+ ListHyperParameterTuningJobsResponseTypeDef
1092
+ ]
1093
+ else:
1094
+ _ListHyperParameterTuningJobsPaginatorBase = Paginator # type: ignore[assignment]
1095
+
1096
+
1097
+ class ListHyperParameterTuningJobsPaginator(_ListHyperParameterTuningJobsPaginatorBase):
852
1098
  """
853
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
1099
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
854
1100
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
855
1101
  """
856
1102
 
857
- def paginate(
858
- self,
859
- *,
860
- SortBy: HyperParameterTuningJobSortByOptionsType = ...,
861
- SortOrder: SortOrderType = ...,
862
- NameContains: str = ...,
863
- CreationTimeAfter: Union[datetime, str] = ...,
864
- CreationTimeBefore: Union[datetime, str] = ...,
865
- LastModifiedTimeAfter: Union[datetime, str] = ...,
866
- LastModifiedTimeBefore: Union[datetime, str] = ...,
867
- StatusEquals: HyperParameterTuningJobStatusType = ...,
868
- PaginationConfig: "PaginatorConfigTypeDef" = ...
869
- ) -> _PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
870
- """
871
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
1103
+ def paginate( # type: ignore[override]
1104
+ self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestPaginateTypeDef]
1105
+ ) -> PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
1106
+ """
1107
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
872
1108
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
873
1109
  """
874
1110
 
875
1111
 
876
- class ListImageVersionsPaginator(Boto3Paginator):
1112
+ if TYPE_CHECKING:
1113
+ _ListImageVersionsPaginatorBase = Paginator[ListImageVersionsResponseTypeDef]
1114
+ else:
1115
+ _ListImageVersionsPaginatorBase = Paginator # type: ignore[assignment]
1116
+
1117
+
1118
+ class ListImageVersionsPaginator(_ListImageVersionsPaginatorBase):
877
1119
  """
878
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImageVersions)
1120
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions)
879
1121
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
880
1122
  """
881
1123
 
882
- def paginate(
883
- self,
884
- *,
885
- ImageName: str,
886
- CreationTimeAfter: Union[datetime, str] = ...,
887
- CreationTimeBefore: Union[datetime, str] = ...,
888
- LastModifiedTimeAfter: Union[datetime, str] = ...,
889
- LastModifiedTimeBefore: Union[datetime, str] = ...,
890
- SortBy: ImageVersionSortByType = ...,
891
- SortOrder: ImageVersionSortOrderType = ...,
892
- PaginationConfig: "PaginatorConfigTypeDef" = ...
893
- ) -> _PageIterator[ListImageVersionsResponseTypeDef]:
894
- """
895
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImageVersions.paginate)
1124
+ def paginate( # type: ignore[override]
1125
+ self, **kwargs: Unpack[ListImageVersionsRequestPaginateTypeDef]
1126
+ ) -> PageIterator[ListImageVersionsResponseTypeDef]:
1127
+ """
1128
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions.paginate)
896
1129
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
897
1130
  """
898
1131
 
899
1132
 
900
- class ListImagesPaginator(Boto3Paginator):
1133
+ if TYPE_CHECKING:
1134
+ _ListImagesPaginatorBase = Paginator[ListImagesResponseTypeDef]
1135
+ else:
1136
+ _ListImagesPaginatorBase = Paginator # type: ignore[assignment]
1137
+
1138
+
1139
+ class ListImagesPaginator(_ListImagesPaginatorBase):
901
1140
  """
902
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImages)
1141
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages)
903
1142
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
904
1143
  """
905
1144
 
906
- def paginate(
907
- self,
908
- *,
909
- CreationTimeAfter: Union[datetime, str] = ...,
910
- CreationTimeBefore: Union[datetime, str] = ...,
911
- LastModifiedTimeAfter: Union[datetime, str] = ...,
912
- LastModifiedTimeBefore: Union[datetime, str] = ...,
913
- NameContains: str = ...,
914
- SortBy: ImageSortByType = ...,
915
- SortOrder: ImageSortOrderType = ...,
916
- PaginationConfig: "PaginatorConfigTypeDef" = ...
917
- ) -> _PageIterator[ListImagesResponseTypeDef]:
918
- """
919
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImages.paginate)
1145
+ def paginate( # type: ignore[override]
1146
+ self, **kwargs: Unpack[ListImagesRequestPaginateTypeDef]
1147
+ ) -> PageIterator[ListImagesResponseTypeDef]:
1148
+ """
1149
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages.paginate)
920
1150
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
921
1151
  """
922
1152
 
923
1153
 
924
- class ListInferenceRecommendationsJobsPaginator(Boto3Paginator):
1154
+ if TYPE_CHECKING:
1155
+ _ListInferenceComponentsPaginatorBase = Paginator[ListInferenceComponentsOutputTypeDef]
1156
+ else:
1157
+ _ListInferenceComponentsPaginatorBase = Paginator # type: ignore[assignment]
1158
+
1159
+
1160
+ class ListInferenceComponentsPaginator(_ListInferenceComponentsPaginatorBase):
925
1161
  """
926
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
927
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
1162
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents)
1163
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
928
1164
  """
929
1165
 
930
- def paginate(
931
- self,
932
- *,
933
- CreationTimeAfter: Union[datetime, str] = ...,
934
- CreationTimeBefore: Union[datetime, str] = ...,
935
- LastModifiedTimeAfter: Union[datetime, str] = ...,
936
- LastModifiedTimeBefore: Union[datetime, str] = ...,
937
- NameContains: str = ...,
938
- StatusEquals: RecommendationJobStatusType = ...,
939
- SortBy: ListInferenceRecommendationsJobsSortByType = ...,
940
- SortOrder: SortOrderType = ...,
941
- PaginationConfig: "PaginatorConfigTypeDef" = ...
942
- ) -> _PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
943
- """
944
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
945
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
1166
+ def paginate( # type: ignore[override]
1167
+ self, **kwargs: Unpack[ListInferenceComponentsInputPaginateTypeDef]
1168
+ ) -> PageIterator[ListInferenceComponentsOutputTypeDef]:
1169
+ """
1170
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents.paginate)
1171
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
946
1172
  """
947
1173
 
948
1174
 
949
- class ListLabelingJobsPaginator(Boto3Paginator):
1175
+ if TYPE_CHECKING:
1176
+ _ListInferenceExperimentsPaginatorBase = Paginator[ListInferenceExperimentsResponseTypeDef]
1177
+ else:
1178
+ _ListInferenceExperimentsPaginatorBase = Paginator # type: ignore[assignment]
1179
+
1180
+
1181
+ class ListInferenceExperimentsPaginator(_ListInferenceExperimentsPaginatorBase):
950
1182
  """
951
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobs)
952
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
1183
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments)
1184
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
953
1185
  """
954
1186
 
955
- def paginate(
956
- self,
957
- *,
958
- CreationTimeAfter: Union[datetime, str] = ...,
959
- CreationTimeBefore: Union[datetime, str] = ...,
960
- LastModifiedTimeAfter: Union[datetime, str] = ...,
961
- LastModifiedTimeBefore: Union[datetime, str] = ...,
962
- NameContains: str = ...,
963
- SortBy: SortByType = ...,
964
- SortOrder: SortOrderType = ...,
965
- StatusEquals: LabelingJobStatusType = ...,
966
- PaginationConfig: "PaginatorConfigTypeDef" = ...
967
- ) -> _PageIterator[ListLabelingJobsResponseTypeDef]:
968
- """
969
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobs.paginate)
970
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
1187
+ def paginate( # type: ignore[override]
1188
+ self, **kwargs: Unpack[ListInferenceExperimentsRequestPaginateTypeDef]
1189
+ ) -> PageIterator[ListInferenceExperimentsResponseTypeDef]:
1190
+ """
1191
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments.paginate)
1192
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
1193
+ """
1194
+
1195
+
1196
+ if TYPE_CHECKING:
1197
+ _ListInferenceRecommendationsJobStepsPaginatorBase = Paginator[
1198
+ ListInferenceRecommendationsJobStepsResponseTypeDef
1199
+ ]
1200
+ else:
1201
+ _ListInferenceRecommendationsJobStepsPaginatorBase = Paginator # type: ignore[assignment]
1202
+
1203
+
1204
+ class ListInferenceRecommendationsJobStepsPaginator(
1205
+ _ListInferenceRecommendationsJobStepsPaginatorBase
1206
+ ):
1207
+ """
1208
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps)
1209
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
1210
+ """
1211
+
1212
+ def paginate( # type: ignore[override]
1213
+ self, **kwargs: Unpack[ListInferenceRecommendationsJobStepsRequestPaginateTypeDef]
1214
+ ) -> PageIterator[ListInferenceRecommendationsJobStepsResponseTypeDef]:
1215
+ """
1216
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps.paginate)
1217
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
1218
+ """
1219
+
1220
+
1221
+ if TYPE_CHECKING:
1222
+ _ListInferenceRecommendationsJobsPaginatorBase = Paginator[
1223
+ ListInferenceRecommendationsJobsResponseTypeDef
1224
+ ]
1225
+ else:
1226
+ _ListInferenceRecommendationsJobsPaginatorBase = Paginator # type: ignore[assignment]
1227
+
1228
+
1229
+ class ListInferenceRecommendationsJobsPaginator(_ListInferenceRecommendationsJobsPaginatorBase):
1230
+ """
1231
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
1232
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
1233
+ """
1234
+
1235
+ def paginate( # type: ignore[override]
1236
+ self, **kwargs: Unpack[ListInferenceRecommendationsJobsRequestPaginateTypeDef]
1237
+ ) -> PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
1238
+ """
1239
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
1240
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
971
1241
  """
972
1242
 
973
1243
 
974
- class ListLabelingJobsForWorkteamPaginator(Boto3Paginator):
1244
+ if TYPE_CHECKING:
1245
+ _ListLabelingJobsForWorkteamPaginatorBase = Paginator[
1246
+ ListLabelingJobsForWorkteamResponseTypeDef
1247
+ ]
1248
+ else:
1249
+ _ListLabelingJobsForWorkteamPaginatorBase = Paginator # type: ignore[assignment]
1250
+
1251
+
1252
+ class ListLabelingJobsForWorkteamPaginator(_ListLabelingJobsForWorkteamPaginatorBase):
975
1253
  """
976
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
1254
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
977
1255
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
978
1256
  """
979
1257
 
980
- def paginate(
981
- self,
982
- *,
983
- WorkteamArn: str,
984
- CreationTimeAfter: Union[datetime, str] = ...,
985
- CreationTimeBefore: Union[datetime, str] = ...,
986
- JobReferenceCodeContains: str = ...,
987
- SortBy: Literal["CreationTime"] = ...,
988
- SortOrder: SortOrderType = ...,
989
- PaginationConfig: "PaginatorConfigTypeDef" = ...
990
- ) -> _PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
1258
+ def paginate( # type: ignore[override]
1259
+ self, **kwargs: Unpack[ListLabelingJobsForWorkteamRequestPaginateTypeDef]
1260
+ ) -> PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
991
1261
  """
992
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
1262
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
993
1263
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
994
1264
  """
995
1265
 
996
1266
 
997
- class ListLineageGroupsPaginator(Boto3Paginator):
1267
+ if TYPE_CHECKING:
1268
+ _ListLabelingJobsPaginatorBase = Paginator[ListLabelingJobsResponseTypeDef]
1269
+ else:
1270
+ _ListLabelingJobsPaginatorBase = Paginator # type: ignore[assignment]
1271
+
1272
+
1273
+ class ListLabelingJobsPaginator(_ListLabelingJobsPaginatorBase):
1274
+ """
1275
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs)
1276
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
998
1277
  """
999
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLineageGroups)
1278
+
1279
+ def paginate( # type: ignore[override]
1280
+ self, **kwargs: Unpack[ListLabelingJobsRequestPaginateTypeDef]
1281
+ ) -> PageIterator[ListLabelingJobsResponseTypeDef]:
1282
+ """
1283
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs.paginate)
1284
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
1285
+ """
1286
+
1287
+
1288
+ if TYPE_CHECKING:
1289
+ _ListLineageGroupsPaginatorBase = Paginator[ListLineageGroupsResponseTypeDef]
1290
+ else:
1291
+ _ListLineageGroupsPaginatorBase = Paginator # type: ignore[assignment]
1292
+
1293
+
1294
+ class ListLineageGroupsPaginator(_ListLineageGroupsPaginatorBase):
1295
+ """
1296
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups)
1000
1297
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
1001
1298
  """
1002
1299
 
1003
- def paginate(
1004
- self,
1005
- *,
1006
- CreatedAfter: Union[datetime, str] = ...,
1007
- CreatedBefore: Union[datetime, str] = ...,
1008
- SortBy: SortLineageGroupsByType = ...,
1009
- SortOrder: SortOrderType = ...,
1010
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1011
- ) -> _PageIterator[ListLineageGroupsResponseTypeDef]:
1300
+ def paginate( # type: ignore[override]
1301
+ self, **kwargs: Unpack[ListLineageGroupsRequestPaginateTypeDef]
1302
+ ) -> PageIterator[ListLineageGroupsResponseTypeDef]:
1012
1303
  """
1013
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLineageGroups.paginate)
1304
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups.paginate)
1014
1305
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
1015
1306
  """
1016
1307
 
1017
1308
 
1018
- class ListModelBiasJobDefinitionsPaginator(Boto3Paginator):
1309
+ if TYPE_CHECKING:
1310
+ _ListMlflowTrackingServersPaginatorBase = Paginator[ListMlflowTrackingServersResponseTypeDef]
1311
+ else:
1312
+ _ListMlflowTrackingServersPaginatorBase = Paginator # type: ignore[assignment]
1313
+
1314
+
1315
+ class ListMlflowTrackingServersPaginator(_ListMlflowTrackingServersPaginatorBase):
1316
+ """
1317
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers)
1318
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
1019
1319
  """
1020
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
1320
+
1321
+ def paginate( # type: ignore[override]
1322
+ self, **kwargs: Unpack[ListMlflowTrackingServersRequestPaginateTypeDef]
1323
+ ) -> PageIterator[ListMlflowTrackingServersResponseTypeDef]:
1324
+ """
1325
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
1326
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
1327
+ """
1328
+
1329
+
1330
+ if TYPE_CHECKING:
1331
+ _ListModelBiasJobDefinitionsPaginatorBase = Paginator[
1332
+ ListModelBiasJobDefinitionsResponseTypeDef
1333
+ ]
1334
+ else:
1335
+ _ListModelBiasJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
1336
+
1337
+
1338
+ class ListModelBiasJobDefinitionsPaginator(_ListModelBiasJobDefinitionsPaginatorBase):
1339
+ """
1340
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
1021
1341
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
1022
1342
  """
1023
1343
 
1024
- def paginate(
1025
- self,
1026
- *,
1027
- EndpointName: str = ...,
1028
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
1029
- SortOrder: SortOrderType = ...,
1030
- NameContains: str = ...,
1031
- CreationTimeBefore: Union[datetime, str] = ...,
1032
- CreationTimeAfter: Union[datetime, str] = ...,
1033
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1034
- ) -> _PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
1344
+ def paginate( # type: ignore[override]
1345
+ self, **kwargs: Unpack[ListModelBiasJobDefinitionsRequestPaginateTypeDef]
1346
+ ) -> PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
1035
1347
  """
1036
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
1348
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
1037
1349
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
1038
1350
  """
1039
1351
 
1040
1352
 
1041
- class ListModelExplainabilityJobDefinitionsPaginator(Boto3Paginator):
1353
+ if TYPE_CHECKING:
1354
+ _ListModelCardExportJobsPaginatorBase = Paginator[ListModelCardExportJobsResponseTypeDef]
1355
+ else:
1356
+ _ListModelCardExportJobsPaginatorBase = Paginator # type: ignore[assignment]
1357
+
1358
+
1359
+ class ListModelCardExportJobsPaginator(_ListModelCardExportJobsPaginatorBase):
1360
+ """
1361
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs)
1362
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
1363
+ """
1364
+
1365
+ def paginate( # type: ignore[override]
1366
+ self, **kwargs: Unpack[ListModelCardExportJobsRequestPaginateTypeDef]
1367
+ ) -> PageIterator[ListModelCardExportJobsResponseTypeDef]:
1368
+ """
1369
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs.paginate)
1370
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
1371
+ """
1372
+
1373
+
1374
+ if TYPE_CHECKING:
1375
+ _ListModelCardVersionsPaginatorBase = Paginator[ListModelCardVersionsResponseTypeDef]
1376
+ else:
1377
+ _ListModelCardVersionsPaginatorBase = Paginator # type: ignore[assignment]
1378
+
1379
+
1380
+ class ListModelCardVersionsPaginator(_ListModelCardVersionsPaginatorBase):
1381
+ """
1382
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions)
1383
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
1042
1384
  """
1043
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
1385
+
1386
+ def paginate( # type: ignore[override]
1387
+ self, **kwargs: Unpack[ListModelCardVersionsRequestPaginateTypeDef]
1388
+ ) -> PageIterator[ListModelCardVersionsResponseTypeDef]:
1389
+ """
1390
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions.paginate)
1391
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
1392
+ """
1393
+
1394
+
1395
+ if TYPE_CHECKING:
1396
+ _ListModelCardsPaginatorBase = Paginator[ListModelCardsResponseTypeDef]
1397
+ else:
1398
+ _ListModelCardsPaginatorBase = Paginator # type: ignore[assignment]
1399
+
1400
+
1401
+ class ListModelCardsPaginator(_ListModelCardsPaginatorBase):
1402
+ """
1403
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards)
1404
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
1405
+ """
1406
+
1407
+ def paginate( # type: ignore[override]
1408
+ self, **kwargs: Unpack[ListModelCardsRequestPaginateTypeDef]
1409
+ ) -> PageIterator[ListModelCardsResponseTypeDef]:
1410
+ """
1411
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards.paginate)
1412
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
1413
+ """
1414
+
1415
+
1416
+ if TYPE_CHECKING:
1417
+ _ListModelExplainabilityJobDefinitionsPaginatorBase = Paginator[
1418
+ ListModelExplainabilityJobDefinitionsResponseTypeDef
1419
+ ]
1420
+ else:
1421
+ _ListModelExplainabilityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
1422
+
1423
+
1424
+ class ListModelExplainabilityJobDefinitionsPaginator(
1425
+ _ListModelExplainabilityJobDefinitionsPaginatorBase
1426
+ ):
1427
+ """
1428
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
1044
1429
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
1045
1430
  """
1046
1431
 
1047
- def paginate(
1048
- self,
1049
- *,
1050
- EndpointName: str = ...,
1051
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
1052
- SortOrder: SortOrderType = ...,
1053
- NameContains: str = ...,
1054
- CreationTimeBefore: Union[datetime, str] = ...,
1055
- CreationTimeAfter: Union[datetime, str] = ...,
1056
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1057
- ) -> _PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
1432
+ def paginate( # type: ignore[override]
1433
+ self, **kwargs: Unpack[ListModelExplainabilityJobDefinitionsRequestPaginateTypeDef]
1434
+ ) -> PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
1058
1435
  """
1059
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
1436
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
1060
1437
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
1061
1438
  """
1062
1439
 
1063
1440
 
1064
- class ListModelMetadataPaginator(Boto3Paginator):
1441
+ if TYPE_CHECKING:
1442
+ _ListModelMetadataPaginatorBase = Paginator[ListModelMetadataResponseTypeDef]
1443
+ else:
1444
+ _ListModelMetadataPaginatorBase = Paginator # type: ignore[assignment]
1445
+
1446
+
1447
+ class ListModelMetadataPaginator(_ListModelMetadataPaginatorBase):
1065
1448
  """
1066
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelMetadata)
1449
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata)
1067
1450
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
1068
1451
  """
1069
1452
 
1070
- def paginate(
1071
- self,
1072
- *,
1073
- SearchExpression: "ModelMetadataSearchExpressionTypeDef" = ...,
1074
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1075
- ) -> _PageIterator[ListModelMetadataResponseTypeDef]:
1453
+ def paginate( # type: ignore[override]
1454
+ self, **kwargs: Unpack[ListModelMetadataRequestPaginateTypeDef]
1455
+ ) -> PageIterator[ListModelMetadataResponseTypeDef]:
1076
1456
  """
1077
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelMetadata.paginate)
1457
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata.paginate)
1078
1458
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
1079
1459
  """
1080
1460
 
1081
1461
 
1082
- class ListModelPackageGroupsPaginator(Boto3Paginator):
1462
+ if TYPE_CHECKING:
1463
+ _ListModelPackageGroupsPaginatorBase = Paginator[ListModelPackageGroupsOutputTypeDef]
1464
+ else:
1465
+ _ListModelPackageGroupsPaginatorBase = Paginator # type: ignore[assignment]
1466
+
1467
+
1468
+ class ListModelPackageGroupsPaginator(_ListModelPackageGroupsPaginatorBase):
1083
1469
  """
1084
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackageGroups)
1470
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups)
1085
1471
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
1086
1472
  """
1087
1473
 
1088
- def paginate(
1089
- self,
1090
- *,
1091
- CreationTimeAfter: Union[datetime, str] = ...,
1092
- CreationTimeBefore: Union[datetime, str] = ...,
1093
- NameContains: str = ...,
1094
- SortBy: ModelPackageGroupSortByType = ...,
1095
- SortOrder: SortOrderType = ...,
1096
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1097
- ) -> _PageIterator[ListModelPackageGroupsOutputTypeDef]:
1474
+ def paginate( # type: ignore[override]
1475
+ self, **kwargs: Unpack[ListModelPackageGroupsInputPaginateTypeDef]
1476
+ ) -> PageIterator[ListModelPackageGroupsOutputTypeDef]:
1098
1477
  """
1099
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
1478
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
1100
1479
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
1101
1480
  """
1102
1481
 
1103
1482
 
1104
- class ListModelPackagesPaginator(Boto3Paginator):
1483
+ if TYPE_CHECKING:
1484
+ _ListModelPackagesPaginatorBase = Paginator[ListModelPackagesOutputTypeDef]
1485
+ else:
1486
+ _ListModelPackagesPaginatorBase = Paginator # type: ignore[assignment]
1487
+
1488
+
1489
+ class ListModelPackagesPaginator(_ListModelPackagesPaginatorBase):
1105
1490
  """
1106
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackages)
1491
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages)
1107
1492
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
1108
1493
  """
1109
1494
 
1110
- def paginate(
1111
- self,
1112
- *,
1113
- CreationTimeAfter: Union[datetime, str] = ...,
1114
- CreationTimeBefore: Union[datetime, str] = ...,
1115
- NameContains: str = ...,
1116
- ModelApprovalStatus: ModelApprovalStatusType = ...,
1117
- ModelPackageGroupName: str = ...,
1118
- ModelPackageType: ModelPackageTypeType = ...,
1119
- SortBy: ModelPackageSortByType = ...,
1120
- SortOrder: SortOrderType = ...,
1121
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1122
- ) -> _PageIterator[ListModelPackagesOutputTypeDef]:
1123
- """
1124
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackages.paginate)
1495
+ def paginate( # type: ignore[override]
1496
+ self, **kwargs: Unpack[ListModelPackagesInputPaginateTypeDef]
1497
+ ) -> PageIterator[ListModelPackagesOutputTypeDef]:
1498
+ """
1499
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages.paginate)
1125
1500
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
1126
1501
  """
1127
1502
 
1128
1503
 
1129
- class ListModelQualityJobDefinitionsPaginator(Boto3Paginator):
1504
+ if TYPE_CHECKING:
1505
+ _ListModelQualityJobDefinitionsPaginatorBase = Paginator[
1506
+ ListModelQualityJobDefinitionsResponseTypeDef
1507
+ ]
1508
+ else:
1509
+ _ListModelQualityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
1510
+
1511
+
1512
+ class ListModelQualityJobDefinitionsPaginator(_ListModelQualityJobDefinitionsPaginatorBase):
1130
1513
  """
1131
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
1514
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
1132
1515
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
1133
1516
  """
1134
1517
 
1135
- def paginate(
1136
- self,
1137
- *,
1138
- EndpointName: str = ...,
1139
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
1140
- SortOrder: SortOrderType = ...,
1141
- NameContains: str = ...,
1142
- CreationTimeBefore: Union[datetime, str] = ...,
1143
- CreationTimeAfter: Union[datetime, str] = ...,
1144
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1145
- ) -> _PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
1518
+ def paginate( # type: ignore[override]
1519
+ self, **kwargs: Unpack[ListModelQualityJobDefinitionsRequestPaginateTypeDef]
1520
+ ) -> PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
1146
1521
  """
1147
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
1522
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
1148
1523
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
1149
1524
  """
1150
1525
 
1151
1526
 
1152
- class ListModelsPaginator(Boto3Paginator):
1527
+ if TYPE_CHECKING:
1528
+ _ListModelsPaginatorBase = Paginator[ListModelsOutputTypeDef]
1529
+ else:
1530
+ _ListModelsPaginatorBase = Paginator # type: ignore[assignment]
1531
+
1532
+
1533
+ class ListModelsPaginator(_ListModelsPaginatorBase):
1153
1534
  """
1154
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModels)
1535
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels)
1155
1536
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
1156
1537
  """
1157
1538
 
1158
- def paginate(
1159
- self,
1160
- *,
1161
- SortBy: ModelSortKeyType = ...,
1162
- SortOrder: OrderKeyType = ...,
1163
- NameContains: str = ...,
1164
- CreationTimeBefore: Union[datetime, str] = ...,
1165
- CreationTimeAfter: Union[datetime, str] = ...,
1166
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1167
- ) -> _PageIterator[ListModelsOutputTypeDef]:
1539
+ def paginate( # type: ignore[override]
1540
+ self, **kwargs: Unpack[ListModelsInputPaginateTypeDef]
1541
+ ) -> PageIterator[ListModelsOutputTypeDef]:
1168
1542
  """
1169
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModels.paginate)
1543
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels.paginate)
1170
1544
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
1171
1545
  """
1172
1546
 
1173
1547
 
1174
- class ListMonitoringExecutionsPaginator(Boto3Paginator):
1548
+ if TYPE_CHECKING:
1549
+ _ListMonitoringAlertHistoryPaginatorBase = Paginator[ListMonitoringAlertHistoryResponseTypeDef]
1550
+ else:
1551
+ _ListMonitoringAlertHistoryPaginatorBase = Paginator # type: ignore[assignment]
1552
+
1553
+
1554
+ class ListMonitoringAlertHistoryPaginator(_ListMonitoringAlertHistoryPaginatorBase):
1175
1555
  """
1176
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringExecutions)
1556
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory)
1557
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
1558
+ """
1559
+
1560
+ def paginate( # type: ignore[override]
1561
+ self, **kwargs: Unpack[ListMonitoringAlertHistoryRequestPaginateTypeDef]
1562
+ ) -> PageIterator[ListMonitoringAlertHistoryResponseTypeDef]:
1563
+ """
1564
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory.paginate)
1565
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
1566
+ """
1567
+
1568
+
1569
+ if TYPE_CHECKING:
1570
+ _ListMonitoringAlertsPaginatorBase = Paginator[ListMonitoringAlertsResponseTypeDef]
1571
+ else:
1572
+ _ListMonitoringAlertsPaginatorBase = Paginator # type: ignore[assignment]
1573
+
1574
+
1575
+ class ListMonitoringAlertsPaginator(_ListMonitoringAlertsPaginatorBase):
1576
+ """
1577
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts)
1578
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
1579
+ """
1580
+
1581
+ def paginate( # type: ignore[override]
1582
+ self, **kwargs: Unpack[ListMonitoringAlertsRequestPaginateTypeDef]
1583
+ ) -> PageIterator[ListMonitoringAlertsResponseTypeDef]:
1584
+ """
1585
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts.paginate)
1586
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
1587
+ """
1588
+
1589
+
1590
+ if TYPE_CHECKING:
1591
+ _ListMonitoringExecutionsPaginatorBase = Paginator[ListMonitoringExecutionsResponseTypeDef]
1592
+ else:
1593
+ _ListMonitoringExecutionsPaginatorBase = Paginator # type: ignore[assignment]
1594
+
1595
+
1596
+ class ListMonitoringExecutionsPaginator(_ListMonitoringExecutionsPaginatorBase):
1597
+ """
1598
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions)
1177
1599
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
1178
1600
  """
1179
1601
 
1180
- def paginate(
1181
- self,
1182
- *,
1183
- MonitoringScheduleName: str = ...,
1184
- EndpointName: str = ...,
1185
- SortBy: MonitoringExecutionSortKeyType = ...,
1186
- SortOrder: SortOrderType = ...,
1187
- ScheduledTimeBefore: Union[datetime, str] = ...,
1188
- ScheduledTimeAfter: Union[datetime, str] = ...,
1189
- CreationTimeBefore: Union[datetime, str] = ...,
1190
- CreationTimeAfter: Union[datetime, str] = ...,
1191
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1192
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1193
- StatusEquals: ExecutionStatusType = ...,
1194
- MonitoringJobDefinitionName: str = ...,
1195
- MonitoringTypeEquals: MonitoringTypeType = ...,
1196
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1197
- ) -> _PageIterator[ListMonitoringExecutionsResponseTypeDef]:
1198
- """
1199
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
1602
+ def paginate( # type: ignore[override]
1603
+ self, **kwargs: Unpack[ListMonitoringExecutionsRequestPaginateTypeDef]
1604
+ ) -> PageIterator[ListMonitoringExecutionsResponseTypeDef]:
1605
+ """
1606
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
1200
1607
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
1201
1608
  """
1202
1609
 
1203
1610
 
1204
- class ListMonitoringSchedulesPaginator(Boto3Paginator):
1611
+ if TYPE_CHECKING:
1612
+ _ListMonitoringSchedulesPaginatorBase = Paginator[ListMonitoringSchedulesResponseTypeDef]
1613
+ else:
1614
+ _ListMonitoringSchedulesPaginatorBase = Paginator # type: ignore[assignment]
1615
+
1616
+
1617
+ class ListMonitoringSchedulesPaginator(_ListMonitoringSchedulesPaginatorBase):
1205
1618
  """
1206
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringSchedules)
1619
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules)
1207
1620
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
1208
1621
  """
1209
1622
 
1210
- def paginate(
1211
- self,
1212
- *,
1213
- EndpointName: str = ...,
1214
- SortBy: MonitoringScheduleSortKeyType = ...,
1215
- SortOrder: SortOrderType = ...,
1216
- NameContains: str = ...,
1217
- CreationTimeBefore: Union[datetime, str] = ...,
1218
- CreationTimeAfter: Union[datetime, str] = ...,
1219
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1220
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1221
- StatusEquals: ScheduleStatusType = ...,
1222
- MonitoringJobDefinitionName: str = ...,
1223
- MonitoringTypeEquals: MonitoringTypeType = ...,
1224
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1225
- ) -> _PageIterator[ListMonitoringSchedulesResponseTypeDef]:
1226
- """
1227
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
1623
+ def paginate( # type: ignore[override]
1624
+ self, **kwargs: Unpack[ListMonitoringSchedulesRequestPaginateTypeDef]
1625
+ ) -> PageIterator[ListMonitoringSchedulesResponseTypeDef]:
1626
+ """
1627
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
1228
1628
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
1229
1629
  """
1230
1630
 
1231
1631
 
1232
- class ListNotebookInstanceLifecycleConfigsPaginator(Boto3Paginator):
1632
+ if TYPE_CHECKING:
1633
+ _ListNotebookInstanceLifecycleConfigsPaginatorBase = Paginator[
1634
+ ListNotebookInstanceLifecycleConfigsOutputTypeDef
1635
+ ]
1636
+ else:
1637
+ _ListNotebookInstanceLifecycleConfigsPaginatorBase = Paginator # type: ignore[assignment]
1638
+
1639
+
1640
+ class ListNotebookInstanceLifecycleConfigsPaginator(
1641
+ _ListNotebookInstanceLifecycleConfigsPaginatorBase
1642
+ ):
1233
1643
  """
1234
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
1644
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
1235
1645
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
1236
1646
  """
1237
1647
 
1238
- def paginate(
1239
- self,
1240
- *,
1241
- SortBy: NotebookInstanceLifecycleConfigSortKeyType = ...,
1242
- SortOrder: NotebookInstanceLifecycleConfigSortOrderType = ...,
1243
- NameContains: str = ...,
1244
- CreationTimeBefore: Union[datetime, str] = ...,
1245
- CreationTimeAfter: Union[datetime, str] = ...,
1246
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1247
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1248
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1249
- ) -> _PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
1250
- """
1251
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
1648
+ def paginate( # type: ignore[override]
1649
+ self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputPaginateTypeDef]
1650
+ ) -> PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
1651
+ """
1652
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
1252
1653
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
1253
1654
  """
1254
1655
 
1255
1656
 
1256
- class ListNotebookInstancesPaginator(Boto3Paginator):
1657
+ if TYPE_CHECKING:
1658
+ _ListNotebookInstancesPaginatorBase = Paginator[ListNotebookInstancesOutputTypeDef]
1659
+ else:
1660
+ _ListNotebookInstancesPaginatorBase = Paginator # type: ignore[assignment]
1661
+
1662
+
1663
+ class ListNotebookInstancesPaginator(_ListNotebookInstancesPaginatorBase):
1257
1664
  """
1258
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstances)
1665
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances)
1259
1666
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
1260
1667
  """
1261
1668
 
1262
- def paginate(
1263
- self,
1264
- *,
1265
- SortBy: NotebookInstanceSortKeyType = ...,
1266
- SortOrder: NotebookInstanceSortOrderType = ...,
1267
- NameContains: str = ...,
1268
- CreationTimeBefore: Union[datetime, str] = ...,
1269
- CreationTimeAfter: Union[datetime, str] = ...,
1270
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1271
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1272
- StatusEquals: NotebookInstanceStatusType = ...,
1273
- NotebookInstanceLifecycleConfigNameContains: str = ...,
1274
- DefaultCodeRepositoryContains: str = ...,
1275
- AdditionalCodeRepositoryEquals: str = ...,
1276
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1277
- ) -> _PageIterator[ListNotebookInstancesOutputTypeDef]:
1278
- """
1279
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstances.paginate)
1669
+ def paginate( # type: ignore[override]
1670
+ self, **kwargs: Unpack[ListNotebookInstancesInputPaginateTypeDef]
1671
+ ) -> PageIterator[ListNotebookInstancesOutputTypeDef]:
1672
+ """
1673
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances.paginate)
1280
1674
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
1281
1675
  """
1282
1676
 
1283
1677
 
1284
- class ListPipelineExecutionStepsPaginator(Boto3Paginator):
1678
+ if TYPE_CHECKING:
1679
+ _ListOptimizationJobsPaginatorBase = Paginator[ListOptimizationJobsResponseTypeDef]
1680
+ else:
1681
+ _ListOptimizationJobsPaginatorBase = Paginator # type: ignore[assignment]
1682
+
1683
+
1684
+ class ListOptimizationJobsPaginator(_ListOptimizationJobsPaginatorBase):
1685
+ """
1686
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs)
1687
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
1688
+ """
1689
+
1690
+ def paginate( # type: ignore[override]
1691
+ self, **kwargs: Unpack[ListOptimizationJobsRequestPaginateTypeDef]
1692
+ ) -> PageIterator[ListOptimizationJobsResponseTypeDef]:
1693
+ """
1694
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs.paginate)
1695
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
1696
+ """
1697
+
1698
+
1699
+ if TYPE_CHECKING:
1700
+ _ListPartnerAppsPaginatorBase = Paginator[ListPartnerAppsResponseTypeDef]
1701
+ else:
1702
+ _ListPartnerAppsPaginatorBase = Paginator # type: ignore[assignment]
1703
+
1704
+
1705
+ class ListPartnerAppsPaginator(_ListPartnerAppsPaginatorBase):
1706
+ """
1707
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPartnerApps.html#SageMaker.Paginator.ListPartnerApps)
1708
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpartnerappspaginator)
1709
+ """
1710
+
1711
+ def paginate( # type: ignore[override]
1712
+ self, **kwargs: Unpack[ListPartnerAppsRequestPaginateTypeDef]
1713
+ ) -> PageIterator[ListPartnerAppsResponseTypeDef]:
1714
+ """
1715
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPartnerApps.html#SageMaker.Paginator.ListPartnerApps.paginate)
1716
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpartnerappspaginator)
1717
+ """
1718
+
1719
+
1720
+ if TYPE_CHECKING:
1721
+ _ListPipelineExecutionStepsPaginatorBase = Paginator[ListPipelineExecutionStepsResponseTypeDef]
1722
+ else:
1723
+ _ListPipelineExecutionStepsPaginatorBase = Paginator # type: ignore[assignment]
1724
+
1725
+
1726
+ class ListPipelineExecutionStepsPaginator(_ListPipelineExecutionStepsPaginatorBase):
1285
1727
  """
1286
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutionSteps)
1728
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps)
1287
1729
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
1288
1730
  """
1289
1731
 
1290
- def paginate(
1291
- self,
1292
- *,
1293
- PipelineExecutionArn: str = ...,
1294
- SortOrder: SortOrderType = ...,
1295
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1296
- ) -> _PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
1732
+ def paginate( # type: ignore[override]
1733
+ self, **kwargs: Unpack[ListPipelineExecutionStepsRequestPaginateTypeDef]
1734
+ ) -> PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
1297
1735
  """
1298
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
1736
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
1299
1737
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
1300
1738
  """
1301
1739
 
1302
1740
 
1303
- class ListPipelineExecutionsPaginator(Boto3Paginator):
1741
+ if TYPE_CHECKING:
1742
+ _ListPipelineExecutionsPaginatorBase = Paginator[ListPipelineExecutionsResponseTypeDef]
1743
+ else:
1744
+ _ListPipelineExecutionsPaginatorBase = Paginator # type: ignore[assignment]
1745
+
1746
+
1747
+ class ListPipelineExecutionsPaginator(_ListPipelineExecutionsPaginatorBase):
1304
1748
  """
1305
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutions)
1749
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions)
1306
1750
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
1307
1751
  """
1308
1752
 
1309
- def paginate(
1310
- self,
1311
- *,
1312
- PipelineName: str,
1313
- CreatedAfter: Union[datetime, str] = ...,
1314
- CreatedBefore: Union[datetime, str] = ...,
1315
- SortBy: SortPipelineExecutionsByType = ...,
1316
- SortOrder: SortOrderType = ...,
1317
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1318
- ) -> _PageIterator[ListPipelineExecutionsResponseTypeDef]:
1753
+ def paginate( # type: ignore[override]
1754
+ self, **kwargs: Unpack[ListPipelineExecutionsRequestPaginateTypeDef]
1755
+ ) -> PageIterator[ListPipelineExecutionsResponseTypeDef]:
1319
1756
  """
1320
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
1757
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
1321
1758
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
1322
1759
  """
1323
1760
 
1324
1761
 
1325
- class ListPipelineParametersForExecutionPaginator(Boto3Paginator):
1762
+ if TYPE_CHECKING:
1763
+ _ListPipelineParametersForExecutionPaginatorBase = Paginator[
1764
+ ListPipelineParametersForExecutionResponseTypeDef
1765
+ ]
1766
+ else:
1767
+ _ListPipelineParametersForExecutionPaginatorBase = Paginator # type: ignore[assignment]
1768
+
1769
+
1770
+ class ListPipelineParametersForExecutionPaginator(_ListPipelineParametersForExecutionPaginatorBase):
1326
1771
  """
1327
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineParametersForExecution)
1772
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution)
1328
1773
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
1329
1774
  """
1330
1775
 
1331
- def paginate(
1332
- self, *, PipelineExecutionArn: str, PaginationConfig: "PaginatorConfigTypeDef" = ...
1333
- ) -> _PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
1776
+ def paginate( # type: ignore[override]
1777
+ self, **kwargs: Unpack[ListPipelineParametersForExecutionRequestPaginateTypeDef]
1778
+ ) -> PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
1334
1779
  """
1335
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
1780
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
1336
1781
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
1337
1782
  """
1338
1783
 
1339
1784
 
1340
- class ListPipelinesPaginator(Boto3Paginator):
1785
+ if TYPE_CHECKING:
1786
+ _ListPipelineVersionsPaginatorBase = Paginator[ListPipelineVersionsResponseTypeDef]
1787
+ else:
1788
+ _ListPipelineVersionsPaginatorBase = Paginator # type: ignore[assignment]
1789
+
1790
+
1791
+ class ListPipelineVersionsPaginator(_ListPipelineVersionsPaginatorBase):
1792
+ """
1793
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineVersions.html#SageMaker.Paginator.ListPipelineVersions)
1794
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineversionspaginator)
1795
+ """
1796
+
1797
+ def paginate( # type: ignore[override]
1798
+ self, **kwargs: Unpack[ListPipelineVersionsRequestPaginateTypeDef]
1799
+ ) -> PageIterator[ListPipelineVersionsResponseTypeDef]:
1800
+ """
1801
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineVersions.html#SageMaker.Paginator.ListPipelineVersions.paginate)
1802
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineversionspaginator)
1803
+ """
1804
+
1805
+
1806
+ if TYPE_CHECKING:
1807
+ _ListPipelinesPaginatorBase = Paginator[ListPipelinesResponseTypeDef]
1808
+ else:
1809
+ _ListPipelinesPaginatorBase = Paginator # type: ignore[assignment]
1810
+
1811
+
1812
+ class ListPipelinesPaginator(_ListPipelinesPaginatorBase):
1341
1813
  """
1342
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelines)
1814
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines)
1343
1815
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
1344
1816
  """
1345
1817
 
1346
- def paginate(
1347
- self,
1348
- *,
1349
- PipelineNamePrefix: str = ...,
1350
- CreatedAfter: Union[datetime, str] = ...,
1351
- CreatedBefore: Union[datetime, str] = ...,
1352
- SortBy: SortPipelinesByType = ...,
1353
- SortOrder: SortOrderType = ...,
1354
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1355
- ) -> _PageIterator[ListPipelinesResponseTypeDef]:
1818
+ def paginate( # type: ignore[override]
1819
+ self, **kwargs: Unpack[ListPipelinesRequestPaginateTypeDef]
1820
+ ) -> PageIterator[ListPipelinesResponseTypeDef]:
1356
1821
  """
1357
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelines.paginate)
1822
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines.paginate)
1358
1823
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
1359
1824
  """
1360
1825
 
1361
1826
 
1362
- class ListProcessingJobsPaginator(Boto3Paginator):
1827
+ if TYPE_CHECKING:
1828
+ _ListProcessingJobsPaginatorBase = Paginator[ListProcessingJobsResponseTypeDef]
1829
+ else:
1830
+ _ListProcessingJobsPaginatorBase = Paginator # type: ignore[assignment]
1831
+
1832
+
1833
+ class ListProcessingJobsPaginator(_ListProcessingJobsPaginatorBase):
1363
1834
  """
1364
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListProcessingJobs)
1835
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs)
1365
1836
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
1366
1837
  """
1367
1838
 
1368
- def paginate(
1369
- self,
1370
- *,
1371
- CreationTimeAfter: Union[datetime, str] = ...,
1372
- CreationTimeBefore: Union[datetime, str] = ...,
1373
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1374
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1375
- NameContains: str = ...,
1376
- StatusEquals: ProcessingJobStatusType = ...,
1377
- SortBy: SortByType = ...,
1378
- SortOrder: SortOrderType = ...,
1379
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1380
- ) -> _PageIterator[ListProcessingJobsResponseTypeDef]:
1381
- """
1382
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListProcessingJobs.paginate)
1839
+ def paginate( # type: ignore[override]
1840
+ self, **kwargs: Unpack[ListProcessingJobsRequestPaginateTypeDef]
1841
+ ) -> PageIterator[ListProcessingJobsResponseTypeDef]:
1842
+ """
1843
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs.paginate)
1383
1844
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
1384
1845
  """
1385
1846
 
1386
1847
 
1387
- class ListStudioLifecycleConfigsPaginator(Boto3Paginator):
1848
+ if TYPE_CHECKING:
1849
+ _ListResourceCatalogsPaginatorBase = Paginator[ListResourceCatalogsResponseTypeDef]
1850
+ else:
1851
+ _ListResourceCatalogsPaginatorBase = Paginator # type: ignore[assignment]
1852
+
1853
+
1854
+ class ListResourceCatalogsPaginator(_ListResourceCatalogsPaginatorBase):
1855
+ """
1856
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs)
1857
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
1388
1858
  """
1389
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
1859
+
1860
+ def paginate( # type: ignore[override]
1861
+ self, **kwargs: Unpack[ListResourceCatalogsRequestPaginateTypeDef]
1862
+ ) -> PageIterator[ListResourceCatalogsResponseTypeDef]:
1863
+ """
1864
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs.paginate)
1865
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
1866
+ """
1867
+
1868
+
1869
+ if TYPE_CHECKING:
1870
+ _ListSpacesPaginatorBase = Paginator[ListSpacesResponseTypeDef]
1871
+ else:
1872
+ _ListSpacesPaginatorBase = Paginator # type: ignore[assignment]
1873
+
1874
+
1875
+ class ListSpacesPaginator(_ListSpacesPaginatorBase):
1876
+ """
1877
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces)
1878
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
1879
+ """
1880
+
1881
+ def paginate( # type: ignore[override]
1882
+ self, **kwargs: Unpack[ListSpacesRequestPaginateTypeDef]
1883
+ ) -> PageIterator[ListSpacesResponseTypeDef]:
1884
+ """
1885
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces.paginate)
1886
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
1887
+ """
1888
+
1889
+
1890
+ if TYPE_CHECKING:
1891
+ _ListStageDevicesPaginatorBase = Paginator[ListStageDevicesResponseTypeDef]
1892
+ else:
1893
+ _ListStageDevicesPaginatorBase = Paginator # type: ignore[assignment]
1894
+
1895
+
1896
+ class ListStageDevicesPaginator(_ListStageDevicesPaginatorBase):
1897
+ """
1898
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices)
1899
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
1900
+ """
1901
+
1902
+ def paginate( # type: ignore[override]
1903
+ self, **kwargs: Unpack[ListStageDevicesRequestPaginateTypeDef]
1904
+ ) -> PageIterator[ListStageDevicesResponseTypeDef]:
1905
+ """
1906
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices.paginate)
1907
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
1908
+ """
1909
+
1910
+
1911
+ if TYPE_CHECKING:
1912
+ _ListStudioLifecycleConfigsPaginatorBase = Paginator[ListStudioLifecycleConfigsResponseTypeDef]
1913
+ else:
1914
+ _ListStudioLifecycleConfigsPaginatorBase = Paginator # type: ignore[assignment]
1915
+
1916
+
1917
+ class ListStudioLifecycleConfigsPaginator(_ListStudioLifecycleConfigsPaginatorBase):
1918
+ """
1919
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
1390
1920
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
1391
1921
  """
1392
1922
 
1393
- def paginate(
1394
- self,
1395
- *,
1396
- NameContains: str = ...,
1397
- AppTypeEquals: StudioLifecycleConfigAppTypeType = ...,
1398
- CreationTimeBefore: Union[datetime, str] = ...,
1399
- CreationTimeAfter: Union[datetime, str] = ...,
1400
- ModifiedTimeBefore: Union[datetime, str] = ...,
1401
- ModifiedTimeAfter: Union[datetime, str] = ...,
1402
- SortBy: StudioLifecycleConfigSortKeyType = ...,
1403
- SortOrder: SortOrderType = ...,
1404
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1405
- ) -> _PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
1406
- """
1407
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
1923
+ def paginate( # type: ignore[override]
1924
+ self, **kwargs: Unpack[ListStudioLifecycleConfigsRequestPaginateTypeDef]
1925
+ ) -> PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
1926
+ """
1927
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
1408
1928
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
1409
1929
  """
1410
1930
 
1411
1931
 
1412
- class ListSubscribedWorkteamsPaginator(Boto3Paginator):
1932
+ if TYPE_CHECKING:
1933
+ _ListSubscribedWorkteamsPaginatorBase = Paginator[ListSubscribedWorkteamsResponseTypeDef]
1934
+ else:
1935
+ _ListSubscribedWorkteamsPaginatorBase = Paginator # type: ignore[assignment]
1936
+
1937
+
1938
+ class ListSubscribedWorkteamsPaginator(_ListSubscribedWorkteamsPaginatorBase):
1413
1939
  """
1414
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSubscribedWorkteams)
1940
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams)
1415
1941
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
1416
1942
  """
1417
1943
 
1418
- def paginate(
1419
- self, *, NameContains: str = ..., PaginationConfig: "PaginatorConfigTypeDef" = ...
1420
- ) -> _PageIterator[ListSubscribedWorkteamsResponseTypeDef]:
1944
+ def paginate( # type: ignore[override]
1945
+ self, **kwargs: Unpack[ListSubscribedWorkteamsRequestPaginateTypeDef]
1946
+ ) -> PageIterator[ListSubscribedWorkteamsResponseTypeDef]:
1421
1947
  """
1422
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
1948
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
1423
1949
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
1424
1950
  """
1425
1951
 
1426
1952
 
1427
- class ListTagsPaginator(Boto3Paginator):
1953
+ if TYPE_CHECKING:
1954
+ _ListTagsPaginatorBase = Paginator[ListTagsOutputTypeDef]
1955
+ else:
1956
+ _ListTagsPaginatorBase = Paginator # type: ignore[assignment]
1957
+
1958
+
1959
+ class ListTagsPaginator(_ListTagsPaginatorBase):
1428
1960
  """
1429
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTags)
1961
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags)
1430
1962
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
1431
1963
  """
1432
1964
 
1433
- def paginate(
1434
- self, *, ResourceArn: str, PaginationConfig: "PaginatorConfigTypeDef" = ...
1435
- ) -> _PageIterator[ListTagsOutputTypeDef]:
1965
+ def paginate( # type: ignore[override]
1966
+ self, **kwargs: Unpack[ListTagsInputPaginateTypeDef]
1967
+ ) -> PageIterator[ListTagsOutputTypeDef]:
1436
1968
  """
1437
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTags.paginate)
1969
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags.paginate)
1438
1970
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
1439
1971
  """
1440
1972
 
1441
1973
 
1442
- class ListTrainingJobsPaginator(Boto3Paginator):
1974
+ if TYPE_CHECKING:
1975
+ _ListTrainingJobsForHyperParameterTuningJobPaginatorBase = Paginator[
1976
+ ListTrainingJobsForHyperParameterTuningJobResponseTypeDef
1977
+ ]
1978
+ else:
1979
+ _ListTrainingJobsForHyperParameterTuningJobPaginatorBase = Paginator # type: ignore[assignment]
1980
+
1981
+
1982
+ class ListTrainingJobsForHyperParameterTuningJobPaginator(
1983
+ _ListTrainingJobsForHyperParameterTuningJobPaginatorBase
1984
+ ):
1443
1985
  """
1444
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobs)
1986
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
1987
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
1988
+ """
1989
+
1990
+ def paginate( # type: ignore[override]
1991
+ self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef]
1992
+ ) -> PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
1993
+ """
1994
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
1995
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
1996
+ """
1997
+
1998
+
1999
+ if TYPE_CHECKING:
2000
+ _ListTrainingJobsPaginatorBase = Paginator[ListTrainingJobsResponseTypeDef]
2001
+ else:
2002
+ _ListTrainingJobsPaginatorBase = Paginator # type: ignore[assignment]
2003
+
2004
+
2005
+ class ListTrainingJobsPaginator(_ListTrainingJobsPaginatorBase):
2006
+ """
2007
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs)
1445
2008
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
1446
2009
  """
1447
2010
 
1448
- def paginate(
1449
- self,
1450
- *,
1451
- CreationTimeAfter: Union[datetime, str] = ...,
1452
- CreationTimeBefore: Union[datetime, str] = ...,
1453
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1454
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1455
- NameContains: str = ...,
1456
- StatusEquals: TrainingJobStatusType = ...,
1457
- SortBy: SortByType = ...,
1458
- SortOrder: SortOrderType = ...,
1459
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1460
- ) -> _PageIterator[ListTrainingJobsResponseTypeDef]:
1461
- """
1462
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobs.paginate)
2011
+ def paginate( # type: ignore[override]
2012
+ self, **kwargs: Unpack[ListTrainingJobsRequestPaginateTypeDef]
2013
+ ) -> PageIterator[ListTrainingJobsResponseTypeDef]:
2014
+ """
2015
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs.paginate)
1463
2016
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
1464
2017
  """
1465
2018
 
1466
2019
 
1467
- class ListTrainingJobsForHyperParameterTuningJobPaginator(Boto3Paginator):
2020
+ if TYPE_CHECKING:
2021
+ _ListTrainingPlansPaginatorBase = Paginator[ListTrainingPlansResponseTypeDef]
2022
+ else:
2023
+ _ListTrainingPlansPaginatorBase = Paginator # type: ignore[assignment]
2024
+
2025
+
2026
+ class ListTrainingPlansPaginator(_ListTrainingPlansPaginatorBase):
1468
2027
  """
1469
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
1470
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
2028
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingPlans.html#SageMaker.Paginator.ListTrainingPlans)
2029
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingplanspaginator)
1471
2030
  """
1472
2031
 
1473
- def paginate(
1474
- self,
1475
- *,
1476
- HyperParameterTuningJobName: str,
1477
- StatusEquals: TrainingJobStatusType = ...,
1478
- SortBy: TrainingJobSortByOptionsType = ...,
1479
- SortOrder: SortOrderType = ...,
1480
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1481
- ) -> _PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
2032
+ def paginate( # type: ignore[override]
2033
+ self, **kwargs: Unpack[ListTrainingPlansRequestPaginateTypeDef]
2034
+ ) -> PageIterator[ListTrainingPlansResponseTypeDef]:
1482
2035
  """
1483
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
1484
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
2036
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingPlans.html#SageMaker.Paginator.ListTrainingPlans.paginate)
2037
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingplanspaginator)
1485
2038
  """
1486
2039
 
1487
2040
 
1488
- class ListTransformJobsPaginator(Boto3Paginator):
2041
+ if TYPE_CHECKING:
2042
+ _ListTransformJobsPaginatorBase = Paginator[ListTransformJobsResponseTypeDef]
2043
+ else:
2044
+ _ListTransformJobsPaginatorBase = Paginator # type: ignore[assignment]
2045
+
2046
+
2047
+ class ListTransformJobsPaginator(_ListTransformJobsPaginatorBase):
1489
2048
  """
1490
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTransformJobs)
2049
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs)
1491
2050
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
1492
2051
  """
1493
2052
 
1494
- def paginate(
1495
- self,
1496
- *,
1497
- CreationTimeAfter: Union[datetime, str] = ...,
1498
- CreationTimeBefore: Union[datetime, str] = ...,
1499
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1500
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1501
- NameContains: str = ...,
1502
- StatusEquals: TransformJobStatusType = ...,
1503
- SortBy: SortByType = ...,
1504
- SortOrder: SortOrderType = ...,
1505
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1506
- ) -> _PageIterator[ListTransformJobsResponseTypeDef]:
1507
- """
1508
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTransformJobs.paginate)
2053
+ def paginate( # type: ignore[override]
2054
+ self, **kwargs: Unpack[ListTransformJobsRequestPaginateTypeDef]
2055
+ ) -> PageIterator[ListTransformJobsResponseTypeDef]:
2056
+ """
2057
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs.paginate)
1509
2058
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
1510
2059
  """
1511
2060
 
1512
2061
 
1513
- class ListTrialComponentsPaginator(Boto3Paginator):
2062
+ if TYPE_CHECKING:
2063
+ _ListTrialComponentsPaginatorBase = Paginator[ListTrialComponentsResponseTypeDef]
2064
+ else:
2065
+ _ListTrialComponentsPaginatorBase = Paginator # type: ignore[assignment]
2066
+
2067
+
2068
+ class ListTrialComponentsPaginator(_ListTrialComponentsPaginatorBase):
1514
2069
  """
1515
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrialComponents)
2070
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents)
1516
2071
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
1517
2072
  """
1518
2073
 
1519
- def paginate(
1520
- self,
1521
- *,
1522
- ExperimentName: str = ...,
1523
- TrialName: str = ...,
1524
- SourceArn: str = ...,
1525
- CreatedAfter: Union[datetime, str] = ...,
1526
- CreatedBefore: Union[datetime, str] = ...,
1527
- SortBy: SortTrialComponentsByType = ...,
1528
- SortOrder: SortOrderType = ...,
1529
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1530
- ) -> _PageIterator[ListTrialComponentsResponseTypeDef]:
1531
- """
1532
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrialComponents.paginate)
2074
+ def paginate( # type: ignore[override]
2075
+ self, **kwargs: Unpack[ListTrialComponentsRequestPaginateTypeDef]
2076
+ ) -> PageIterator[ListTrialComponentsResponseTypeDef]:
2077
+ """
2078
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents.paginate)
1533
2079
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
1534
2080
  """
1535
2081
 
1536
2082
 
1537
- class ListTrialsPaginator(Boto3Paginator):
2083
+ if TYPE_CHECKING:
2084
+ _ListTrialsPaginatorBase = Paginator[ListTrialsResponseTypeDef]
2085
+ else:
2086
+ _ListTrialsPaginatorBase = Paginator # type: ignore[assignment]
2087
+
2088
+
2089
+ class ListTrialsPaginator(_ListTrialsPaginatorBase):
1538
2090
  """
1539
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrials)
2091
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials)
1540
2092
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
1541
2093
  """
1542
2094
 
1543
- def paginate(
1544
- self,
1545
- *,
1546
- ExperimentName: str = ...,
1547
- TrialComponentName: str = ...,
1548
- CreatedAfter: Union[datetime, str] = ...,
1549
- CreatedBefore: Union[datetime, str] = ...,
1550
- SortBy: SortTrialsByType = ...,
1551
- SortOrder: SortOrderType = ...,
1552
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1553
- ) -> _PageIterator[ListTrialsResponseTypeDef]:
2095
+ def paginate( # type: ignore[override]
2096
+ self, **kwargs: Unpack[ListTrialsRequestPaginateTypeDef]
2097
+ ) -> PageIterator[ListTrialsResponseTypeDef]:
1554
2098
  """
1555
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrials.paginate)
2099
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials.paginate)
1556
2100
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
1557
2101
  """
1558
2102
 
1559
2103
 
1560
- class ListUserProfilesPaginator(Boto3Paginator):
2104
+ if TYPE_CHECKING:
2105
+ _ListUltraServersByReservedCapacityPaginatorBase = Paginator[
2106
+ ListUltraServersByReservedCapacityResponseTypeDef
2107
+ ]
2108
+ else:
2109
+ _ListUltraServersByReservedCapacityPaginatorBase = Paginator # type: ignore[assignment]
2110
+
2111
+
2112
+ class ListUltraServersByReservedCapacityPaginator(_ListUltraServersByReservedCapacityPaginatorBase):
1561
2113
  """
1562
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListUserProfiles)
2114
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity)
2115
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
2116
+ """
2117
+
2118
+ def paginate( # type: ignore[override]
2119
+ self, **kwargs: Unpack[ListUltraServersByReservedCapacityRequestPaginateTypeDef]
2120
+ ) -> PageIterator[ListUltraServersByReservedCapacityResponseTypeDef]:
2121
+ """
2122
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity.paginate)
2123
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
2124
+ """
2125
+
2126
+
2127
+ if TYPE_CHECKING:
2128
+ _ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
2129
+ else:
2130
+ _ListUserProfilesPaginatorBase = Paginator # type: ignore[assignment]
2131
+
2132
+
2133
+ class ListUserProfilesPaginator(_ListUserProfilesPaginatorBase):
2134
+ """
2135
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles)
1563
2136
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
1564
2137
  """
1565
2138
 
1566
- def paginate(
1567
- self,
1568
- *,
1569
- SortOrder: SortOrderType = ...,
1570
- SortBy: UserProfileSortKeyType = ...,
1571
- DomainIdEquals: str = ...,
1572
- UserProfileNameContains: str = ...,
1573
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1574
- ) -> _PageIterator[ListUserProfilesResponseTypeDef]:
2139
+ def paginate( # type: ignore[override]
2140
+ self, **kwargs: Unpack[ListUserProfilesRequestPaginateTypeDef]
2141
+ ) -> PageIterator[ListUserProfilesResponseTypeDef]:
1575
2142
  """
1576
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListUserProfiles.paginate)
2143
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles.paginate)
1577
2144
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
1578
2145
  """
1579
2146
 
1580
2147
 
1581
- class ListWorkforcesPaginator(Boto3Paginator):
2148
+ if TYPE_CHECKING:
2149
+ _ListWorkforcesPaginatorBase = Paginator[ListWorkforcesResponseTypeDef]
2150
+ else:
2151
+ _ListWorkforcesPaginatorBase = Paginator # type: ignore[assignment]
2152
+
2153
+
2154
+ class ListWorkforcesPaginator(_ListWorkforcesPaginatorBase):
1582
2155
  """
1583
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkforces)
2156
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces)
1584
2157
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
1585
2158
  """
1586
2159
 
1587
- def paginate(
1588
- self,
1589
- *,
1590
- SortBy: ListWorkforcesSortByOptionsType = ...,
1591
- SortOrder: SortOrderType = ...,
1592
- NameContains: str = ...,
1593
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1594
- ) -> _PageIterator[ListWorkforcesResponseTypeDef]:
2160
+ def paginate( # type: ignore[override]
2161
+ self, **kwargs: Unpack[ListWorkforcesRequestPaginateTypeDef]
2162
+ ) -> PageIterator[ListWorkforcesResponseTypeDef]:
1595
2163
  """
1596
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkforces.paginate)
2164
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces.paginate)
1597
2165
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
1598
2166
  """
1599
2167
 
1600
2168
 
1601
- class ListWorkteamsPaginator(Boto3Paginator):
2169
+ if TYPE_CHECKING:
2170
+ _ListWorkteamsPaginatorBase = Paginator[ListWorkteamsResponseTypeDef]
2171
+ else:
2172
+ _ListWorkteamsPaginatorBase = Paginator # type: ignore[assignment]
2173
+
2174
+
2175
+ class ListWorkteamsPaginator(_ListWorkteamsPaginatorBase):
1602
2176
  """
1603
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkteams)
2177
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams)
1604
2178
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
1605
2179
  """
1606
2180
 
1607
- def paginate(
1608
- self,
1609
- *,
1610
- SortBy: ListWorkteamsSortByOptionsType = ...,
1611
- SortOrder: SortOrderType = ...,
1612
- NameContains: str = ...,
1613
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1614
- ) -> _PageIterator[ListWorkteamsResponseTypeDef]:
2181
+ def paginate( # type: ignore[override]
2182
+ self, **kwargs: Unpack[ListWorkteamsRequestPaginateTypeDef]
2183
+ ) -> PageIterator[ListWorkteamsResponseTypeDef]:
1615
2184
  """
1616
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkteams.paginate)
2185
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams.paginate)
1617
2186
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
1618
2187
  """
1619
2188
 
1620
2189
 
1621
- class SearchPaginator(Boto3Paginator):
2190
+ if TYPE_CHECKING:
2191
+ _SearchPaginatorBase = Paginator[SearchResponseTypeDef]
2192
+ else:
2193
+ _SearchPaginatorBase = Paginator # type: ignore[assignment]
2194
+
2195
+
2196
+ class SearchPaginator(_SearchPaginatorBase):
1622
2197
  """
1623
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.Search)
2198
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search)
1624
2199
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
1625
2200
  """
1626
2201
 
1627
- def paginate(
1628
- self,
1629
- *,
1630
- Resource: ResourceTypeType,
1631
- SearchExpression: "SearchExpressionTypeDef" = ...,
1632
- SortBy: str = ...,
1633
- SortOrder: SearchSortOrderType = ...,
1634
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1635
- ) -> _PageIterator[SearchResponseTypeDef]:
2202
+ def paginate( # type: ignore[override]
2203
+ self, **kwargs: Unpack[SearchRequestPaginateTypeDef]
2204
+ ) -> PageIterator[SearchResponseTypeDef]:
1636
2205
  """
1637
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.Search.paginate)
2206
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search.paginate)
1638
2207
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
1639
2208
  """