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,203 +132,261 @@ 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
  __all__ = (
367
+ "CreateHubContentPresignedUrlsPaginator",
282
368
  "ListActionsPaginator",
283
369
  "ListAlgorithmsPaginator",
370
+ "ListAliasesPaginator",
284
371
  "ListAppImageConfigsPaginator",
285
372
  "ListAppsPaginator",
286
373
  "ListArtifactsPaginator",
287
374
  "ListAssociationsPaginator",
288
375
  "ListAutoMLJobsPaginator",
289
376
  "ListCandidatesForAutoMLJobPaginator",
377
+ "ListClusterEventsPaginator",
378
+ "ListClusterNodesPaginator",
379
+ "ListClusterSchedulerConfigsPaginator",
380
+ "ListClustersPaginator",
290
381
  "ListCodeRepositoriesPaginator",
291
382
  "ListCompilationJobsPaginator",
383
+ "ListComputeQuotasPaginator",
292
384
  "ListContextsPaginator",
293
385
  "ListDataQualityJobDefinitionsPaginator",
294
386
  "ListDeviceFleetsPaginator",
295
387
  "ListDevicesPaginator",
296
388
  "ListDomainsPaginator",
389
+ "ListEdgeDeploymentPlansPaginator",
297
390
  "ListEdgePackagingJobsPaginator",
298
391
  "ListEndpointConfigsPaginator",
299
392
  "ListEndpointsPaginator",
@@ -304,1276 +397,1565 @@ __all__ = (
304
397
  "ListHyperParameterTuningJobsPaginator",
305
398
  "ListImageVersionsPaginator",
306
399
  "ListImagesPaginator",
400
+ "ListInferenceComponentsPaginator",
401
+ "ListInferenceExperimentsPaginator",
402
+ "ListInferenceRecommendationsJobStepsPaginator",
307
403
  "ListInferenceRecommendationsJobsPaginator",
308
- "ListLabelingJobsPaginator",
309
404
  "ListLabelingJobsForWorkteamPaginator",
405
+ "ListLabelingJobsPaginator",
310
406
  "ListLineageGroupsPaginator",
407
+ "ListMlflowTrackingServersPaginator",
311
408
  "ListModelBiasJobDefinitionsPaginator",
409
+ "ListModelCardExportJobsPaginator",
410
+ "ListModelCardVersionsPaginator",
411
+ "ListModelCardsPaginator",
312
412
  "ListModelExplainabilityJobDefinitionsPaginator",
313
413
  "ListModelMetadataPaginator",
314
414
  "ListModelPackageGroupsPaginator",
315
415
  "ListModelPackagesPaginator",
316
416
  "ListModelQualityJobDefinitionsPaginator",
317
417
  "ListModelsPaginator",
418
+ "ListMonitoringAlertHistoryPaginator",
419
+ "ListMonitoringAlertsPaginator",
318
420
  "ListMonitoringExecutionsPaginator",
319
421
  "ListMonitoringSchedulesPaginator",
320
422
  "ListNotebookInstanceLifecycleConfigsPaginator",
321
423
  "ListNotebookInstancesPaginator",
424
+ "ListOptimizationJobsPaginator",
425
+ "ListPartnerAppsPaginator",
322
426
  "ListPipelineExecutionStepsPaginator",
323
427
  "ListPipelineExecutionsPaginator",
324
428
  "ListPipelineParametersForExecutionPaginator",
429
+ "ListPipelineVersionsPaginator",
325
430
  "ListPipelinesPaginator",
326
431
  "ListProcessingJobsPaginator",
432
+ "ListResourceCatalogsPaginator",
433
+ "ListSpacesPaginator",
434
+ "ListStageDevicesPaginator",
327
435
  "ListStudioLifecycleConfigsPaginator",
328
436
  "ListSubscribedWorkteamsPaginator",
329
437
  "ListTagsPaginator",
330
- "ListTrainingJobsPaginator",
331
438
  "ListTrainingJobsForHyperParameterTuningJobPaginator",
439
+ "ListTrainingJobsPaginator",
440
+ "ListTrainingPlansPaginator",
332
441
  "ListTransformJobsPaginator",
333
442
  "ListTrialComponentsPaginator",
334
443
  "ListTrialsPaginator",
444
+ "ListUltraServersByReservedCapacityPaginator",
335
445
  "ListUserProfilesPaginator",
336
446
  "ListWorkforcesPaginator",
337
447
  "ListWorkteamsPaginator",
338
448
  "SearchPaginator",
339
449
  )
340
450
 
341
- _ItemTypeDef = TypeVar("_ItemTypeDef")
451
+ if TYPE_CHECKING:
452
+ _CreateHubContentPresignedUrlsPaginatorBase = Paginator[
453
+ CreateHubContentPresignedUrlsResponseTypeDef
454
+ ]
455
+ else:
456
+ _CreateHubContentPresignedUrlsPaginatorBase = Paginator # type: ignore[assignment]
342
457
 
343
- class _PageIterator(Generic[_ItemTypeDef], PageIterator):
344
- def __iter__(self) -> Iterator[_ItemTypeDef]:
458
+ class CreateHubContentPresignedUrlsPaginator(_CreateHubContentPresignedUrlsPaginatorBase):
459
+ """
460
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls)
461
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
462
+ """
463
+ def paginate( # type: ignore[override]
464
+ self, **kwargs: Unpack[CreateHubContentPresignedUrlsRequestPaginateTypeDef]
465
+ ) -> PageIterator[CreateHubContentPresignedUrlsResponseTypeDef]:
345
466
  """
346
- Proxy method to specify iterator item type.
467
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/CreateHubContentPresignedUrls.html#SageMaker.Paginator.CreateHubContentPresignedUrls.paginate)
468
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#createhubcontentpresignedurlspaginator)
347
469
  """
348
470
 
349
- class ListActionsPaginator(Boto3Paginator):
471
+ if TYPE_CHECKING:
472
+ _ListActionsPaginatorBase = Paginator[ListActionsResponseTypeDef]
473
+ else:
474
+ _ListActionsPaginatorBase = Paginator # type: ignore[assignment]
475
+
476
+ class ListActionsPaginator(_ListActionsPaginatorBase):
350
477
  """
351
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListActions)
478
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions)
352
479
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
353
480
  """
354
-
355
- def paginate(
356
- self,
357
- *,
358
- SourceUri: str = ...,
359
- ActionType: str = ...,
360
- CreatedAfter: Union[datetime, str] = ...,
361
- CreatedBefore: Union[datetime, str] = ...,
362
- SortBy: SortActionsByType = ...,
363
- SortOrder: SortOrderType = ...,
364
- PaginationConfig: "PaginatorConfigTypeDef" = ...
365
- ) -> _PageIterator[ListActionsResponseTypeDef]:
481
+ def paginate( # type: ignore[override]
482
+ self, **kwargs: Unpack[ListActionsRequestPaginateTypeDef]
483
+ ) -> PageIterator[ListActionsResponseTypeDef]:
366
484
  """
367
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListActions.paginate)
485
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions.paginate)
368
486
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
369
487
  """
370
488
 
371
- class ListAlgorithmsPaginator(Boto3Paginator):
489
+ if TYPE_CHECKING:
490
+ _ListAlgorithmsPaginatorBase = Paginator[ListAlgorithmsOutputTypeDef]
491
+ else:
492
+ _ListAlgorithmsPaginatorBase = Paginator # type: ignore[assignment]
493
+
494
+ class ListAlgorithmsPaginator(_ListAlgorithmsPaginatorBase):
372
495
  """
373
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAlgorithms)
496
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms)
374
497
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
375
498
  """
376
-
377
- def paginate(
378
- self,
379
- *,
380
- CreationTimeAfter: Union[datetime, str] = ...,
381
- CreationTimeBefore: Union[datetime, str] = ...,
382
- NameContains: str = ...,
383
- SortBy: AlgorithmSortByType = ...,
384
- SortOrder: SortOrderType = ...,
385
- PaginationConfig: "PaginatorConfigTypeDef" = ...
386
- ) -> _PageIterator[ListAlgorithmsOutputTypeDef]:
499
+ def paginate( # type: ignore[override]
500
+ self, **kwargs: Unpack[ListAlgorithmsInputPaginateTypeDef]
501
+ ) -> PageIterator[ListAlgorithmsOutputTypeDef]:
387
502
  """
388
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAlgorithms.paginate)
503
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms.paginate)
389
504
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
390
505
  """
391
506
 
392
- class ListAppImageConfigsPaginator(Boto3Paginator):
507
+ if TYPE_CHECKING:
508
+ _ListAliasesPaginatorBase = Paginator[ListAliasesResponseTypeDef]
509
+ else:
510
+ _ListAliasesPaginatorBase = Paginator # type: ignore[assignment]
511
+
512
+ class ListAliasesPaginator(_ListAliasesPaginatorBase):
393
513
  """
394
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAppImageConfigs)
395
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
514
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases)
515
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
396
516
  """
517
+ def paginate( # type: ignore[override]
518
+ self, **kwargs: Unpack[ListAliasesRequestPaginateTypeDef]
519
+ ) -> PageIterator[ListAliasesResponseTypeDef]:
520
+ """
521
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases.paginate)
522
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
523
+ """
524
+
525
+ if TYPE_CHECKING:
526
+ _ListAppImageConfigsPaginatorBase = Paginator[ListAppImageConfigsResponseTypeDef]
527
+ else:
528
+ _ListAppImageConfigsPaginatorBase = Paginator # type: ignore[assignment]
397
529
 
398
- def paginate(
399
- self,
400
- *,
401
- NameContains: str = ...,
402
- CreationTimeBefore: Union[datetime, str] = ...,
403
- CreationTimeAfter: Union[datetime, str] = ...,
404
- ModifiedTimeBefore: Union[datetime, str] = ...,
405
- ModifiedTimeAfter: Union[datetime, str] = ...,
406
- SortBy: AppImageConfigSortKeyType = ...,
407
- SortOrder: SortOrderType = ...,
408
- PaginationConfig: "PaginatorConfigTypeDef" = ...
409
- ) -> _PageIterator[ListAppImageConfigsResponseTypeDef]:
410
- """
411
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
530
+ class ListAppImageConfigsPaginator(_ListAppImageConfigsPaginatorBase):
531
+ """
532
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs)
533
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
534
+ """
535
+ def paginate( # type: ignore[override]
536
+ self, **kwargs: Unpack[ListAppImageConfigsRequestPaginateTypeDef]
537
+ ) -> PageIterator[ListAppImageConfigsResponseTypeDef]:
538
+ """
539
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
412
540
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
413
541
  """
414
542
 
415
- class ListAppsPaginator(Boto3Paginator):
543
+ if TYPE_CHECKING:
544
+ _ListAppsPaginatorBase = Paginator[ListAppsResponseTypeDef]
545
+ else:
546
+ _ListAppsPaginatorBase = Paginator # type: ignore[assignment]
547
+
548
+ class ListAppsPaginator(_ListAppsPaginatorBase):
416
549
  """
417
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListApps)
550
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps)
418
551
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
419
552
  """
420
-
421
- def paginate(
422
- self,
423
- *,
424
- SortOrder: SortOrderType = ...,
425
- SortBy: Literal["CreationTime"] = ...,
426
- DomainIdEquals: str = ...,
427
- UserProfileNameEquals: str = ...,
428
- PaginationConfig: "PaginatorConfigTypeDef" = ...
429
- ) -> _PageIterator[ListAppsResponseTypeDef]:
553
+ def paginate( # type: ignore[override]
554
+ self, **kwargs: Unpack[ListAppsRequestPaginateTypeDef]
555
+ ) -> PageIterator[ListAppsResponseTypeDef]:
430
556
  """
431
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListApps.paginate)
557
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps.paginate)
432
558
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
433
559
  """
434
560
 
435
- class ListArtifactsPaginator(Boto3Paginator):
561
+ if TYPE_CHECKING:
562
+ _ListArtifactsPaginatorBase = Paginator[ListArtifactsResponseTypeDef]
563
+ else:
564
+ _ListArtifactsPaginatorBase = Paginator # type: ignore[assignment]
565
+
566
+ class ListArtifactsPaginator(_ListArtifactsPaginatorBase):
436
567
  """
437
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListArtifacts)
568
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts)
438
569
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
439
570
  """
440
-
441
- def paginate(
442
- self,
443
- *,
444
- SourceUri: str = ...,
445
- ArtifactType: str = ...,
446
- CreatedAfter: Union[datetime, str] = ...,
447
- CreatedBefore: Union[datetime, str] = ...,
448
- SortBy: Literal["CreationTime"] = ...,
449
- SortOrder: SortOrderType = ...,
450
- PaginationConfig: "PaginatorConfigTypeDef" = ...
451
- ) -> _PageIterator[ListArtifactsResponseTypeDef]:
571
+ def paginate( # type: ignore[override]
572
+ self, **kwargs: Unpack[ListArtifactsRequestPaginateTypeDef]
573
+ ) -> PageIterator[ListArtifactsResponseTypeDef]:
452
574
  """
453
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListArtifacts.paginate)
575
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts.paginate)
454
576
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
455
577
  """
456
578
 
457
- class ListAssociationsPaginator(Boto3Paginator):
579
+ if TYPE_CHECKING:
580
+ _ListAssociationsPaginatorBase = Paginator[ListAssociationsResponseTypeDef]
581
+ else:
582
+ _ListAssociationsPaginatorBase = Paginator # type: ignore[assignment]
583
+
584
+ class ListAssociationsPaginator(_ListAssociationsPaginatorBase):
458
585
  """
459
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAssociations)
586
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations)
460
587
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
461
588
  """
462
-
463
- def paginate(
464
- self,
465
- *,
466
- SourceArn: str = ...,
467
- DestinationArn: str = ...,
468
- SourceType: str = ...,
469
- DestinationType: str = ...,
470
- AssociationType: AssociationEdgeTypeType = ...,
471
- CreatedAfter: Union[datetime, str] = ...,
472
- CreatedBefore: Union[datetime, str] = ...,
473
- SortBy: SortAssociationsByType = ...,
474
- SortOrder: SortOrderType = ...,
475
- PaginationConfig: "PaginatorConfigTypeDef" = ...
476
- ) -> _PageIterator[ListAssociationsResponseTypeDef]:
477
- """
478
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAssociations.paginate)
589
+ def paginate( # type: ignore[override]
590
+ self, **kwargs: Unpack[ListAssociationsRequestPaginateTypeDef]
591
+ ) -> PageIterator[ListAssociationsResponseTypeDef]:
592
+ """
593
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations.paginate)
479
594
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
480
595
  """
481
596
 
482
- class ListAutoMLJobsPaginator(Boto3Paginator):
597
+ if TYPE_CHECKING:
598
+ _ListAutoMLJobsPaginatorBase = Paginator[ListAutoMLJobsResponseTypeDef]
599
+ else:
600
+ _ListAutoMLJobsPaginatorBase = Paginator # type: ignore[assignment]
601
+
602
+ class ListAutoMLJobsPaginator(_ListAutoMLJobsPaginatorBase):
483
603
  """
484
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAutoMLJobs)
604
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs)
485
605
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
486
606
  """
487
-
488
- def paginate(
489
- self,
490
- *,
491
- CreationTimeAfter: Union[datetime, str] = ...,
492
- CreationTimeBefore: Union[datetime, str] = ...,
493
- LastModifiedTimeAfter: Union[datetime, str] = ...,
494
- LastModifiedTimeBefore: Union[datetime, str] = ...,
495
- NameContains: str = ...,
496
- StatusEquals: AutoMLJobStatusType = ...,
497
- SortOrder: AutoMLSortOrderType = ...,
498
- SortBy: AutoMLSortByType = ...,
499
- PaginationConfig: "PaginatorConfigTypeDef" = ...
500
- ) -> _PageIterator[ListAutoMLJobsResponseTypeDef]:
501
- """
502
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
607
+ def paginate( # type: ignore[override]
608
+ self, **kwargs: Unpack[ListAutoMLJobsRequestPaginateTypeDef]
609
+ ) -> PageIterator[ListAutoMLJobsResponseTypeDef]:
610
+ """
611
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
503
612
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
504
613
  """
505
614
 
506
- class ListCandidatesForAutoMLJobPaginator(Boto3Paginator):
615
+ if TYPE_CHECKING:
616
+ _ListCandidatesForAutoMLJobPaginatorBase = Paginator[ListCandidatesForAutoMLJobResponseTypeDef]
617
+ else:
618
+ _ListCandidatesForAutoMLJobPaginatorBase = Paginator # type: ignore[assignment]
619
+
620
+ class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBase):
507
621
  """
508
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
622
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
509
623
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
510
624
  """
511
-
512
- def paginate(
513
- self,
514
- *,
515
- AutoMLJobName: str,
516
- StatusEquals: CandidateStatusType = ...,
517
- CandidateNameEquals: str = ...,
518
- SortOrder: AutoMLSortOrderType = ...,
519
- SortBy: CandidateSortByType = ...,
520
- PaginationConfig: "PaginatorConfigTypeDef" = ...
521
- ) -> _PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
625
+ def paginate( # type: ignore[override]
626
+ self, **kwargs: Unpack[ListCandidatesForAutoMLJobRequestPaginateTypeDef]
627
+ ) -> PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
522
628
  """
523
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
629
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
524
630
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
525
631
  """
526
632
 
527
- class ListCodeRepositoriesPaginator(Boto3Paginator):
633
+ if TYPE_CHECKING:
634
+ _ListClusterEventsPaginatorBase = Paginator[ListClusterEventsResponseTypeDef]
635
+ else:
636
+ _ListClusterEventsPaginatorBase = Paginator # type: ignore[assignment]
637
+
638
+ class ListClusterEventsPaginator(_ListClusterEventsPaginatorBase):
528
639
  """
529
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCodeRepositories)
530
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
640
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents)
641
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
531
642
  """
643
+ def paginate( # type: ignore[override]
644
+ self, **kwargs: Unpack[ListClusterEventsRequestPaginateTypeDef]
645
+ ) -> PageIterator[ListClusterEventsResponseTypeDef]:
646
+ """
647
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents.paginate)
648
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
649
+ """
650
+
651
+ if TYPE_CHECKING:
652
+ _ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
653
+ else:
654
+ _ListClusterNodesPaginatorBase = Paginator # type: ignore[assignment]
655
+
656
+ class ListClusterNodesPaginator(_ListClusterNodesPaginatorBase):
657
+ """
658
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes)
659
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
660
+ """
661
+ def paginate( # type: ignore[override]
662
+ self, **kwargs: Unpack[ListClusterNodesRequestPaginateTypeDef]
663
+ ) -> PageIterator[ListClusterNodesResponseTypeDef]:
664
+ """
665
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes.paginate)
666
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
667
+ """
668
+
669
+ if TYPE_CHECKING:
670
+ _ListClusterSchedulerConfigsPaginatorBase = Paginator[
671
+ ListClusterSchedulerConfigsResponseTypeDef
672
+ ]
673
+ else:
674
+ _ListClusterSchedulerConfigsPaginatorBase = Paginator # type: ignore[assignment]
675
+
676
+ class ListClusterSchedulerConfigsPaginator(_ListClusterSchedulerConfigsPaginatorBase):
677
+ """
678
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterSchedulerConfigs.html#SageMaker.Paginator.ListClusterSchedulerConfigs)
679
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterschedulerconfigspaginator)
680
+ """
681
+ def paginate( # type: ignore[override]
682
+ self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestPaginateTypeDef]
683
+ ) -> PageIterator[ListClusterSchedulerConfigsResponseTypeDef]:
684
+ """
685
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterSchedulerConfigs.html#SageMaker.Paginator.ListClusterSchedulerConfigs.paginate)
686
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterschedulerconfigspaginator)
687
+ """
532
688
 
533
- def paginate(
534
- self,
535
- *,
536
- CreationTimeAfter: Union[datetime, str] = ...,
537
- CreationTimeBefore: Union[datetime, str] = ...,
538
- LastModifiedTimeAfter: Union[datetime, str] = ...,
539
- LastModifiedTimeBefore: Union[datetime, str] = ...,
540
- NameContains: str = ...,
541
- SortBy: CodeRepositorySortByType = ...,
542
- SortOrder: CodeRepositorySortOrderType = ...,
543
- PaginationConfig: "PaginatorConfigTypeDef" = ...
544
- ) -> _PageIterator[ListCodeRepositoriesOutputTypeDef]:
545
- """
546
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCodeRepositories.paginate)
689
+ if TYPE_CHECKING:
690
+ _ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
691
+ else:
692
+ _ListClustersPaginatorBase = Paginator # type: ignore[assignment]
693
+
694
+ class ListClustersPaginator(_ListClustersPaginatorBase):
695
+ """
696
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters)
697
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
698
+ """
699
+ def paginate( # type: ignore[override]
700
+ self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
701
+ ) -> PageIterator[ListClustersResponseTypeDef]:
702
+ """
703
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters.paginate)
704
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
705
+ """
706
+
707
+ if TYPE_CHECKING:
708
+ _ListCodeRepositoriesPaginatorBase = Paginator[ListCodeRepositoriesOutputTypeDef]
709
+ else:
710
+ _ListCodeRepositoriesPaginatorBase = Paginator # type: ignore[assignment]
711
+
712
+ class ListCodeRepositoriesPaginator(_ListCodeRepositoriesPaginatorBase):
713
+ """
714
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories)
715
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
716
+ """
717
+ def paginate( # type: ignore[override]
718
+ self, **kwargs: Unpack[ListCodeRepositoriesInputPaginateTypeDef]
719
+ ) -> PageIterator[ListCodeRepositoriesOutputTypeDef]:
720
+ """
721
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories.paginate)
547
722
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
548
723
  """
549
724
 
550
- class ListCompilationJobsPaginator(Boto3Paginator):
725
+ if TYPE_CHECKING:
726
+ _ListCompilationJobsPaginatorBase = Paginator[ListCompilationJobsResponseTypeDef]
727
+ else:
728
+ _ListCompilationJobsPaginatorBase = Paginator # type: ignore[assignment]
729
+
730
+ class ListCompilationJobsPaginator(_ListCompilationJobsPaginatorBase):
551
731
  """
552
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCompilationJobs)
732
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs)
553
733
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
554
734
  """
555
-
556
- def paginate(
557
- self,
558
- *,
559
- CreationTimeAfter: Union[datetime, str] = ...,
560
- CreationTimeBefore: Union[datetime, str] = ...,
561
- LastModifiedTimeAfter: Union[datetime, str] = ...,
562
- LastModifiedTimeBefore: Union[datetime, str] = ...,
563
- NameContains: str = ...,
564
- StatusEquals: CompilationJobStatusType = ...,
565
- SortBy: ListCompilationJobsSortByType = ...,
566
- SortOrder: SortOrderType = ...,
567
- PaginationConfig: "PaginatorConfigTypeDef" = ...
568
- ) -> _PageIterator[ListCompilationJobsResponseTypeDef]:
569
- """
570
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCompilationJobs.paginate)
735
+ def paginate( # type: ignore[override]
736
+ self, **kwargs: Unpack[ListCompilationJobsRequestPaginateTypeDef]
737
+ ) -> PageIterator[ListCompilationJobsResponseTypeDef]:
738
+ """
739
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs.paginate)
571
740
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
572
741
  """
573
742
 
574
- class ListContextsPaginator(Boto3Paginator):
743
+ if TYPE_CHECKING:
744
+ _ListComputeQuotasPaginatorBase = Paginator[ListComputeQuotasResponseTypeDef]
745
+ else:
746
+ _ListComputeQuotasPaginatorBase = Paginator # type: ignore[assignment]
747
+
748
+ class ListComputeQuotasPaginator(_ListComputeQuotasPaginatorBase):
575
749
  """
576
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListContexts)
577
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
750
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListComputeQuotas.html#SageMaker.Paginator.ListComputeQuotas)
751
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcomputequotaspaginator)
578
752
  """
753
+ def paginate( # type: ignore[override]
754
+ self, **kwargs: Unpack[ListComputeQuotasRequestPaginateTypeDef]
755
+ ) -> PageIterator[ListComputeQuotasResponseTypeDef]:
756
+ """
757
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListComputeQuotas.html#SageMaker.Paginator.ListComputeQuotas.paginate)
758
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcomputequotaspaginator)
759
+ """
760
+
761
+ if TYPE_CHECKING:
762
+ _ListContextsPaginatorBase = Paginator[ListContextsResponseTypeDef]
763
+ else:
764
+ _ListContextsPaginatorBase = Paginator # type: ignore[assignment]
579
765
 
580
- def paginate(
581
- self,
582
- *,
583
- SourceUri: str = ...,
584
- ContextType: str = ...,
585
- CreatedAfter: Union[datetime, str] = ...,
586
- CreatedBefore: Union[datetime, str] = ...,
587
- SortBy: SortContextsByType = ...,
588
- SortOrder: SortOrderType = ...,
589
- PaginationConfig: "PaginatorConfigTypeDef" = ...
590
- ) -> _PageIterator[ListContextsResponseTypeDef]:
766
+ class ListContextsPaginator(_ListContextsPaginatorBase):
767
+ """
768
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts)
769
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
770
+ """
771
+ def paginate( # type: ignore[override]
772
+ self, **kwargs: Unpack[ListContextsRequestPaginateTypeDef]
773
+ ) -> PageIterator[ListContextsResponseTypeDef]:
591
774
  """
592
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListContexts.paginate)
775
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts.paginate)
593
776
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
594
777
  """
595
778
 
596
- class ListDataQualityJobDefinitionsPaginator(Boto3Paginator):
779
+ if TYPE_CHECKING:
780
+ _ListDataQualityJobDefinitionsPaginatorBase = Paginator[
781
+ ListDataQualityJobDefinitionsResponseTypeDef
782
+ ]
783
+ else:
784
+ _ListDataQualityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
785
+
786
+ class ListDataQualityJobDefinitionsPaginator(_ListDataQualityJobDefinitionsPaginatorBase):
597
787
  """
598
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
788
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
599
789
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
600
790
  """
601
-
602
- def paginate(
603
- self,
604
- *,
605
- EndpointName: str = ...,
606
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
607
- SortOrder: SortOrderType = ...,
608
- NameContains: str = ...,
609
- CreationTimeBefore: Union[datetime, str] = ...,
610
- CreationTimeAfter: Union[datetime, str] = ...,
611
- PaginationConfig: "PaginatorConfigTypeDef" = ...
612
- ) -> _PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
791
+ def paginate( # type: ignore[override]
792
+ self, **kwargs: Unpack[ListDataQualityJobDefinitionsRequestPaginateTypeDef]
793
+ ) -> PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
613
794
  """
614
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
795
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
615
796
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
616
797
  """
617
798
 
618
- class ListDeviceFleetsPaginator(Boto3Paginator):
799
+ if TYPE_CHECKING:
800
+ _ListDeviceFleetsPaginatorBase = Paginator[ListDeviceFleetsResponseTypeDef]
801
+ else:
802
+ _ListDeviceFleetsPaginatorBase = Paginator # type: ignore[assignment]
803
+
804
+ class ListDeviceFleetsPaginator(_ListDeviceFleetsPaginatorBase):
619
805
  """
620
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDeviceFleets)
806
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets)
621
807
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
622
808
  """
623
-
624
- def paginate(
625
- self,
626
- *,
627
- CreationTimeAfter: Union[datetime, str] = ...,
628
- CreationTimeBefore: Union[datetime, str] = ...,
629
- LastModifiedTimeAfter: Union[datetime, str] = ...,
630
- LastModifiedTimeBefore: Union[datetime, str] = ...,
631
- NameContains: str = ...,
632
- SortBy: ListDeviceFleetsSortByType = ...,
633
- SortOrder: SortOrderType = ...,
634
- PaginationConfig: "PaginatorConfigTypeDef" = ...
635
- ) -> _PageIterator[ListDeviceFleetsResponseTypeDef]:
636
- """
637
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDeviceFleets.paginate)
809
+ def paginate( # type: ignore[override]
810
+ self, **kwargs: Unpack[ListDeviceFleetsRequestPaginateTypeDef]
811
+ ) -> PageIterator[ListDeviceFleetsResponseTypeDef]:
812
+ """
813
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets.paginate)
638
814
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
639
815
  """
640
816
 
641
- class ListDevicesPaginator(Boto3Paginator):
817
+ if TYPE_CHECKING:
818
+ _ListDevicesPaginatorBase = Paginator[ListDevicesResponseTypeDef]
819
+ else:
820
+ _ListDevicesPaginatorBase = Paginator # type: ignore[assignment]
821
+
822
+ class ListDevicesPaginator(_ListDevicesPaginatorBase):
642
823
  """
643
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDevices)
824
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices)
644
825
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
645
826
  """
646
-
647
- def paginate(
648
- self,
649
- *,
650
- LatestHeartbeatAfter: Union[datetime, str] = ...,
651
- ModelName: str = ...,
652
- DeviceFleetName: str = ...,
653
- PaginationConfig: "PaginatorConfigTypeDef" = ...
654
- ) -> _PageIterator[ListDevicesResponseTypeDef]:
827
+ def paginate( # type: ignore[override]
828
+ self, **kwargs: Unpack[ListDevicesRequestPaginateTypeDef]
829
+ ) -> PageIterator[ListDevicesResponseTypeDef]:
655
830
  """
656
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDevices.paginate)
831
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices.paginate)
657
832
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
658
833
  """
659
834
 
660
- class ListDomainsPaginator(Boto3Paginator):
835
+ if TYPE_CHECKING:
836
+ _ListDomainsPaginatorBase = Paginator[ListDomainsResponseTypeDef]
837
+ else:
838
+ _ListDomainsPaginatorBase = Paginator # type: ignore[assignment]
839
+
840
+ class ListDomainsPaginator(_ListDomainsPaginatorBase):
661
841
  """
662
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDomains)
842
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains)
663
843
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
664
844
  """
665
-
666
- def paginate(
667
- self, *, PaginationConfig: "PaginatorConfigTypeDef" = ...
668
- ) -> _PageIterator[ListDomainsResponseTypeDef]:
845
+ def paginate( # type: ignore[override]
846
+ self, **kwargs: Unpack[ListDomainsRequestPaginateTypeDef]
847
+ ) -> PageIterator[ListDomainsResponseTypeDef]:
669
848
  """
670
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDomains.paginate)
849
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains.paginate)
671
850
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
672
851
  """
673
852
 
674
- class ListEdgePackagingJobsPaginator(Boto3Paginator):
853
+ if TYPE_CHECKING:
854
+ _ListEdgeDeploymentPlansPaginatorBase = Paginator[ListEdgeDeploymentPlansResponseTypeDef]
855
+ else:
856
+ _ListEdgeDeploymentPlansPaginatorBase = Paginator # type: ignore[assignment]
857
+
858
+ class ListEdgeDeploymentPlansPaginator(_ListEdgeDeploymentPlansPaginatorBase):
675
859
  """
676
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgePackagingJobs)
677
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
860
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans)
861
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
678
862
  """
863
+ def paginate( # type: ignore[override]
864
+ self, **kwargs: Unpack[ListEdgeDeploymentPlansRequestPaginateTypeDef]
865
+ ) -> PageIterator[ListEdgeDeploymentPlansResponseTypeDef]:
866
+ """
867
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans.paginate)
868
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
869
+ """
870
+
871
+ if TYPE_CHECKING:
872
+ _ListEdgePackagingJobsPaginatorBase = Paginator[ListEdgePackagingJobsResponseTypeDef]
873
+ else:
874
+ _ListEdgePackagingJobsPaginatorBase = Paginator # type: ignore[assignment]
679
875
 
680
- def paginate(
681
- self,
682
- *,
683
- CreationTimeAfter: Union[datetime, str] = ...,
684
- CreationTimeBefore: Union[datetime, str] = ...,
685
- LastModifiedTimeAfter: Union[datetime, str] = ...,
686
- LastModifiedTimeBefore: Union[datetime, str] = ...,
687
- NameContains: str = ...,
688
- ModelNameContains: str = ...,
689
- StatusEquals: EdgePackagingJobStatusType = ...,
690
- SortBy: ListEdgePackagingJobsSortByType = ...,
691
- SortOrder: SortOrderType = ...,
692
- PaginationConfig: "PaginatorConfigTypeDef" = ...
693
- ) -> _PageIterator[ListEdgePackagingJobsResponseTypeDef]:
694
- """
695
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
876
+ class ListEdgePackagingJobsPaginator(_ListEdgePackagingJobsPaginatorBase):
877
+ """
878
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs)
879
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
880
+ """
881
+ def paginate( # type: ignore[override]
882
+ self, **kwargs: Unpack[ListEdgePackagingJobsRequestPaginateTypeDef]
883
+ ) -> PageIterator[ListEdgePackagingJobsResponseTypeDef]:
884
+ """
885
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
696
886
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
697
887
  """
698
888
 
699
- class ListEndpointConfigsPaginator(Boto3Paginator):
889
+ if TYPE_CHECKING:
890
+ _ListEndpointConfigsPaginatorBase = Paginator[ListEndpointConfigsOutputTypeDef]
891
+ else:
892
+ _ListEndpointConfigsPaginatorBase = Paginator # type: ignore[assignment]
893
+
894
+ class ListEndpointConfigsPaginator(_ListEndpointConfigsPaginatorBase):
700
895
  """
701
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpointConfigs)
896
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs)
702
897
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
703
898
  """
704
-
705
- def paginate(
706
- self,
707
- *,
708
- SortBy: EndpointConfigSortKeyType = ...,
709
- SortOrder: OrderKeyType = ...,
710
- NameContains: str = ...,
711
- CreationTimeBefore: Union[datetime, str] = ...,
712
- CreationTimeAfter: Union[datetime, str] = ...,
713
- PaginationConfig: "PaginatorConfigTypeDef" = ...
714
- ) -> _PageIterator[ListEndpointConfigsOutputTypeDef]:
899
+ def paginate( # type: ignore[override]
900
+ self, **kwargs: Unpack[ListEndpointConfigsInputPaginateTypeDef]
901
+ ) -> PageIterator[ListEndpointConfigsOutputTypeDef]:
715
902
  """
716
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
903
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
717
904
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
718
905
  """
719
906
 
720
- class ListEndpointsPaginator(Boto3Paginator):
907
+ if TYPE_CHECKING:
908
+ _ListEndpointsPaginatorBase = Paginator[ListEndpointsOutputTypeDef]
909
+ else:
910
+ _ListEndpointsPaginatorBase = Paginator # type: ignore[assignment]
911
+
912
+ class ListEndpointsPaginator(_ListEndpointsPaginatorBase):
721
913
  """
722
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpoints)
914
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints)
723
915
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
724
916
  """
725
-
726
- def paginate(
727
- self,
728
- *,
729
- SortBy: EndpointSortKeyType = ...,
730
- SortOrder: OrderKeyType = ...,
731
- NameContains: str = ...,
732
- CreationTimeBefore: Union[datetime, str] = ...,
733
- CreationTimeAfter: Union[datetime, str] = ...,
734
- LastModifiedTimeBefore: Union[datetime, str] = ...,
735
- LastModifiedTimeAfter: Union[datetime, str] = ...,
736
- StatusEquals: EndpointStatusType = ...,
737
- PaginationConfig: "PaginatorConfigTypeDef" = ...
738
- ) -> _PageIterator[ListEndpointsOutputTypeDef]:
739
- """
740
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpoints.paginate)
917
+ def paginate( # type: ignore[override]
918
+ self, **kwargs: Unpack[ListEndpointsInputPaginateTypeDef]
919
+ ) -> PageIterator[ListEndpointsOutputTypeDef]:
920
+ """
921
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints.paginate)
741
922
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
742
923
  """
743
924
 
744
- class ListExperimentsPaginator(Boto3Paginator):
925
+ if TYPE_CHECKING:
926
+ _ListExperimentsPaginatorBase = Paginator[ListExperimentsResponseTypeDef]
927
+ else:
928
+ _ListExperimentsPaginatorBase = Paginator # type: ignore[assignment]
929
+
930
+ class ListExperimentsPaginator(_ListExperimentsPaginatorBase):
745
931
  """
746
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListExperiments)
932
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments)
747
933
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
748
934
  """
749
-
750
- def paginate(
751
- self,
752
- *,
753
- CreatedAfter: Union[datetime, str] = ...,
754
- CreatedBefore: Union[datetime, str] = ...,
755
- SortBy: SortExperimentsByType = ...,
756
- SortOrder: SortOrderType = ...,
757
- PaginationConfig: "PaginatorConfigTypeDef" = ...
758
- ) -> _PageIterator[ListExperimentsResponseTypeDef]:
935
+ def paginate( # type: ignore[override]
936
+ self, **kwargs: Unpack[ListExperimentsRequestPaginateTypeDef]
937
+ ) -> PageIterator[ListExperimentsResponseTypeDef]:
759
938
  """
760
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListExperiments.paginate)
939
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments.paginate)
761
940
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
762
941
  """
763
942
 
764
- class ListFeatureGroupsPaginator(Boto3Paginator):
943
+ if TYPE_CHECKING:
944
+ _ListFeatureGroupsPaginatorBase = Paginator[ListFeatureGroupsResponseTypeDef]
945
+ else:
946
+ _ListFeatureGroupsPaginatorBase = Paginator # type: ignore[assignment]
947
+
948
+ class ListFeatureGroupsPaginator(_ListFeatureGroupsPaginatorBase):
765
949
  """
766
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFeatureGroups)
950
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups)
767
951
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
768
952
  """
769
-
770
- def paginate(
771
- self,
772
- *,
773
- NameContains: str = ...,
774
- FeatureGroupStatusEquals: FeatureGroupStatusType = ...,
775
- OfflineStoreStatusEquals: OfflineStoreStatusValueType = ...,
776
- CreationTimeAfter: Union[datetime, str] = ...,
777
- CreationTimeBefore: Union[datetime, str] = ...,
778
- SortOrder: FeatureGroupSortOrderType = ...,
779
- SortBy: FeatureGroupSortByType = ...,
780
- PaginationConfig: "PaginatorConfigTypeDef" = ...
781
- ) -> _PageIterator[ListFeatureGroupsResponseTypeDef]:
782
- """
783
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFeatureGroups.paginate)
953
+ def paginate( # type: ignore[override]
954
+ self, **kwargs: Unpack[ListFeatureGroupsRequestPaginateTypeDef]
955
+ ) -> PageIterator[ListFeatureGroupsResponseTypeDef]:
956
+ """
957
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups.paginate)
784
958
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
785
959
  """
786
960
 
787
- class ListFlowDefinitionsPaginator(Boto3Paginator):
961
+ if TYPE_CHECKING:
962
+ _ListFlowDefinitionsPaginatorBase = Paginator[ListFlowDefinitionsResponseTypeDef]
963
+ else:
964
+ _ListFlowDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
965
+
966
+ class ListFlowDefinitionsPaginator(_ListFlowDefinitionsPaginatorBase):
788
967
  """
789
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFlowDefinitions)
968
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions)
790
969
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
791
970
  """
792
-
793
- def paginate(
794
- self,
795
- *,
796
- CreationTimeAfter: Union[datetime, str] = ...,
797
- CreationTimeBefore: Union[datetime, str] = ...,
798
- SortOrder: SortOrderType = ...,
799
- PaginationConfig: "PaginatorConfigTypeDef" = ...
800
- ) -> _PageIterator[ListFlowDefinitionsResponseTypeDef]:
971
+ def paginate( # type: ignore[override]
972
+ self, **kwargs: Unpack[ListFlowDefinitionsRequestPaginateTypeDef]
973
+ ) -> PageIterator[ListFlowDefinitionsResponseTypeDef]:
801
974
  """
802
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
975
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
803
976
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
804
977
  """
805
978
 
806
- class ListHumanTaskUisPaginator(Boto3Paginator):
979
+ if TYPE_CHECKING:
980
+ _ListHumanTaskUisPaginatorBase = Paginator[ListHumanTaskUisResponseTypeDef]
981
+ else:
982
+ _ListHumanTaskUisPaginatorBase = Paginator # type: ignore[assignment]
983
+
984
+ class ListHumanTaskUisPaginator(_ListHumanTaskUisPaginatorBase):
807
985
  """
808
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHumanTaskUis)
986
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis)
809
987
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
810
988
  """
811
-
812
- def paginate(
813
- self,
814
- *,
815
- CreationTimeAfter: Union[datetime, str] = ...,
816
- CreationTimeBefore: Union[datetime, str] = ...,
817
- SortOrder: SortOrderType = ...,
818
- PaginationConfig: "PaginatorConfigTypeDef" = ...
819
- ) -> _PageIterator[ListHumanTaskUisResponseTypeDef]:
989
+ def paginate( # type: ignore[override]
990
+ self, **kwargs: Unpack[ListHumanTaskUisRequestPaginateTypeDef]
991
+ ) -> PageIterator[ListHumanTaskUisResponseTypeDef]:
820
992
  """
821
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
993
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
822
994
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
823
995
  """
824
996
 
825
- class ListHyperParameterTuningJobsPaginator(Boto3Paginator):
997
+ if TYPE_CHECKING:
998
+ _ListHyperParameterTuningJobsPaginatorBase = Paginator[
999
+ ListHyperParameterTuningJobsResponseTypeDef
1000
+ ]
1001
+ else:
1002
+ _ListHyperParameterTuningJobsPaginatorBase = Paginator # type: ignore[assignment]
1003
+
1004
+ class ListHyperParameterTuningJobsPaginator(_ListHyperParameterTuningJobsPaginatorBase):
826
1005
  """
827
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
1006
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
828
1007
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
829
1008
  """
830
-
831
- def paginate(
832
- self,
833
- *,
834
- SortBy: HyperParameterTuningJobSortByOptionsType = ...,
835
- SortOrder: SortOrderType = ...,
836
- NameContains: str = ...,
837
- CreationTimeAfter: Union[datetime, str] = ...,
838
- CreationTimeBefore: Union[datetime, str] = ...,
839
- LastModifiedTimeAfter: Union[datetime, str] = ...,
840
- LastModifiedTimeBefore: Union[datetime, str] = ...,
841
- StatusEquals: HyperParameterTuningJobStatusType = ...,
842
- PaginationConfig: "PaginatorConfigTypeDef" = ...
843
- ) -> _PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
844
- """
845
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
1009
+ def paginate( # type: ignore[override]
1010
+ self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestPaginateTypeDef]
1011
+ ) -> PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
1012
+ """
1013
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
846
1014
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
847
1015
  """
848
1016
 
849
- class ListImageVersionsPaginator(Boto3Paginator):
1017
+ if TYPE_CHECKING:
1018
+ _ListImageVersionsPaginatorBase = Paginator[ListImageVersionsResponseTypeDef]
1019
+ else:
1020
+ _ListImageVersionsPaginatorBase = Paginator # type: ignore[assignment]
1021
+
1022
+ class ListImageVersionsPaginator(_ListImageVersionsPaginatorBase):
850
1023
  """
851
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImageVersions)
1024
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions)
852
1025
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
853
1026
  """
854
-
855
- def paginate(
856
- self,
857
- *,
858
- ImageName: str,
859
- CreationTimeAfter: Union[datetime, str] = ...,
860
- CreationTimeBefore: Union[datetime, str] = ...,
861
- LastModifiedTimeAfter: Union[datetime, str] = ...,
862
- LastModifiedTimeBefore: Union[datetime, str] = ...,
863
- SortBy: ImageVersionSortByType = ...,
864
- SortOrder: ImageVersionSortOrderType = ...,
865
- PaginationConfig: "PaginatorConfigTypeDef" = ...
866
- ) -> _PageIterator[ListImageVersionsResponseTypeDef]:
867
- """
868
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImageVersions.paginate)
1027
+ def paginate( # type: ignore[override]
1028
+ self, **kwargs: Unpack[ListImageVersionsRequestPaginateTypeDef]
1029
+ ) -> PageIterator[ListImageVersionsResponseTypeDef]:
1030
+ """
1031
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions.paginate)
869
1032
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
870
1033
  """
871
1034
 
872
- class ListImagesPaginator(Boto3Paginator):
1035
+ if TYPE_CHECKING:
1036
+ _ListImagesPaginatorBase = Paginator[ListImagesResponseTypeDef]
1037
+ else:
1038
+ _ListImagesPaginatorBase = Paginator # type: ignore[assignment]
1039
+
1040
+ class ListImagesPaginator(_ListImagesPaginatorBase):
873
1041
  """
874
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImages)
1042
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages)
875
1043
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
876
1044
  """
877
-
878
- def paginate(
879
- self,
880
- *,
881
- CreationTimeAfter: Union[datetime, str] = ...,
882
- CreationTimeBefore: Union[datetime, str] = ...,
883
- LastModifiedTimeAfter: Union[datetime, str] = ...,
884
- LastModifiedTimeBefore: Union[datetime, str] = ...,
885
- NameContains: str = ...,
886
- SortBy: ImageSortByType = ...,
887
- SortOrder: ImageSortOrderType = ...,
888
- PaginationConfig: "PaginatorConfigTypeDef" = ...
889
- ) -> _PageIterator[ListImagesResponseTypeDef]:
890
- """
891
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImages.paginate)
1045
+ def paginate( # type: ignore[override]
1046
+ self, **kwargs: Unpack[ListImagesRequestPaginateTypeDef]
1047
+ ) -> PageIterator[ListImagesResponseTypeDef]:
1048
+ """
1049
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages.paginate)
892
1050
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
893
1051
  """
894
1052
 
895
- class ListInferenceRecommendationsJobsPaginator(Boto3Paginator):
1053
+ if TYPE_CHECKING:
1054
+ _ListInferenceComponentsPaginatorBase = Paginator[ListInferenceComponentsOutputTypeDef]
1055
+ else:
1056
+ _ListInferenceComponentsPaginatorBase = Paginator # type: ignore[assignment]
1057
+
1058
+ class ListInferenceComponentsPaginator(_ListInferenceComponentsPaginatorBase):
896
1059
  """
897
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
898
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
1060
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents)
1061
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
899
1062
  """
1063
+ def paginate( # type: ignore[override]
1064
+ self, **kwargs: Unpack[ListInferenceComponentsInputPaginateTypeDef]
1065
+ ) -> PageIterator[ListInferenceComponentsOutputTypeDef]:
1066
+ """
1067
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents.paginate)
1068
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
1069
+ """
900
1070
 
901
- def paginate(
902
- self,
903
- *,
904
- CreationTimeAfter: Union[datetime, str] = ...,
905
- CreationTimeBefore: Union[datetime, str] = ...,
906
- LastModifiedTimeAfter: Union[datetime, str] = ...,
907
- LastModifiedTimeBefore: Union[datetime, str] = ...,
908
- NameContains: str = ...,
909
- StatusEquals: RecommendationJobStatusType = ...,
910
- SortBy: ListInferenceRecommendationsJobsSortByType = ...,
911
- SortOrder: SortOrderType = ...,
912
- PaginationConfig: "PaginatorConfigTypeDef" = ...
913
- ) -> _PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
914
- """
915
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
916
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
1071
+ if TYPE_CHECKING:
1072
+ _ListInferenceExperimentsPaginatorBase = Paginator[ListInferenceExperimentsResponseTypeDef]
1073
+ else:
1074
+ _ListInferenceExperimentsPaginatorBase = Paginator # type: ignore[assignment]
1075
+
1076
+ class ListInferenceExperimentsPaginator(_ListInferenceExperimentsPaginatorBase):
1077
+ """
1078
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments)
1079
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
1080
+ """
1081
+ def paginate( # type: ignore[override]
1082
+ self, **kwargs: Unpack[ListInferenceExperimentsRequestPaginateTypeDef]
1083
+ ) -> PageIterator[ListInferenceExperimentsResponseTypeDef]:
1084
+ """
1085
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments.paginate)
1086
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
917
1087
  """
918
1088
 
919
- class ListLabelingJobsPaginator(Boto3Paginator):
1089
+ if TYPE_CHECKING:
1090
+ _ListInferenceRecommendationsJobStepsPaginatorBase = Paginator[
1091
+ ListInferenceRecommendationsJobStepsResponseTypeDef
1092
+ ]
1093
+ else:
1094
+ _ListInferenceRecommendationsJobStepsPaginatorBase = Paginator # type: ignore[assignment]
1095
+
1096
+ class ListInferenceRecommendationsJobStepsPaginator(
1097
+ _ListInferenceRecommendationsJobStepsPaginatorBase
1098
+ ):
920
1099
  """
921
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobs)
922
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
1100
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps)
1101
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
923
1102
  """
1103
+ def paginate( # type: ignore[override]
1104
+ self, **kwargs: Unpack[ListInferenceRecommendationsJobStepsRequestPaginateTypeDef]
1105
+ ) -> PageIterator[ListInferenceRecommendationsJobStepsResponseTypeDef]:
1106
+ """
1107
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps.paginate)
1108
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
1109
+ """
924
1110
 
925
- def paginate(
926
- self,
927
- *,
928
- CreationTimeAfter: Union[datetime, str] = ...,
929
- CreationTimeBefore: Union[datetime, str] = ...,
930
- LastModifiedTimeAfter: Union[datetime, str] = ...,
931
- LastModifiedTimeBefore: Union[datetime, str] = ...,
932
- NameContains: str = ...,
933
- SortBy: SortByType = ...,
934
- SortOrder: SortOrderType = ...,
935
- StatusEquals: LabelingJobStatusType = ...,
936
- PaginationConfig: "PaginatorConfigTypeDef" = ...
937
- ) -> _PageIterator[ListLabelingJobsResponseTypeDef]:
938
- """
939
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobs.paginate)
940
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
1111
+ if TYPE_CHECKING:
1112
+ _ListInferenceRecommendationsJobsPaginatorBase = Paginator[
1113
+ ListInferenceRecommendationsJobsResponseTypeDef
1114
+ ]
1115
+ else:
1116
+ _ListInferenceRecommendationsJobsPaginatorBase = Paginator # type: ignore[assignment]
1117
+
1118
+ class ListInferenceRecommendationsJobsPaginator(_ListInferenceRecommendationsJobsPaginatorBase):
1119
+ """
1120
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
1121
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
1122
+ """
1123
+ def paginate( # type: ignore[override]
1124
+ self, **kwargs: Unpack[ListInferenceRecommendationsJobsRequestPaginateTypeDef]
1125
+ ) -> PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
1126
+ """
1127
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
1128
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
941
1129
  """
942
1130
 
943
- class ListLabelingJobsForWorkteamPaginator(Boto3Paginator):
1131
+ if TYPE_CHECKING:
1132
+ _ListLabelingJobsForWorkteamPaginatorBase = Paginator[
1133
+ ListLabelingJobsForWorkteamResponseTypeDef
1134
+ ]
1135
+ else:
1136
+ _ListLabelingJobsForWorkteamPaginatorBase = Paginator # type: ignore[assignment]
1137
+
1138
+ class ListLabelingJobsForWorkteamPaginator(_ListLabelingJobsForWorkteamPaginatorBase):
944
1139
  """
945
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
1140
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
946
1141
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
947
1142
  """
948
-
949
- def paginate(
950
- self,
951
- *,
952
- WorkteamArn: str,
953
- CreationTimeAfter: Union[datetime, str] = ...,
954
- CreationTimeBefore: Union[datetime, str] = ...,
955
- JobReferenceCodeContains: str = ...,
956
- SortBy: Literal["CreationTime"] = ...,
957
- SortOrder: SortOrderType = ...,
958
- PaginationConfig: "PaginatorConfigTypeDef" = ...
959
- ) -> _PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
1143
+ def paginate( # type: ignore[override]
1144
+ self, **kwargs: Unpack[ListLabelingJobsForWorkteamRequestPaginateTypeDef]
1145
+ ) -> PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
960
1146
  """
961
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
1147
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
962
1148
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
963
1149
  """
964
1150
 
965
- class ListLineageGroupsPaginator(Boto3Paginator):
1151
+ if TYPE_CHECKING:
1152
+ _ListLabelingJobsPaginatorBase = Paginator[ListLabelingJobsResponseTypeDef]
1153
+ else:
1154
+ _ListLabelingJobsPaginatorBase = Paginator # type: ignore[assignment]
1155
+
1156
+ class ListLabelingJobsPaginator(_ListLabelingJobsPaginatorBase):
966
1157
  """
967
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLineageGroups)
968
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
1158
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs)
1159
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
969
1160
  """
1161
+ def paginate( # type: ignore[override]
1162
+ self, **kwargs: Unpack[ListLabelingJobsRequestPaginateTypeDef]
1163
+ ) -> PageIterator[ListLabelingJobsResponseTypeDef]:
1164
+ """
1165
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs.paginate)
1166
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
1167
+ """
1168
+
1169
+ if TYPE_CHECKING:
1170
+ _ListLineageGroupsPaginatorBase = Paginator[ListLineageGroupsResponseTypeDef]
1171
+ else:
1172
+ _ListLineageGroupsPaginatorBase = Paginator # type: ignore[assignment]
970
1173
 
971
- def paginate(
972
- self,
973
- *,
974
- CreatedAfter: Union[datetime, str] = ...,
975
- CreatedBefore: Union[datetime, str] = ...,
976
- SortBy: SortLineageGroupsByType = ...,
977
- SortOrder: SortOrderType = ...,
978
- PaginationConfig: "PaginatorConfigTypeDef" = ...
979
- ) -> _PageIterator[ListLineageGroupsResponseTypeDef]:
1174
+ class ListLineageGroupsPaginator(_ListLineageGroupsPaginatorBase):
1175
+ """
1176
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups)
1177
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
1178
+ """
1179
+ def paginate( # type: ignore[override]
1180
+ self, **kwargs: Unpack[ListLineageGroupsRequestPaginateTypeDef]
1181
+ ) -> PageIterator[ListLineageGroupsResponseTypeDef]:
980
1182
  """
981
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLineageGroups.paginate)
1183
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups.paginate)
982
1184
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
983
1185
  """
984
1186
 
985
- class ListModelBiasJobDefinitionsPaginator(Boto3Paginator):
1187
+ if TYPE_CHECKING:
1188
+ _ListMlflowTrackingServersPaginatorBase = Paginator[ListMlflowTrackingServersResponseTypeDef]
1189
+ else:
1190
+ _ListMlflowTrackingServersPaginatorBase = Paginator # type: ignore[assignment]
1191
+
1192
+ class ListMlflowTrackingServersPaginator(_ListMlflowTrackingServersPaginatorBase):
986
1193
  """
987
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
988
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
1194
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers)
1195
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
989
1196
  """
1197
+ def paginate( # type: ignore[override]
1198
+ self, **kwargs: Unpack[ListMlflowTrackingServersRequestPaginateTypeDef]
1199
+ ) -> PageIterator[ListMlflowTrackingServersResponseTypeDef]:
1200
+ """
1201
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
1202
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
1203
+ """
1204
+
1205
+ if TYPE_CHECKING:
1206
+ _ListModelBiasJobDefinitionsPaginatorBase = Paginator[
1207
+ ListModelBiasJobDefinitionsResponseTypeDef
1208
+ ]
1209
+ else:
1210
+ _ListModelBiasJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
990
1211
 
991
- def paginate(
992
- self,
993
- *,
994
- EndpointName: str = ...,
995
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
996
- SortOrder: SortOrderType = ...,
997
- NameContains: str = ...,
998
- CreationTimeBefore: Union[datetime, str] = ...,
999
- CreationTimeAfter: Union[datetime, str] = ...,
1000
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1001
- ) -> _PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
1212
+ class ListModelBiasJobDefinitionsPaginator(_ListModelBiasJobDefinitionsPaginatorBase):
1213
+ """
1214
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
1215
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
1216
+ """
1217
+ def paginate( # type: ignore[override]
1218
+ self, **kwargs: Unpack[ListModelBiasJobDefinitionsRequestPaginateTypeDef]
1219
+ ) -> PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
1002
1220
  """
1003
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
1221
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
1004
1222
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
1005
1223
  """
1006
1224
 
1007
- class ListModelExplainabilityJobDefinitionsPaginator(Boto3Paginator):
1225
+ if TYPE_CHECKING:
1226
+ _ListModelCardExportJobsPaginatorBase = Paginator[ListModelCardExportJobsResponseTypeDef]
1227
+ else:
1228
+ _ListModelCardExportJobsPaginatorBase = Paginator # type: ignore[assignment]
1229
+
1230
+ class ListModelCardExportJobsPaginator(_ListModelCardExportJobsPaginatorBase):
1008
1231
  """
1009
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
1010
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
1232
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs)
1233
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
1011
1234
  """
1235
+ def paginate( # type: ignore[override]
1236
+ self, **kwargs: Unpack[ListModelCardExportJobsRequestPaginateTypeDef]
1237
+ ) -> PageIterator[ListModelCardExportJobsResponseTypeDef]:
1238
+ """
1239
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs.paginate)
1240
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
1241
+ """
1242
+
1243
+ if TYPE_CHECKING:
1244
+ _ListModelCardVersionsPaginatorBase = Paginator[ListModelCardVersionsResponseTypeDef]
1245
+ else:
1246
+ _ListModelCardVersionsPaginatorBase = Paginator # type: ignore[assignment]
1012
1247
 
1013
- def paginate(
1014
- self,
1015
- *,
1016
- EndpointName: str = ...,
1017
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
1018
- SortOrder: SortOrderType = ...,
1019
- NameContains: str = ...,
1020
- CreationTimeBefore: Union[datetime, str] = ...,
1021
- CreationTimeAfter: Union[datetime, str] = ...,
1022
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1023
- ) -> _PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
1248
+ class ListModelCardVersionsPaginator(_ListModelCardVersionsPaginatorBase):
1249
+ """
1250
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions)
1251
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
1252
+ """
1253
+ def paginate( # type: ignore[override]
1254
+ self, **kwargs: Unpack[ListModelCardVersionsRequestPaginateTypeDef]
1255
+ ) -> PageIterator[ListModelCardVersionsResponseTypeDef]:
1024
1256
  """
1025
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
1257
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions.paginate)
1258
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
1259
+ """
1260
+
1261
+ if TYPE_CHECKING:
1262
+ _ListModelCardsPaginatorBase = Paginator[ListModelCardsResponseTypeDef]
1263
+ else:
1264
+ _ListModelCardsPaginatorBase = Paginator # type: ignore[assignment]
1265
+
1266
+ class ListModelCardsPaginator(_ListModelCardsPaginatorBase):
1267
+ """
1268
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards)
1269
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
1270
+ """
1271
+ def paginate( # type: ignore[override]
1272
+ self, **kwargs: Unpack[ListModelCardsRequestPaginateTypeDef]
1273
+ ) -> PageIterator[ListModelCardsResponseTypeDef]:
1274
+ """
1275
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards.paginate)
1276
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
1277
+ """
1278
+
1279
+ if TYPE_CHECKING:
1280
+ _ListModelExplainabilityJobDefinitionsPaginatorBase = Paginator[
1281
+ ListModelExplainabilityJobDefinitionsResponseTypeDef
1282
+ ]
1283
+ else:
1284
+ _ListModelExplainabilityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
1285
+
1286
+ class ListModelExplainabilityJobDefinitionsPaginator(
1287
+ _ListModelExplainabilityJobDefinitionsPaginatorBase
1288
+ ):
1289
+ """
1290
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
1291
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
1292
+ """
1293
+ def paginate( # type: ignore[override]
1294
+ self, **kwargs: Unpack[ListModelExplainabilityJobDefinitionsRequestPaginateTypeDef]
1295
+ ) -> PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
1296
+ """
1297
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
1026
1298
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
1027
1299
  """
1028
1300
 
1029
- class ListModelMetadataPaginator(Boto3Paginator):
1301
+ if TYPE_CHECKING:
1302
+ _ListModelMetadataPaginatorBase = Paginator[ListModelMetadataResponseTypeDef]
1303
+ else:
1304
+ _ListModelMetadataPaginatorBase = Paginator # type: ignore[assignment]
1305
+
1306
+ class ListModelMetadataPaginator(_ListModelMetadataPaginatorBase):
1030
1307
  """
1031
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelMetadata)
1308
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata)
1032
1309
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
1033
1310
  """
1034
-
1035
- def paginate(
1036
- self,
1037
- *,
1038
- SearchExpression: "ModelMetadataSearchExpressionTypeDef" = ...,
1039
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1040
- ) -> _PageIterator[ListModelMetadataResponseTypeDef]:
1311
+ def paginate( # type: ignore[override]
1312
+ self, **kwargs: Unpack[ListModelMetadataRequestPaginateTypeDef]
1313
+ ) -> PageIterator[ListModelMetadataResponseTypeDef]:
1041
1314
  """
1042
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelMetadata.paginate)
1315
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata.paginate)
1043
1316
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
1044
1317
  """
1045
1318
 
1046
- class ListModelPackageGroupsPaginator(Boto3Paginator):
1319
+ if TYPE_CHECKING:
1320
+ _ListModelPackageGroupsPaginatorBase = Paginator[ListModelPackageGroupsOutputTypeDef]
1321
+ else:
1322
+ _ListModelPackageGroupsPaginatorBase = Paginator # type: ignore[assignment]
1323
+
1324
+ class ListModelPackageGroupsPaginator(_ListModelPackageGroupsPaginatorBase):
1047
1325
  """
1048
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackageGroups)
1326
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups)
1049
1327
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
1050
1328
  """
1051
-
1052
- def paginate(
1053
- self,
1054
- *,
1055
- CreationTimeAfter: Union[datetime, str] = ...,
1056
- CreationTimeBefore: Union[datetime, str] = ...,
1057
- NameContains: str = ...,
1058
- SortBy: ModelPackageGroupSortByType = ...,
1059
- SortOrder: SortOrderType = ...,
1060
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1061
- ) -> _PageIterator[ListModelPackageGroupsOutputTypeDef]:
1329
+ def paginate( # type: ignore[override]
1330
+ self, **kwargs: Unpack[ListModelPackageGroupsInputPaginateTypeDef]
1331
+ ) -> PageIterator[ListModelPackageGroupsOutputTypeDef]:
1062
1332
  """
1063
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
1333
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
1064
1334
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
1065
1335
  """
1066
1336
 
1067
- class ListModelPackagesPaginator(Boto3Paginator):
1337
+ if TYPE_CHECKING:
1338
+ _ListModelPackagesPaginatorBase = Paginator[ListModelPackagesOutputTypeDef]
1339
+ else:
1340
+ _ListModelPackagesPaginatorBase = Paginator # type: ignore[assignment]
1341
+
1342
+ class ListModelPackagesPaginator(_ListModelPackagesPaginatorBase):
1068
1343
  """
1069
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackages)
1344
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages)
1070
1345
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
1071
1346
  """
1072
-
1073
- def paginate(
1074
- self,
1075
- *,
1076
- CreationTimeAfter: Union[datetime, str] = ...,
1077
- CreationTimeBefore: Union[datetime, str] = ...,
1078
- NameContains: str = ...,
1079
- ModelApprovalStatus: ModelApprovalStatusType = ...,
1080
- ModelPackageGroupName: str = ...,
1081
- ModelPackageType: ModelPackageTypeType = ...,
1082
- SortBy: ModelPackageSortByType = ...,
1083
- SortOrder: SortOrderType = ...,
1084
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1085
- ) -> _PageIterator[ListModelPackagesOutputTypeDef]:
1086
- """
1087
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackages.paginate)
1347
+ def paginate( # type: ignore[override]
1348
+ self, **kwargs: Unpack[ListModelPackagesInputPaginateTypeDef]
1349
+ ) -> PageIterator[ListModelPackagesOutputTypeDef]:
1350
+ """
1351
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages.paginate)
1088
1352
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
1089
1353
  """
1090
1354
 
1091
- class ListModelQualityJobDefinitionsPaginator(Boto3Paginator):
1355
+ if TYPE_CHECKING:
1356
+ _ListModelQualityJobDefinitionsPaginatorBase = Paginator[
1357
+ ListModelQualityJobDefinitionsResponseTypeDef
1358
+ ]
1359
+ else:
1360
+ _ListModelQualityJobDefinitionsPaginatorBase = Paginator # type: ignore[assignment]
1361
+
1362
+ class ListModelQualityJobDefinitionsPaginator(_ListModelQualityJobDefinitionsPaginatorBase):
1092
1363
  """
1093
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
1364
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
1094
1365
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
1095
1366
  """
1096
-
1097
- def paginate(
1098
- self,
1099
- *,
1100
- EndpointName: str = ...,
1101
- SortBy: MonitoringJobDefinitionSortKeyType = ...,
1102
- SortOrder: SortOrderType = ...,
1103
- NameContains: str = ...,
1104
- CreationTimeBefore: Union[datetime, str] = ...,
1105
- CreationTimeAfter: Union[datetime, str] = ...,
1106
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1107
- ) -> _PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
1367
+ def paginate( # type: ignore[override]
1368
+ self, **kwargs: Unpack[ListModelQualityJobDefinitionsRequestPaginateTypeDef]
1369
+ ) -> PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
1108
1370
  """
1109
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
1371
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
1110
1372
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
1111
1373
  """
1112
1374
 
1113
- class ListModelsPaginator(Boto3Paginator):
1375
+ if TYPE_CHECKING:
1376
+ _ListModelsPaginatorBase = Paginator[ListModelsOutputTypeDef]
1377
+ else:
1378
+ _ListModelsPaginatorBase = Paginator # type: ignore[assignment]
1379
+
1380
+ class ListModelsPaginator(_ListModelsPaginatorBase):
1114
1381
  """
1115
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModels)
1382
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels)
1116
1383
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
1117
1384
  """
1118
-
1119
- def paginate(
1120
- self,
1121
- *,
1122
- SortBy: ModelSortKeyType = ...,
1123
- SortOrder: OrderKeyType = ...,
1124
- NameContains: str = ...,
1125
- CreationTimeBefore: Union[datetime, str] = ...,
1126
- CreationTimeAfter: Union[datetime, str] = ...,
1127
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1128
- ) -> _PageIterator[ListModelsOutputTypeDef]:
1385
+ def paginate( # type: ignore[override]
1386
+ self, **kwargs: Unpack[ListModelsInputPaginateTypeDef]
1387
+ ) -> PageIterator[ListModelsOutputTypeDef]:
1129
1388
  """
1130
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModels.paginate)
1389
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels.paginate)
1131
1390
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
1132
1391
  """
1133
1392
 
1134
- class ListMonitoringExecutionsPaginator(Boto3Paginator):
1393
+ if TYPE_CHECKING:
1394
+ _ListMonitoringAlertHistoryPaginatorBase = Paginator[ListMonitoringAlertHistoryResponseTypeDef]
1395
+ else:
1396
+ _ListMonitoringAlertHistoryPaginatorBase = Paginator # type: ignore[assignment]
1397
+
1398
+ class ListMonitoringAlertHistoryPaginator(_ListMonitoringAlertHistoryPaginatorBase):
1135
1399
  """
1136
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringExecutions)
1137
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
1400
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory)
1401
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
1138
1402
  """
1403
+ def paginate( # type: ignore[override]
1404
+ self, **kwargs: Unpack[ListMonitoringAlertHistoryRequestPaginateTypeDef]
1405
+ ) -> PageIterator[ListMonitoringAlertHistoryResponseTypeDef]:
1406
+ """
1407
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory.paginate)
1408
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
1409
+ """
1410
+
1411
+ if TYPE_CHECKING:
1412
+ _ListMonitoringAlertsPaginatorBase = Paginator[ListMonitoringAlertsResponseTypeDef]
1413
+ else:
1414
+ _ListMonitoringAlertsPaginatorBase = Paginator # type: ignore[assignment]
1415
+
1416
+ class ListMonitoringAlertsPaginator(_ListMonitoringAlertsPaginatorBase):
1417
+ """
1418
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts)
1419
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
1420
+ """
1421
+ def paginate( # type: ignore[override]
1422
+ self, **kwargs: Unpack[ListMonitoringAlertsRequestPaginateTypeDef]
1423
+ ) -> PageIterator[ListMonitoringAlertsResponseTypeDef]:
1424
+ """
1425
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts.paginate)
1426
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
1427
+ """
1139
1428
 
1140
- def paginate(
1141
- self,
1142
- *,
1143
- MonitoringScheduleName: str = ...,
1144
- EndpointName: str = ...,
1145
- SortBy: MonitoringExecutionSortKeyType = ...,
1146
- SortOrder: SortOrderType = ...,
1147
- ScheduledTimeBefore: Union[datetime, str] = ...,
1148
- ScheduledTimeAfter: Union[datetime, str] = ...,
1149
- CreationTimeBefore: Union[datetime, str] = ...,
1150
- CreationTimeAfter: Union[datetime, str] = ...,
1151
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1152
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1153
- StatusEquals: ExecutionStatusType = ...,
1154
- MonitoringJobDefinitionName: str = ...,
1155
- MonitoringTypeEquals: MonitoringTypeType = ...,
1156
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1157
- ) -> _PageIterator[ListMonitoringExecutionsResponseTypeDef]:
1158
- """
1159
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
1429
+ if TYPE_CHECKING:
1430
+ _ListMonitoringExecutionsPaginatorBase = Paginator[ListMonitoringExecutionsResponseTypeDef]
1431
+ else:
1432
+ _ListMonitoringExecutionsPaginatorBase = Paginator # type: ignore[assignment]
1433
+
1434
+ class ListMonitoringExecutionsPaginator(_ListMonitoringExecutionsPaginatorBase):
1435
+ """
1436
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions)
1437
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
1438
+ """
1439
+ def paginate( # type: ignore[override]
1440
+ self, **kwargs: Unpack[ListMonitoringExecutionsRequestPaginateTypeDef]
1441
+ ) -> PageIterator[ListMonitoringExecutionsResponseTypeDef]:
1442
+ """
1443
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
1160
1444
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
1161
1445
  """
1162
1446
 
1163
- class ListMonitoringSchedulesPaginator(Boto3Paginator):
1447
+ if TYPE_CHECKING:
1448
+ _ListMonitoringSchedulesPaginatorBase = Paginator[ListMonitoringSchedulesResponseTypeDef]
1449
+ else:
1450
+ _ListMonitoringSchedulesPaginatorBase = Paginator # type: ignore[assignment]
1451
+
1452
+ class ListMonitoringSchedulesPaginator(_ListMonitoringSchedulesPaginatorBase):
1164
1453
  """
1165
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringSchedules)
1454
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules)
1166
1455
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
1167
1456
  """
1168
-
1169
- def paginate(
1170
- self,
1171
- *,
1172
- EndpointName: str = ...,
1173
- SortBy: MonitoringScheduleSortKeyType = ...,
1174
- SortOrder: SortOrderType = ...,
1175
- NameContains: str = ...,
1176
- CreationTimeBefore: Union[datetime, str] = ...,
1177
- CreationTimeAfter: Union[datetime, str] = ...,
1178
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1179
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1180
- StatusEquals: ScheduleStatusType = ...,
1181
- MonitoringJobDefinitionName: str = ...,
1182
- MonitoringTypeEquals: MonitoringTypeType = ...,
1183
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1184
- ) -> _PageIterator[ListMonitoringSchedulesResponseTypeDef]:
1185
- """
1186
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
1457
+ def paginate( # type: ignore[override]
1458
+ self, **kwargs: Unpack[ListMonitoringSchedulesRequestPaginateTypeDef]
1459
+ ) -> PageIterator[ListMonitoringSchedulesResponseTypeDef]:
1460
+ """
1461
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
1187
1462
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
1188
1463
  """
1189
1464
 
1190
- class ListNotebookInstanceLifecycleConfigsPaginator(Boto3Paginator):
1465
+ if TYPE_CHECKING:
1466
+ _ListNotebookInstanceLifecycleConfigsPaginatorBase = Paginator[
1467
+ ListNotebookInstanceLifecycleConfigsOutputTypeDef
1468
+ ]
1469
+ else:
1470
+ _ListNotebookInstanceLifecycleConfigsPaginatorBase = Paginator # type: ignore[assignment]
1471
+
1472
+ class ListNotebookInstanceLifecycleConfigsPaginator(
1473
+ _ListNotebookInstanceLifecycleConfigsPaginatorBase
1474
+ ):
1191
1475
  """
1192
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
1476
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
1193
1477
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
1194
1478
  """
1195
-
1196
- def paginate(
1197
- self,
1198
- *,
1199
- SortBy: NotebookInstanceLifecycleConfigSortKeyType = ...,
1200
- SortOrder: NotebookInstanceLifecycleConfigSortOrderType = ...,
1201
- NameContains: str = ...,
1202
- CreationTimeBefore: Union[datetime, str] = ...,
1203
- CreationTimeAfter: Union[datetime, str] = ...,
1204
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1205
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1206
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1207
- ) -> _PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
1208
- """
1209
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
1479
+ def paginate( # type: ignore[override]
1480
+ self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputPaginateTypeDef]
1481
+ ) -> PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
1482
+ """
1483
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
1210
1484
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
1211
1485
  """
1212
1486
 
1213
- class ListNotebookInstancesPaginator(Boto3Paginator):
1487
+ if TYPE_CHECKING:
1488
+ _ListNotebookInstancesPaginatorBase = Paginator[ListNotebookInstancesOutputTypeDef]
1489
+ else:
1490
+ _ListNotebookInstancesPaginatorBase = Paginator # type: ignore[assignment]
1491
+
1492
+ class ListNotebookInstancesPaginator(_ListNotebookInstancesPaginatorBase):
1214
1493
  """
1215
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstances)
1494
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances)
1216
1495
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
1217
1496
  """
1218
-
1219
- def paginate(
1220
- self,
1221
- *,
1222
- SortBy: NotebookInstanceSortKeyType = ...,
1223
- SortOrder: NotebookInstanceSortOrderType = ...,
1224
- NameContains: str = ...,
1225
- CreationTimeBefore: Union[datetime, str] = ...,
1226
- CreationTimeAfter: Union[datetime, str] = ...,
1227
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1228
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1229
- StatusEquals: NotebookInstanceStatusType = ...,
1230
- NotebookInstanceLifecycleConfigNameContains: str = ...,
1231
- DefaultCodeRepositoryContains: str = ...,
1232
- AdditionalCodeRepositoryEquals: str = ...,
1233
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1234
- ) -> _PageIterator[ListNotebookInstancesOutputTypeDef]:
1235
- """
1236
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstances.paginate)
1497
+ def paginate( # type: ignore[override]
1498
+ self, **kwargs: Unpack[ListNotebookInstancesInputPaginateTypeDef]
1499
+ ) -> PageIterator[ListNotebookInstancesOutputTypeDef]:
1500
+ """
1501
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances.paginate)
1237
1502
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
1238
1503
  """
1239
1504
 
1240
- class ListPipelineExecutionStepsPaginator(Boto3Paginator):
1505
+ if TYPE_CHECKING:
1506
+ _ListOptimizationJobsPaginatorBase = Paginator[ListOptimizationJobsResponseTypeDef]
1507
+ else:
1508
+ _ListOptimizationJobsPaginatorBase = Paginator # type: ignore[assignment]
1509
+
1510
+ class ListOptimizationJobsPaginator(_ListOptimizationJobsPaginatorBase):
1241
1511
  """
1242
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutionSteps)
1243
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
1512
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs)
1513
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
1514
+ """
1515
+ def paginate( # type: ignore[override]
1516
+ self, **kwargs: Unpack[ListOptimizationJobsRequestPaginateTypeDef]
1517
+ ) -> PageIterator[ListOptimizationJobsResponseTypeDef]:
1518
+ """
1519
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs.paginate)
1520
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
1521
+ """
1522
+
1523
+ if TYPE_CHECKING:
1524
+ _ListPartnerAppsPaginatorBase = Paginator[ListPartnerAppsResponseTypeDef]
1525
+ else:
1526
+ _ListPartnerAppsPaginatorBase = Paginator # type: ignore[assignment]
1527
+
1528
+ class ListPartnerAppsPaginator(_ListPartnerAppsPaginatorBase):
1244
1529
  """
1530
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPartnerApps.html#SageMaker.Paginator.ListPartnerApps)
1531
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpartnerappspaginator)
1532
+ """
1533
+ def paginate( # type: ignore[override]
1534
+ self, **kwargs: Unpack[ListPartnerAppsRequestPaginateTypeDef]
1535
+ ) -> PageIterator[ListPartnerAppsResponseTypeDef]:
1536
+ """
1537
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPartnerApps.html#SageMaker.Paginator.ListPartnerApps.paginate)
1538
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpartnerappspaginator)
1539
+ """
1245
1540
 
1246
- def paginate(
1247
- self,
1248
- *,
1249
- PipelineExecutionArn: str = ...,
1250
- SortOrder: SortOrderType = ...,
1251
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1252
- ) -> _PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
1541
+ if TYPE_CHECKING:
1542
+ _ListPipelineExecutionStepsPaginatorBase = Paginator[ListPipelineExecutionStepsResponseTypeDef]
1543
+ else:
1544
+ _ListPipelineExecutionStepsPaginatorBase = Paginator # type: ignore[assignment]
1545
+
1546
+ class ListPipelineExecutionStepsPaginator(_ListPipelineExecutionStepsPaginatorBase):
1547
+ """
1548
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps)
1549
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
1550
+ """
1551
+ def paginate( # type: ignore[override]
1552
+ self, **kwargs: Unpack[ListPipelineExecutionStepsRequestPaginateTypeDef]
1553
+ ) -> PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
1253
1554
  """
1254
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
1555
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
1255
1556
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
1256
1557
  """
1257
1558
 
1258
- class ListPipelineExecutionsPaginator(Boto3Paginator):
1559
+ if TYPE_CHECKING:
1560
+ _ListPipelineExecutionsPaginatorBase = Paginator[ListPipelineExecutionsResponseTypeDef]
1561
+ else:
1562
+ _ListPipelineExecutionsPaginatorBase = Paginator # type: ignore[assignment]
1563
+
1564
+ class ListPipelineExecutionsPaginator(_ListPipelineExecutionsPaginatorBase):
1259
1565
  """
1260
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutions)
1566
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions)
1261
1567
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
1262
1568
  """
1263
-
1264
- def paginate(
1265
- self,
1266
- *,
1267
- PipelineName: str,
1268
- CreatedAfter: Union[datetime, str] = ...,
1269
- CreatedBefore: Union[datetime, str] = ...,
1270
- SortBy: SortPipelineExecutionsByType = ...,
1271
- SortOrder: SortOrderType = ...,
1272
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1273
- ) -> _PageIterator[ListPipelineExecutionsResponseTypeDef]:
1569
+ def paginate( # type: ignore[override]
1570
+ self, **kwargs: Unpack[ListPipelineExecutionsRequestPaginateTypeDef]
1571
+ ) -> PageIterator[ListPipelineExecutionsResponseTypeDef]:
1274
1572
  """
1275
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
1573
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
1276
1574
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
1277
1575
  """
1278
1576
 
1279
- class ListPipelineParametersForExecutionPaginator(Boto3Paginator):
1577
+ if TYPE_CHECKING:
1578
+ _ListPipelineParametersForExecutionPaginatorBase = Paginator[
1579
+ ListPipelineParametersForExecutionResponseTypeDef
1580
+ ]
1581
+ else:
1582
+ _ListPipelineParametersForExecutionPaginatorBase = Paginator # type: ignore[assignment]
1583
+
1584
+ class ListPipelineParametersForExecutionPaginator(_ListPipelineParametersForExecutionPaginatorBase):
1280
1585
  """
1281
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineParametersForExecution)
1586
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution)
1282
1587
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
1283
1588
  """
1284
-
1285
- def paginate(
1286
- self, *, PipelineExecutionArn: str, PaginationConfig: "PaginatorConfigTypeDef" = ...
1287
- ) -> _PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
1589
+ def paginate( # type: ignore[override]
1590
+ self, **kwargs: Unpack[ListPipelineParametersForExecutionRequestPaginateTypeDef]
1591
+ ) -> PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
1288
1592
  """
1289
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
1593
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
1290
1594
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
1291
1595
  """
1292
1596
 
1293
- class ListPipelinesPaginator(Boto3Paginator):
1597
+ if TYPE_CHECKING:
1598
+ _ListPipelineVersionsPaginatorBase = Paginator[ListPipelineVersionsResponseTypeDef]
1599
+ else:
1600
+ _ListPipelineVersionsPaginatorBase = Paginator # type: ignore[assignment]
1601
+
1602
+ class ListPipelineVersionsPaginator(_ListPipelineVersionsPaginatorBase):
1294
1603
  """
1295
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelines)
1296
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
1604
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineVersions.html#SageMaker.Paginator.ListPipelineVersions)
1605
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineversionspaginator)
1297
1606
  """
1607
+ def paginate( # type: ignore[override]
1608
+ self, **kwargs: Unpack[ListPipelineVersionsRequestPaginateTypeDef]
1609
+ ) -> PageIterator[ListPipelineVersionsResponseTypeDef]:
1610
+ """
1611
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineVersions.html#SageMaker.Paginator.ListPipelineVersions.paginate)
1612
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineversionspaginator)
1613
+ """
1298
1614
 
1299
- def paginate(
1300
- self,
1301
- *,
1302
- PipelineNamePrefix: str = ...,
1303
- CreatedAfter: Union[datetime, str] = ...,
1304
- CreatedBefore: Union[datetime, str] = ...,
1305
- SortBy: SortPipelinesByType = ...,
1306
- SortOrder: SortOrderType = ...,
1307
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1308
- ) -> _PageIterator[ListPipelinesResponseTypeDef]:
1615
+ if TYPE_CHECKING:
1616
+ _ListPipelinesPaginatorBase = Paginator[ListPipelinesResponseTypeDef]
1617
+ else:
1618
+ _ListPipelinesPaginatorBase = Paginator # type: ignore[assignment]
1619
+
1620
+ class ListPipelinesPaginator(_ListPipelinesPaginatorBase):
1621
+ """
1622
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines)
1623
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
1624
+ """
1625
+ def paginate( # type: ignore[override]
1626
+ self, **kwargs: Unpack[ListPipelinesRequestPaginateTypeDef]
1627
+ ) -> PageIterator[ListPipelinesResponseTypeDef]:
1309
1628
  """
1310
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelines.paginate)
1629
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines.paginate)
1311
1630
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
1312
1631
  """
1313
1632
 
1314
- class ListProcessingJobsPaginator(Boto3Paginator):
1633
+ if TYPE_CHECKING:
1634
+ _ListProcessingJobsPaginatorBase = Paginator[ListProcessingJobsResponseTypeDef]
1635
+ else:
1636
+ _ListProcessingJobsPaginatorBase = Paginator # type: ignore[assignment]
1637
+
1638
+ class ListProcessingJobsPaginator(_ListProcessingJobsPaginatorBase):
1315
1639
  """
1316
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListProcessingJobs)
1640
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs)
1317
1641
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
1318
1642
  """
1319
-
1320
- def paginate(
1321
- self,
1322
- *,
1323
- CreationTimeAfter: Union[datetime, str] = ...,
1324
- CreationTimeBefore: Union[datetime, str] = ...,
1325
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1326
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1327
- NameContains: str = ...,
1328
- StatusEquals: ProcessingJobStatusType = ...,
1329
- SortBy: SortByType = ...,
1330
- SortOrder: SortOrderType = ...,
1331
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1332
- ) -> _PageIterator[ListProcessingJobsResponseTypeDef]:
1333
- """
1334
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListProcessingJobs.paginate)
1643
+ def paginate( # type: ignore[override]
1644
+ self, **kwargs: Unpack[ListProcessingJobsRequestPaginateTypeDef]
1645
+ ) -> PageIterator[ListProcessingJobsResponseTypeDef]:
1646
+ """
1647
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs.paginate)
1335
1648
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
1336
1649
  """
1337
1650
 
1338
- class ListStudioLifecycleConfigsPaginator(Boto3Paginator):
1651
+ if TYPE_CHECKING:
1652
+ _ListResourceCatalogsPaginatorBase = Paginator[ListResourceCatalogsResponseTypeDef]
1653
+ else:
1654
+ _ListResourceCatalogsPaginatorBase = Paginator # type: ignore[assignment]
1655
+
1656
+ class ListResourceCatalogsPaginator(_ListResourceCatalogsPaginatorBase):
1339
1657
  """
1340
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
1341
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
1658
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs)
1659
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
1342
1660
  """
1661
+ def paginate( # type: ignore[override]
1662
+ self, **kwargs: Unpack[ListResourceCatalogsRequestPaginateTypeDef]
1663
+ ) -> PageIterator[ListResourceCatalogsResponseTypeDef]:
1664
+ """
1665
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs.paginate)
1666
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
1667
+ """
1343
1668
 
1344
- def paginate(
1345
- self,
1346
- *,
1347
- NameContains: str = ...,
1348
- AppTypeEquals: StudioLifecycleConfigAppTypeType = ...,
1349
- CreationTimeBefore: Union[datetime, str] = ...,
1350
- CreationTimeAfter: Union[datetime, str] = ...,
1351
- ModifiedTimeBefore: Union[datetime, str] = ...,
1352
- ModifiedTimeAfter: Union[datetime, str] = ...,
1353
- SortBy: StudioLifecycleConfigSortKeyType = ...,
1354
- SortOrder: SortOrderType = ...,
1355
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1356
- ) -> _PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
1357
- """
1358
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
1669
+ if TYPE_CHECKING:
1670
+ _ListSpacesPaginatorBase = Paginator[ListSpacesResponseTypeDef]
1671
+ else:
1672
+ _ListSpacesPaginatorBase = Paginator # type: ignore[assignment]
1673
+
1674
+ class ListSpacesPaginator(_ListSpacesPaginatorBase):
1675
+ """
1676
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces)
1677
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
1678
+ """
1679
+ def paginate( # type: ignore[override]
1680
+ self, **kwargs: Unpack[ListSpacesRequestPaginateTypeDef]
1681
+ ) -> PageIterator[ListSpacesResponseTypeDef]:
1682
+ """
1683
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces.paginate)
1684
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
1685
+ """
1686
+
1687
+ if TYPE_CHECKING:
1688
+ _ListStageDevicesPaginatorBase = Paginator[ListStageDevicesResponseTypeDef]
1689
+ else:
1690
+ _ListStageDevicesPaginatorBase = Paginator # type: ignore[assignment]
1691
+
1692
+ class ListStageDevicesPaginator(_ListStageDevicesPaginatorBase):
1693
+ """
1694
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices)
1695
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
1696
+ """
1697
+ def paginate( # type: ignore[override]
1698
+ self, **kwargs: Unpack[ListStageDevicesRequestPaginateTypeDef]
1699
+ ) -> PageIterator[ListStageDevicesResponseTypeDef]:
1700
+ """
1701
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices.paginate)
1702
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
1703
+ """
1704
+
1705
+ if TYPE_CHECKING:
1706
+ _ListStudioLifecycleConfigsPaginatorBase = Paginator[ListStudioLifecycleConfigsResponseTypeDef]
1707
+ else:
1708
+ _ListStudioLifecycleConfigsPaginatorBase = Paginator # type: ignore[assignment]
1709
+
1710
+ class ListStudioLifecycleConfigsPaginator(_ListStudioLifecycleConfigsPaginatorBase):
1711
+ """
1712
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
1713
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
1714
+ """
1715
+ def paginate( # type: ignore[override]
1716
+ self, **kwargs: Unpack[ListStudioLifecycleConfigsRequestPaginateTypeDef]
1717
+ ) -> PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
1718
+ """
1719
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
1359
1720
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
1360
1721
  """
1361
1722
 
1362
- class ListSubscribedWorkteamsPaginator(Boto3Paginator):
1723
+ if TYPE_CHECKING:
1724
+ _ListSubscribedWorkteamsPaginatorBase = Paginator[ListSubscribedWorkteamsResponseTypeDef]
1725
+ else:
1726
+ _ListSubscribedWorkteamsPaginatorBase = Paginator # type: ignore[assignment]
1727
+
1728
+ class ListSubscribedWorkteamsPaginator(_ListSubscribedWorkteamsPaginatorBase):
1363
1729
  """
1364
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSubscribedWorkteams)
1730
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams)
1365
1731
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
1366
1732
  """
1367
-
1368
- def paginate(
1369
- self, *, NameContains: str = ..., PaginationConfig: "PaginatorConfigTypeDef" = ...
1370
- ) -> _PageIterator[ListSubscribedWorkteamsResponseTypeDef]:
1733
+ def paginate( # type: ignore[override]
1734
+ self, **kwargs: Unpack[ListSubscribedWorkteamsRequestPaginateTypeDef]
1735
+ ) -> PageIterator[ListSubscribedWorkteamsResponseTypeDef]:
1371
1736
  """
1372
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
1737
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
1373
1738
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
1374
1739
  """
1375
1740
 
1376
- class ListTagsPaginator(Boto3Paginator):
1741
+ if TYPE_CHECKING:
1742
+ _ListTagsPaginatorBase = Paginator[ListTagsOutputTypeDef]
1743
+ else:
1744
+ _ListTagsPaginatorBase = Paginator # type: ignore[assignment]
1745
+
1746
+ class ListTagsPaginator(_ListTagsPaginatorBase):
1377
1747
  """
1378
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTags)
1748
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags)
1379
1749
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
1380
1750
  """
1381
-
1382
- def paginate(
1383
- self, *, ResourceArn: str, PaginationConfig: "PaginatorConfigTypeDef" = ...
1384
- ) -> _PageIterator[ListTagsOutputTypeDef]:
1751
+ def paginate( # type: ignore[override]
1752
+ self, **kwargs: Unpack[ListTagsInputPaginateTypeDef]
1753
+ ) -> PageIterator[ListTagsOutputTypeDef]:
1385
1754
  """
1386
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTags.paginate)
1755
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags.paginate)
1387
1756
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
1388
1757
  """
1389
1758
 
1390
- class ListTrainingJobsPaginator(Boto3Paginator):
1759
+ if TYPE_CHECKING:
1760
+ _ListTrainingJobsForHyperParameterTuningJobPaginatorBase = Paginator[
1761
+ ListTrainingJobsForHyperParameterTuningJobResponseTypeDef
1762
+ ]
1763
+ else:
1764
+ _ListTrainingJobsForHyperParameterTuningJobPaginatorBase = Paginator # type: ignore[assignment]
1765
+
1766
+ class ListTrainingJobsForHyperParameterTuningJobPaginator(
1767
+ _ListTrainingJobsForHyperParameterTuningJobPaginatorBase
1768
+ ):
1391
1769
  """
1392
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobs)
1393
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
1770
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
1771
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
1394
1772
  """
1773
+ def paginate( # type: ignore[override]
1774
+ self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef]
1775
+ ) -> PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
1776
+ """
1777
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
1778
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
1779
+ """
1780
+
1781
+ if TYPE_CHECKING:
1782
+ _ListTrainingJobsPaginatorBase = Paginator[ListTrainingJobsResponseTypeDef]
1783
+ else:
1784
+ _ListTrainingJobsPaginatorBase = Paginator # type: ignore[assignment]
1395
1785
 
1396
- def paginate(
1397
- self,
1398
- *,
1399
- CreationTimeAfter: Union[datetime, str] = ...,
1400
- CreationTimeBefore: Union[datetime, str] = ...,
1401
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1402
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1403
- NameContains: str = ...,
1404
- StatusEquals: TrainingJobStatusType = ...,
1405
- SortBy: SortByType = ...,
1406
- SortOrder: SortOrderType = ...,
1407
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1408
- ) -> _PageIterator[ListTrainingJobsResponseTypeDef]:
1409
- """
1410
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobs.paginate)
1786
+ class ListTrainingJobsPaginator(_ListTrainingJobsPaginatorBase):
1787
+ """
1788
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs)
1789
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
1790
+ """
1791
+ def paginate( # type: ignore[override]
1792
+ self, **kwargs: Unpack[ListTrainingJobsRequestPaginateTypeDef]
1793
+ ) -> PageIterator[ListTrainingJobsResponseTypeDef]:
1794
+ """
1795
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs.paginate)
1411
1796
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
1412
1797
  """
1413
1798
 
1414
- class ListTrainingJobsForHyperParameterTuningJobPaginator(Boto3Paginator):
1799
+ if TYPE_CHECKING:
1800
+ _ListTrainingPlansPaginatorBase = Paginator[ListTrainingPlansResponseTypeDef]
1801
+ else:
1802
+ _ListTrainingPlansPaginatorBase = Paginator # type: ignore[assignment]
1803
+
1804
+ class ListTrainingPlansPaginator(_ListTrainingPlansPaginatorBase):
1415
1805
  """
1416
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
1417
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
1806
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingPlans.html#SageMaker.Paginator.ListTrainingPlans)
1807
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingplanspaginator)
1418
1808
  """
1419
-
1420
- def paginate(
1421
- self,
1422
- *,
1423
- HyperParameterTuningJobName: str,
1424
- StatusEquals: TrainingJobStatusType = ...,
1425
- SortBy: TrainingJobSortByOptionsType = ...,
1426
- SortOrder: SortOrderType = ...,
1427
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1428
- ) -> _PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
1809
+ def paginate( # type: ignore[override]
1810
+ self, **kwargs: Unpack[ListTrainingPlansRequestPaginateTypeDef]
1811
+ ) -> PageIterator[ListTrainingPlansResponseTypeDef]:
1429
1812
  """
1430
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
1431
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
1813
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingPlans.html#SageMaker.Paginator.ListTrainingPlans.paginate)
1814
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingplanspaginator)
1432
1815
  """
1433
1816
 
1434
- class ListTransformJobsPaginator(Boto3Paginator):
1817
+ if TYPE_CHECKING:
1818
+ _ListTransformJobsPaginatorBase = Paginator[ListTransformJobsResponseTypeDef]
1819
+ else:
1820
+ _ListTransformJobsPaginatorBase = Paginator # type: ignore[assignment]
1821
+
1822
+ class ListTransformJobsPaginator(_ListTransformJobsPaginatorBase):
1435
1823
  """
1436
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTransformJobs)
1824
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs)
1437
1825
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
1438
1826
  """
1439
-
1440
- def paginate(
1441
- self,
1442
- *,
1443
- CreationTimeAfter: Union[datetime, str] = ...,
1444
- CreationTimeBefore: Union[datetime, str] = ...,
1445
- LastModifiedTimeAfter: Union[datetime, str] = ...,
1446
- LastModifiedTimeBefore: Union[datetime, str] = ...,
1447
- NameContains: str = ...,
1448
- StatusEquals: TransformJobStatusType = ...,
1449
- SortBy: SortByType = ...,
1450
- SortOrder: SortOrderType = ...,
1451
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1452
- ) -> _PageIterator[ListTransformJobsResponseTypeDef]:
1453
- """
1454
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTransformJobs.paginate)
1827
+ def paginate( # type: ignore[override]
1828
+ self, **kwargs: Unpack[ListTransformJobsRequestPaginateTypeDef]
1829
+ ) -> PageIterator[ListTransformJobsResponseTypeDef]:
1830
+ """
1831
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs.paginate)
1455
1832
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
1456
1833
  """
1457
1834
 
1458
- class ListTrialComponentsPaginator(Boto3Paginator):
1835
+ if TYPE_CHECKING:
1836
+ _ListTrialComponentsPaginatorBase = Paginator[ListTrialComponentsResponseTypeDef]
1837
+ else:
1838
+ _ListTrialComponentsPaginatorBase = Paginator # type: ignore[assignment]
1839
+
1840
+ class ListTrialComponentsPaginator(_ListTrialComponentsPaginatorBase):
1459
1841
  """
1460
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrialComponents)
1842
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents)
1461
1843
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
1462
1844
  """
1463
-
1464
- def paginate(
1465
- self,
1466
- *,
1467
- ExperimentName: str = ...,
1468
- TrialName: str = ...,
1469
- SourceArn: str = ...,
1470
- CreatedAfter: Union[datetime, str] = ...,
1471
- CreatedBefore: Union[datetime, str] = ...,
1472
- SortBy: SortTrialComponentsByType = ...,
1473
- SortOrder: SortOrderType = ...,
1474
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1475
- ) -> _PageIterator[ListTrialComponentsResponseTypeDef]:
1476
- """
1477
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrialComponents.paginate)
1845
+ def paginate( # type: ignore[override]
1846
+ self, **kwargs: Unpack[ListTrialComponentsRequestPaginateTypeDef]
1847
+ ) -> PageIterator[ListTrialComponentsResponseTypeDef]:
1848
+ """
1849
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents.paginate)
1478
1850
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
1479
1851
  """
1480
1852
 
1481
- class ListTrialsPaginator(Boto3Paginator):
1853
+ if TYPE_CHECKING:
1854
+ _ListTrialsPaginatorBase = Paginator[ListTrialsResponseTypeDef]
1855
+ else:
1856
+ _ListTrialsPaginatorBase = Paginator # type: ignore[assignment]
1857
+
1858
+ class ListTrialsPaginator(_ListTrialsPaginatorBase):
1482
1859
  """
1483
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrials)
1860
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials)
1484
1861
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
1485
1862
  """
1486
-
1487
- def paginate(
1488
- self,
1489
- *,
1490
- ExperimentName: str = ...,
1491
- TrialComponentName: str = ...,
1492
- CreatedAfter: Union[datetime, str] = ...,
1493
- CreatedBefore: Union[datetime, str] = ...,
1494
- SortBy: SortTrialsByType = ...,
1495
- SortOrder: SortOrderType = ...,
1496
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1497
- ) -> _PageIterator[ListTrialsResponseTypeDef]:
1863
+ def paginate( # type: ignore[override]
1864
+ self, **kwargs: Unpack[ListTrialsRequestPaginateTypeDef]
1865
+ ) -> PageIterator[ListTrialsResponseTypeDef]:
1498
1866
  """
1499
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrials.paginate)
1867
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials.paginate)
1500
1868
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
1501
1869
  """
1502
1870
 
1503
- class ListUserProfilesPaginator(Boto3Paginator):
1871
+ if TYPE_CHECKING:
1872
+ _ListUltraServersByReservedCapacityPaginatorBase = Paginator[
1873
+ ListUltraServersByReservedCapacityResponseTypeDef
1874
+ ]
1875
+ else:
1876
+ _ListUltraServersByReservedCapacityPaginatorBase = Paginator # type: ignore[assignment]
1877
+
1878
+ class ListUltraServersByReservedCapacityPaginator(_ListUltraServersByReservedCapacityPaginatorBase):
1504
1879
  """
1505
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListUserProfiles)
1506
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
1880
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity)
1881
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
1507
1882
  """
1883
+ def paginate( # type: ignore[override]
1884
+ self, **kwargs: Unpack[ListUltraServersByReservedCapacityRequestPaginateTypeDef]
1885
+ ) -> PageIterator[ListUltraServersByReservedCapacityResponseTypeDef]:
1886
+ """
1887
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUltraServersByReservedCapacity.html#SageMaker.Paginator.ListUltraServersByReservedCapacity.paginate)
1888
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listultraserversbyreservedcapacitypaginator)
1889
+ """
1890
+
1891
+ if TYPE_CHECKING:
1892
+ _ListUserProfilesPaginatorBase = Paginator[ListUserProfilesResponseTypeDef]
1893
+ else:
1894
+ _ListUserProfilesPaginatorBase = Paginator # type: ignore[assignment]
1508
1895
 
1509
- def paginate(
1510
- self,
1511
- *,
1512
- SortOrder: SortOrderType = ...,
1513
- SortBy: UserProfileSortKeyType = ...,
1514
- DomainIdEquals: str = ...,
1515
- UserProfileNameContains: str = ...,
1516
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1517
- ) -> _PageIterator[ListUserProfilesResponseTypeDef]:
1896
+ class ListUserProfilesPaginator(_ListUserProfilesPaginatorBase):
1897
+ """
1898
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles)
1899
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
1900
+ """
1901
+ def paginate( # type: ignore[override]
1902
+ self, **kwargs: Unpack[ListUserProfilesRequestPaginateTypeDef]
1903
+ ) -> PageIterator[ListUserProfilesResponseTypeDef]:
1518
1904
  """
1519
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListUserProfiles.paginate)
1905
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles.paginate)
1520
1906
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
1521
1907
  """
1522
1908
 
1523
- class ListWorkforcesPaginator(Boto3Paginator):
1909
+ if TYPE_CHECKING:
1910
+ _ListWorkforcesPaginatorBase = Paginator[ListWorkforcesResponseTypeDef]
1911
+ else:
1912
+ _ListWorkforcesPaginatorBase = Paginator # type: ignore[assignment]
1913
+
1914
+ class ListWorkforcesPaginator(_ListWorkforcesPaginatorBase):
1524
1915
  """
1525
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkforces)
1916
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces)
1526
1917
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
1527
1918
  """
1528
-
1529
- def paginate(
1530
- self,
1531
- *,
1532
- SortBy: ListWorkforcesSortByOptionsType = ...,
1533
- SortOrder: SortOrderType = ...,
1534
- NameContains: str = ...,
1535
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1536
- ) -> _PageIterator[ListWorkforcesResponseTypeDef]:
1919
+ def paginate( # type: ignore[override]
1920
+ self, **kwargs: Unpack[ListWorkforcesRequestPaginateTypeDef]
1921
+ ) -> PageIterator[ListWorkforcesResponseTypeDef]:
1537
1922
  """
1538
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkforces.paginate)
1923
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces.paginate)
1539
1924
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
1540
1925
  """
1541
1926
 
1542
- class ListWorkteamsPaginator(Boto3Paginator):
1927
+ if TYPE_CHECKING:
1928
+ _ListWorkteamsPaginatorBase = Paginator[ListWorkteamsResponseTypeDef]
1929
+ else:
1930
+ _ListWorkteamsPaginatorBase = Paginator # type: ignore[assignment]
1931
+
1932
+ class ListWorkteamsPaginator(_ListWorkteamsPaginatorBase):
1543
1933
  """
1544
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkteams)
1934
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams)
1545
1935
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
1546
1936
  """
1547
-
1548
- def paginate(
1549
- self,
1550
- *,
1551
- SortBy: ListWorkteamsSortByOptionsType = ...,
1552
- SortOrder: SortOrderType = ...,
1553
- NameContains: str = ...,
1554
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1555
- ) -> _PageIterator[ListWorkteamsResponseTypeDef]:
1937
+ def paginate( # type: ignore[override]
1938
+ self, **kwargs: Unpack[ListWorkteamsRequestPaginateTypeDef]
1939
+ ) -> PageIterator[ListWorkteamsResponseTypeDef]:
1556
1940
  """
1557
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkteams.paginate)
1941
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams.paginate)
1558
1942
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
1559
1943
  """
1560
1944
 
1561
- class SearchPaginator(Boto3Paginator):
1945
+ if TYPE_CHECKING:
1946
+ _SearchPaginatorBase = Paginator[SearchResponseTypeDef]
1947
+ else:
1948
+ _SearchPaginatorBase = Paginator # type: ignore[assignment]
1949
+
1950
+ class SearchPaginator(_SearchPaginatorBase):
1562
1951
  """
1563
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.Search)
1952
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search)
1564
1953
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
1565
1954
  """
1566
-
1567
- def paginate(
1568
- self,
1569
- *,
1570
- Resource: ResourceTypeType,
1571
- SearchExpression: "SearchExpressionTypeDef" = ...,
1572
- SortBy: str = ...,
1573
- SortOrder: SearchSortOrderType = ...,
1574
- PaginationConfig: "PaginatorConfigTypeDef" = ...
1575
- ) -> _PageIterator[SearchResponseTypeDef]:
1955
+ def paginate( # type: ignore[override]
1956
+ self, **kwargs: Unpack[SearchRequestPaginateTypeDef]
1957
+ ) -> PageIterator[SearchResponseTypeDef]:
1576
1958
  """
1577
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.Search.paginate)
1959
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search.paginate)
1578
1960
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
1579
1961
  """