mypy-boto3-sagemaker 1.34.122__py3-none-any.whl → 1.34.129__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +4 -0
- mypy_boto3_sagemaker/__init__.pyi +4 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +134 -0
- mypy_boto3_sagemaker/client.pyi +134 -0
- mypy_boto3_sagemaker/literals.py +32 -1
- mypy_boto3_sagemaker/literals.pyi +32 -1
- mypy_boto3_sagemaker/paginator.py +30 -0
- mypy_boto3_sagemaker/paginator.pyi +29 -0
- mypy_boto3_sagemaker/type_defs.py +277 -69
- mypy_boto3_sagemaker/type_defs.pyi +277 -69
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.34.122.dist-info → mypy_boto3_sagemaker-1.34.129.dist-info}/METADATA +7 -3
- mypy_boto3_sagemaker-1.34.129.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.34.122.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.34.122.dist-info → mypy_boto3_sagemaker-1.34.129.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.122.dist-info → mypy_boto3_sagemaker-1.34.129.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.34.122.dist-info → mypy_boto3_sagemaker-1.34.129.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -143,6 +143,7 @@ __all__ = (
|
|
|
143
143
|
"InferenceExperimentTypeType",
|
|
144
144
|
"InputModeType",
|
|
145
145
|
"InstanceTypeType",
|
|
146
|
+
"IsTrackingServerActiveType",
|
|
146
147
|
"JobTypeType",
|
|
147
148
|
"JoinSourceType",
|
|
148
149
|
"LabelingJobStatusType",
|
|
@@ -190,6 +191,7 @@ __all__ = (
|
|
|
190
191
|
"ListLabelingJobsForWorkteamSortByOptionsType",
|
|
191
192
|
"ListLabelingJobsPaginatorName",
|
|
192
193
|
"ListLineageGroupsPaginatorName",
|
|
194
|
+
"ListMlflowTrackingServersPaginatorName",
|
|
193
195
|
"ListModelBiasJobDefinitionsPaginatorName",
|
|
194
196
|
"ListModelCardExportJobsPaginatorName",
|
|
195
197
|
"ListModelCardVersionsPaginatorName",
|
|
@@ -331,6 +333,7 @@ __all__ = (
|
|
|
331
333
|
"SortOrderType",
|
|
332
334
|
"SortPipelineExecutionsByType",
|
|
333
335
|
"SortPipelinesByType",
|
|
336
|
+
"SortTrackingServerByType",
|
|
334
337
|
"SortTrialComponentsByType",
|
|
335
338
|
"SortTrialsByType",
|
|
336
339
|
"SpaceSortKeyType",
|
|
@@ -349,6 +352,8 @@ __all__ = (
|
|
|
349
352
|
"TargetPlatformArchType",
|
|
350
353
|
"TargetPlatformOsType",
|
|
351
354
|
"ThroughputModeType",
|
|
355
|
+
"TrackingServerSizeType",
|
|
356
|
+
"TrackingServerStatusType",
|
|
352
357
|
"TrafficRoutingConfigTypeType",
|
|
353
358
|
"TrafficTypeType",
|
|
354
359
|
"TrainingInputModeType",
|
|
@@ -1069,6 +1074,7 @@ InstanceTypeType = Literal[
|
|
|
1069
1074
|
"ml.t3.medium",
|
|
1070
1075
|
"ml.t3.xlarge",
|
|
1071
1076
|
]
|
|
1077
|
+
IsTrackingServerActiveType = Literal["Active", "Inactive"]
|
|
1072
1078
|
JobTypeType = Literal["INFERENCE", "NOTEBOOK_KERNEL", "TRAINING"]
|
|
1073
1079
|
JoinSourceType = Literal["Input", "None"]
|
|
1074
1080
|
LabelingJobStatusType = Literal[
|
|
@@ -1124,6 +1130,7 @@ ListLabelingJobsForWorkteamPaginatorName = Literal["list_labeling_jobs_for_workt
|
|
|
1124
1130
|
ListLabelingJobsForWorkteamSortByOptionsType = Literal["CreationTime"]
|
|
1125
1131
|
ListLabelingJobsPaginatorName = Literal["list_labeling_jobs"]
|
|
1126
1132
|
ListLineageGroupsPaginatorName = Literal["list_lineage_groups"]
|
|
1133
|
+
ListMlflowTrackingServersPaginatorName = Literal["list_mlflow_tracking_servers"]
|
|
1127
1134
|
ListModelBiasJobDefinitionsPaginatorName = Literal["list_model_bias_job_definitions"]
|
|
1128
1135
|
ListModelCardExportJobsPaginatorName = Literal["list_model_card_export_jobs"]
|
|
1129
1136
|
ListModelCardVersionsPaginatorName = Literal["list_model_card_versions"]
|
|
@@ -1593,6 +1600,7 @@ SortLineageGroupsByType = Literal["CreationTime", "Name"]
|
|
|
1593
1600
|
SortOrderType = Literal["Ascending", "Descending"]
|
|
1594
1601
|
SortPipelineExecutionsByType = Literal["CreationTime", "PipelineExecutionArn"]
|
|
1595
1602
|
SortPipelinesByType = Literal["CreationTime", "Name"]
|
|
1603
|
+
SortTrackingServerByType = Literal["CreationTime", "Name", "Status"]
|
|
1596
1604
|
SortTrialComponentsByType = Literal["CreationTime", "Name"]
|
|
1597
1605
|
SortTrialsByType = Literal["CreationTime", "Name"]
|
|
1598
1606
|
SpaceSortKeyType = Literal["CreationTime", "LastModifiedTime"]
|
|
@@ -1662,6 +1670,26 @@ TargetPlatformAcceleratorType = Literal["INTEL_GRAPHICS", "MALI", "NNA", "NVIDIA
|
|
|
1662
1670
|
TargetPlatformArchType = Literal["ARM64", "ARM_EABI", "ARM_EABIHF", "X86", "X86_64"]
|
|
1663
1671
|
TargetPlatformOsType = Literal["ANDROID", "LINUX"]
|
|
1664
1672
|
ThroughputModeType = Literal["OnDemand", "Provisioned"]
|
|
1673
|
+
TrackingServerSizeType = Literal["Large", "Medium", "Small"]
|
|
1674
|
+
TrackingServerStatusType = Literal[
|
|
1675
|
+
"CreateFailed",
|
|
1676
|
+
"Created",
|
|
1677
|
+
"Creating",
|
|
1678
|
+
"DeleteFailed",
|
|
1679
|
+
"Deleting",
|
|
1680
|
+
"MaintenanceComplete",
|
|
1681
|
+
"MaintenanceFailed",
|
|
1682
|
+
"MaintenanceInProgress",
|
|
1683
|
+
"StartFailed",
|
|
1684
|
+
"Started",
|
|
1685
|
+
"Starting",
|
|
1686
|
+
"StopFailed",
|
|
1687
|
+
"Stopped",
|
|
1688
|
+
"Stopping",
|
|
1689
|
+
"UpdateFailed",
|
|
1690
|
+
"Updated",
|
|
1691
|
+
"Updating",
|
|
1692
|
+
]
|
|
1665
1693
|
TrafficRoutingConfigTypeType = Literal["ALL_AT_ONCE", "CANARY", "LINEAR"]
|
|
1666
1694
|
TrafficTypeType = Literal["PHASES", "STAIRS"]
|
|
1667
1695
|
TrainingInputModeType = Literal["FastFile", "File", "Pipe"]
|
|
@@ -1874,11 +1902,13 @@ ServiceName = Literal[
|
|
|
1874
1902
|
"appintegrations",
|
|
1875
1903
|
"application-autoscaling",
|
|
1876
1904
|
"application-insights",
|
|
1905
|
+
"application-signals",
|
|
1877
1906
|
"applicationcostprofiler",
|
|
1878
1907
|
"appmesh",
|
|
1879
1908
|
"apprunner",
|
|
1880
1909
|
"appstream",
|
|
1881
1910
|
"appsync",
|
|
1911
|
+
"apptest",
|
|
1882
1912
|
"arc-zonal-shift",
|
|
1883
1913
|
"artifact",
|
|
1884
1914
|
"athena",
|
|
@@ -1888,7 +1918,6 @@ ServiceName = Literal[
|
|
|
1888
1918
|
"b2bi",
|
|
1889
1919
|
"backup",
|
|
1890
1920
|
"backup-gateway",
|
|
1891
|
-
"backupstorage",
|
|
1892
1921
|
"batch",
|
|
1893
1922
|
"bcm-data-exports",
|
|
1894
1923
|
"bedrock",
|
|
@@ -2124,6 +2153,7 @@ ServiceName = Literal[
|
|
|
2124
2153
|
"payment-cryptography",
|
|
2125
2154
|
"payment-cryptography-data",
|
|
2126
2155
|
"pca-connector-ad",
|
|
2156
|
+
"pca-connector-scep",
|
|
2127
2157
|
"personalize",
|
|
2128
2158
|
"personalize-events",
|
|
2129
2159
|
"personalize-runtime",
|
|
@@ -2289,6 +2319,7 @@ PaginatorName = Literal[
|
|
|
2289
2319
|
"list_labeling_jobs",
|
|
2290
2320
|
"list_labeling_jobs_for_workteam",
|
|
2291
2321
|
"list_lineage_groups",
|
|
2322
|
+
"list_mlflow_tracking_servers",
|
|
2292
2323
|
"list_model_bias_job_definitions",
|
|
2293
2324
|
"list_model_card_export_jobs",
|
|
2294
2325
|
"list_model_card_versions",
|
|
@@ -143,6 +143,7 @@ __all__ = (
|
|
|
143
143
|
"InferenceExperimentTypeType",
|
|
144
144
|
"InputModeType",
|
|
145
145
|
"InstanceTypeType",
|
|
146
|
+
"IsTrackingServerActiveType",
|
|
146
147
|
"JobTypeType",
|
|
147
148
|
"JoinSourceType",
|
|
148
149
|
"LabelingJobStatusType",
|
|
@@ -190,6 +191,7 @@ __all__ = (
|
|
|
190
191
|
"ListLabelingJobsForWorkteamSortByOptionsType",
|
|
191
192
|
"ListLabelingJobsPaginatorName",
|
|
192
193
|
"ListLineageGroupsPaginatorName",
|
|
194
|
+
"ListMlflowTrackingServersPaginatorName",
|
|
193
195
|
"ListModelBiasJobDefinitionsPaginatorName",
|
|
194
196
|
"ListModelCardExportJobsPaginatorName",
|
|
195
197
|
"ListModelCardVersionsPaginatorName",
|
|
@@ -331,6 +333,7 @@ __all__ = (
|
|
|
331
333
|
"SortOrderType",
|
|
332
334
|
"SortPipelineExecutionsByType",
|
|
333
335
|
"SortPipelinesByType",
|
|
336
|
+
"SortTrackingServerByType",
|
|
334
337
|
"SortTrialComponentsByType",
|
|
335
338
|
"SortTrialsByType",
|
|
336
339
|
"SpaceSortKeyType",
|
|
@@ -349,6 +352,8 @@ __all__ = (
|
|
|
349
352
|
"TargetPlatformArchType",
|
|
350
353
|
"TargetPlatformOsType",
|
|
351
354
|
"ThroughputModeType",
|
|
355
|
+
"TrackingServerSizeType",
|
|
356
|
+
"TrackingServerStatusType",
|
|
352
357
|
"TrafficRoutingConfigTypeType",
|
|
353
358
|
"TrafficTypeType",
|
|
354
359
|
"TrainingInputModeType",
|
|
@@ -1069,6 +1074,7 @@ InstanceTypeType = Literal[
|
|
|
1069
1074
|
"ml.t3.medium",
|
|
1070
1075
|
"ml.t3.xlarge",
|
|
1071
1076
|
]
|
|
1077
|
+
IsTrackingServerActiveType = Literal["Active", "Inactive"]
|
|
1072
1078
|
JobTypeType = Literal["INFERENCE", "NOTEBOOK_KERNEL", "TRAINING"]
|
|
1073
1079
|
JoinSourceType = Literal["Input", "None"]
|
|
1074
1080
|
LabelingJobStatusType = Literal[
|
|
@@ -1124,6 +1130,7 @@ ListLabelingJobsForWorkteamPaginatorName = Literal["list_labeling_jobs_for_workt
|
|
|
1124
1130
|
ListLabelingJobsForWorkteamSortByOptionsType = Literal["CreationTime"]
|
|
1125
1131
|
ListLabelingJobsPaginatorName = Literal["list_labeling_jobs"]
|
|
1126
1132
|
ListLineageGroupsPaginatorName = Literal["list_lineage_groups"]
|
|
1133
|
+
ListMlflowTrackingServersPaginatorName = Literal["list_mlflow_tracking_servers"]
|
|
1127
1134
|
ListModelBiasJobDefinitionsPaginatorName = Literal["list_model_bias_job_definitions"]
|
|
1128
1135
|
ListModelCardExportJobsPaginatorName = Literal["list_model_card_export_jobs"]
|
|
1129
1136
|
ListModelCardVersionsPaginatorName = Literal["list_model_card_versions"]
|
|
@@ -1593,6 +1600,7 @@ SortLineageGroupsByType = Literal["CreationTime", "Name"]
|
|
|
1593
1600
|
SortOrderType = Literal["Ascending", "Descending"]
|
|
1594
1601
|
SortPipelineExecutionsByType = Literal["CreationTime", "PipelineExecutionArn"]
|
|
1595
1602
|
SortPipelinesByType = Literal["CreationTime", "Name"]
|
|
1603
|
+
SortTrackingServerByType = Literal["CreationTime", "Name", "Status"]
|
|
1596
1604
|
SortTrialComponentsByType = Literal["CreationTime", "Name"]
|
|
1597
1605
|
SortTrialsByType = Literal["CreationTime", "Name"]
|
|
1598
1606
|
SpaceSortKeyType = Literal["CreationTime", "LastModifiedTime"]
|
|
@@ -1662,6 +1670,26 @@ TargetPlatformAcceleratorType = Literal["INTEL_GRAPHICS", "MALI", "NNA", "NVIDIA
|
|
|
1662
1670
|
TargetPlatformArchType = Literal["ARM64", "ARM_EABI", "ARM_EABIHF", "X86", "X86_64"]
|
|
1663
1671
|
TargetPlatformOsType = Literal["ANDROID", "LINUX"]
|
|
1664
1672
|
ThroughputModeType = Literal["OnDemand", "Provisioned"]
|
|
1673
|
+
TrackingServerSizeType = Literal["Large", "Medium", "Small"]
|
|
1674
|
+
TrackingServerStatusType = Literal[
|
|
1675
|
+
"CreateFailed",
|
|
1676
|
+
"Created",
|
|
1677
|
+
"Creating",
|
|
1678
|
+
"DeleteFailed",
|
|
1679
|
+
"Deleting",
|
|
1680
|
+
"MaintenanceComplete",
|
|
1681
|
+
"MaintenanceFailed",
|
|
1682
|
+
"MaintenanceInProgress",
|
|
1683
|
+
"StartFailed",
|
|
1684
|
+
"Started",
|
|
1685
|
+
"Starting",
|
|
1686
|
+
"StopFailed",
|
|
1687
|
+
"Stopped",
|
|
1688
|
+
"Stopping",
|
|
1689
|
+
"UpdateFailed",
|
|
1690
|
+
"Updated",
|
|
1691
|
+
"Updating",
|
|
1692
|
+
]
|
|
1665
1693
|
TrafficRoutingConfigTypeType = Literal["ALL_AT_ONCE", "CANARY", "LINEAR"]
|
|
1666
1694
|
TrafficTypeType = Literal["PHASES", "STAIRS"]
|
|
1667
1695
|
TrainingInputModeType = Literal["FastFile", "File", "Pipe"]
|
|
@@ -1874,11 +1902,13 @@ ServiceName = Literal[
|
|
|
1874
1902
|
"appintegrations",
|
|
1875
1903
|
"application-autoscaling",
|
|
1876
1904
|
"application-insights",
|
|
1905
|
+
"application-signals",
|
|
1877
1906
|
"applicationcostprofiler",
|
|
1878
1907
|
"appmesh",
|
|
1879
1908
|
"apprunner",
|
|
1880
1909
|
"appstream",
|
|
1881
1910
|
"appsync",
|
|
1911
|
+
"apptest",
|
|
1882
1912
|
"arc-zonal-shift",
|
|
1883
1913
|
"artifact",
|
|
1884
1914
|
"athena",
|
|
@@ -1888,7 +1918,6 @@ ServiceName = Literal[
|
|
|
1888
1918
|
"b2bi",
|
|
1889
1919
|
"backup",
|
|
1890
1920
|
"backup-gateway",
|
|
1891
|
-
"backupstorage",
|
|
1892
1921
|
"batch",
|
|
1893
1922
|
"bcm-data-exports",
|
|
1894
1923
|
"bedrock",
|
|
@@ -2124,6 +2153,7 @@ ServiceName = Literal[
|
|
|
2124
2153
|
"payment-cryptography",
|
|
2125
2154
|
"payment-cryptography-data",
|
|
2126
2155
|
"pca-connector-ad",
|
|
2156
|
+
"pca-connector-scep",
|
|
2127
2157
|
"personalize",
|
|
2128
2158
|
"personalize-events",
|
|
2129
2159
|
"personalize-runtime",
|
|
@@ -2289,6 +2319,7 @@ PaginatorName = Literal[
|
|
|
2289
2319
|
"list_labeling_jobs",
|
|
2290
2320
|
"list_labeling_jobs_for_workteam",
|
|
2291
2321
|
"list_lineage_groups",
|
|
2322
|
+
"list_mlflow_tracking_servers",
|
|
2292
2323
|
"list_model_bias_job_definitions",
|
|
2293
2324
|
"list_model_card_export_jobs",
|
|
2294
2325
|
"list_model_card_versions",
|
|
@@ -46,6 +46,7 @@ Usage::
|
|
|
46
46
|
ListLabelingJobsPaginator,
|
|
47
47
|
ListLabelingJobsForWorkteamPaginator,
|
|
48
48
|
ListLineageGroupsPaginator,
|
|
49
|
+
ListMlflowTrackingServersPaginator,
|
|
49
50
|
ListModelBiasJobDefinitionsPaginator,
|
|
50
51
|
ListModelCardExportJobsPaginator,
|
|
51
52
|
ListModelCardVersionsPaginator,
|
|
@@ -123,6 +124,7 @@ Usage::
|
|
|
123
124
|
list_labeling_jobs_paginator: ListLabelingJobsPaginator = client.get_paginator("list_labeling_jobs")
|
|
124
125
|
list_labeling_jobs_for_workteam_paginator: ListLabelingJobsForWorkteamPaginator = client.get_paginator("list_labeling_jobs_for_workteam")
|
|
125
126
|
list_lineage_groups_paginator: ListLineageGroupsPaginator = client.get_paginator("list_lineage_groups")
|
|
127
|
+
list_mlflow_tracking_servers_paginator: ListMlflowTrackingServersPaginator = client.get_paginator("list_mlflow_tracking_servers")
|
|
126
128
|
list_model_bias_job_definitions_paginator: ListModelBiasJobDefinitionsPaginator = client.get_paginator("list_model_bias_job_definitions")
|
|
127
129
|
list_model_card_export_jobs_paginator: ListModelCardExportJobsPaginator = client.get_paginator("list_model_card_export_jobs")
|
|
128
130
|
list_model_card_versions_paginator: ListModelCardVersionsPaginator = client.get_paginator("list_model_card_versions")
|
|
@@ -246,11 +248,13 @@ from .literals import (
|
|
|
246
248
|
SortOrderType,
|
|
247
249
|
SortPipelineExecutionsByType,
|
|
248
250
|
SortPipelinesByType,
|
|
251
|
+
SortTrackingServerByType,
|
|
249
252
|
SortTrialComponentsByType,
|
|
250
253
|
SortTrialsByType,
|
|
251
254
|
SpaceSortKeyType,
|
|
252
255
|
StudioLifecycleConfigAppTypeType,
|
|
253
256
|
StudioLifecycleConfigSortKeyType,
|
|
257
|
+
TrackingServerStatusType,
|
|
254
258
|
TrainingJobSortByOptionsType,
|
|
255
259
|
TrainingJobStatusType,
|
|
256
260
|
TransformJobStatusType,
|
|
@@ -294,6 +298,7 @@ from .type_defs import (
|
|
|
294
298
|
ListLabelingJobsForWorkteamResponseTypeDef,
|
|
295
299
|
ListLabelingJobsResponseTypeDef,
|
|
296
300
|
ListLineageGroupsResponseTypeDef,
|
|
301
|
+
ListMlflowTrackingServersResponseTypeDef,
|
|
297
302
|
ListModelBiasJobDefinitionsResponseTypeDef,
|
|
298
303
|
ListModelCardExportJobsResponseTypeDef,
|
|
299
304
|
ListModelCardsResponseTypeDef,
|
|
@@ -379,6 +384,7 @@ __all__ = (
|
|
|
379
384
|
"ListLabelingJobsPaginator",
|
|
380
385
|
"ListLabelingJobsForWorkteamPaginator",
|
|
381
386
|
"ListLineageGroupsPaginator",
|
|
387
|
+
"ListMlflowTrackingServersPaginator",
|
|
382
388
|
"ListModelBiasJobDefinitionsPaginator",
|
|
383
389
|
"ListModelCardExportJobsPaginator",
|
|
384
390
|
"ListModelCardVersionsPaginator",
|
|
@@ -1258,6 +1264,29 @@ class ListLineageGroupsPaginator(Paginator):
|
|
|
1258
1264
|
"""
|
|
1259
1265
|
|
|
1260
1266
|
|
|
1267
|
+
class ListMlflowTrackingServersPaginator(Paginator):
|
|
1268
|
+
"""
|
|
1269
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMlflowTrackingServers)
|
|
1270
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
1271
|
+
"""
|
|
1272
|
+
|
|
1273
|
+
def paginate(
|
|
1274
|
+
self,
|
|
1275
|
+
*,
|
|
1276
|
+
CreatedAfter: TimestampTypeDef = ...,
|
|
1277
|
+
CreatedBefore: TimestampTypeDef = ...,
|
|
1278
|
+
TrackingServerStatus: TrackingServerStatusType = ...,
|
|
1279
|
+
MlflowVersion: str = ...,
|
|
1280
|
+
SortBy: SortTrackingServerByType = ...,
|
|
1281
|
+
SortOrder: SortOrderType = ...,
|
|
1282
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
1283
|
+
) -> _PageIterator[ListMlflowTrackingServersResponseTypeDef]:
|
|
1284
|
+
"""
|
|
1285
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
|
|
1286
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
1287
|
+
"""
|
|
1288
|
+
|
|
1289
|
+
|
|
1261
1290
|
class ListModelBiasJobDefinitionsPaginator(Paginator):
|
|
1262
1291
|
"""
|
|
1263
1292
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
|
|
@@ -1407,6 +1436,7 @@ class ListModelPackageGroupsPaginator(Paginator):
|
|
|
1407
1436
|
NameContains: str = ...,
|
|
1408
1437
|
SortBy: ModelPackageGroupSortByType = ...,
|
|
1409
1438
|
SortOrder: SortOrderType = ...,
|
|
1439
|
+
CrossAccountFilterOption: CrossAccountFilterOptionType = ...,
|
|
1410
1440
|
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
1411
1441
|
) -> _PageIterator[ListModelPackageGroupsOutputTypeDef]:
|
|
1412
1442
|
"""
|
|
@@ -46,6 +46,7 @@ Usage::
|
|
|
46
46
|
ListLabelingJobsPaginator,
|
|
47
47
|
ListLabelingJobsForWorkteamPaginator,
|
|
48
48
|
ListLineageGroupsPaginator,
|
|
49
|
+
ListMlflowTrackingServersPaginator,
|
|
49
50
|
ListModelBiasJobDefinitionsPaginator,
|
|
50
51
|
ListModelCardExportJobsPaginator,
|
|
51
52
|
ListModelCardVersionsPaginator,
|
|
@@ -123,6 +124,7 @@ Usage::
|
|
|
123
124
|
list_labeling_jobs_paginator: ListLabelingJobsPaginator = client.get_paginator("list_labeling_jobs")
|
|
124
125
|
list_labeling_jobs_for_workteam_paginator: ListLabelingJobsForWorkteamPaginator = client.get_paginator("list_labeling_jobs_for_workteam")
|
|
125
126
|
list_lineage_groups_paginator: ListLineageGroupsPaginator = client.get_paginator("list_lineage_groups")
|
|
127
|
+
list_mlflow_tracking_servers_paginator: ListMlflowTrackingServersPaginator = client.get_paginator("list_mlflow_tracking_servers")
|
|
126
128
|
list_model_bias_job_definitions_paginator: ListModelBiasJobDefinitionsPaginator = client.get_paginator("list_model_bias_job_definitions")
|
|
127
129
|
list_model_card_export_jobs_paginator: ListModelCardExportJobsPaginator = client.get_paginator("list_model_card_export_jobs")
|
|
128
130
|
list_model_card_versions_paginator: ListModelCardVersionsPaginator = client.get_paginator("list_model_card_versions")
|
|
@@ -246,11 +248,13 @@ from .literals import (
|
|
|
246
248
|
SortOrderType,
|
|
247
249
|
SortPipelineExecutionsByType,
|
|
248
250
|
SortPipelinesByType,
|
|
251
|
+
SortTrackingServerByType,
|
|
249
252
|
SortTrialComponentsByType,
|
|
250
253
|
SortTrialsByType,
|
|
251
254
|
SpaceSortKeyType,
|
|
252
255
|
StudioLifecycleConfigAppTypeType,
|
|
253
256
|
StudioLifecycleConfigSortKeyType,
|
|
257
|
+
TrackingServerStatusType,
|
|
254
258
|
TrainingJobSortByOptionsType,
|
|
255
259
|
TrainingJobStatusType,
|
|
256
260
|
TransformJobStatusType,
|
|
@@ -294,6 +298,7 @@ from .type_defs import (
|
|
|
294
298
|
ListLabelingJobsForWorkteamResponseTypeDef,
|
|
295
299
|
ListLabelingJobsResponseTypeDef,
|
|
296
300
|
ListLineageGroupsResponseTypeDef,
|
|
301
|
+
ListMlflowTrackingServersResponseTypeDef,
|
|
297
302
|
ListModelBiasJobDefinitionsResponseTypeDef,
|
|
298
303
|
ListModelCardExportJobsResponseTypeDef,
|
|
299
304
|
ListModelCardsResponseTypeDef,
|
|
@@ -379,6 +384,7 @@ __all__ = (
|
|
|
379
384
|
"ListLabelingJobsPaginator",
|
|
380
385
|
"ListLabelingJobsForWorkteamPaginator",
|
|
381
386
|
"ListLineageGroupsPaginator",
|
|
387
|
+
"ListMlflowTrackingServersPaginator",
|
|
382
388
|
"ListModelBiasJobDefinitionsPaginator",
|
|
383
389
|
"ListModelCardExportJobsPaginator",
|
|
384
390
|
"ListModelCardVersionsPaginator",
|
|
@@ -1220,6 +1226,28 @@ class ListLineageGroupsPaginator(Paginator):
|
|
|
1220
1226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
|
|
1221
1227
|
"""
|
|
1222
1228
|
|
|
1229
|
+
class ListMlflowTrackingServersPaginator(Paginator):
|
|
1230
|
+
"""
|
|
1231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMlflowTrackingServers)
|
|
1232
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
1233
|
+
"""
|
|
1234
|
+
|
|
1235
|
+
def paginate(
|
|
1236
|
+
self,
|
|
1237
|
+
*,
|
|
1238
|
+
CreatedAfter: TimestampTypeDef = ...,
|
|
1239
|
+
CreatedBefore: TimestampTypeDef = ...,
|
|
1240
|
+
TrackingServerStatus: TrackingServerStatusType = ...,
|
|
1241
|
+
MlflowVersion: str = ...,
|
|
1242
|
+
SortBy: SortTrackingServerByType = ...,
|
|
1243
|
+
SortOrder: SortOrderType = ...,
|
|
1244
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
1245
|
+
) -> _PageIterator[ListMlflowTrackingServersResponseTypeDef]:
|
|
1246
|
+
"""
|
|
1247
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
|
|
1248
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
1249
|
+
"""
|
|
1250
|
+
|
|
1223
1251
|
class ListModelBiasJobDefinitionsPaginator(Paginator):
|
|
1224
1252
|
"""
|
|
1225
1253
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
|
|
@@ -1363,6 +1391,7 @@ class ListModelPackageGroupsPaginator(Paginator):
|
|
|
1363
1391
|
NameContains: str = ...,
|
|
1364
1392
|
SortBy: ModelPackageGroupSortByType = ...,
|
|
1365
1393
|
SortOrder: SortOrderType = ...,
|
|
1394
|
+
CrossAccountFilterOption: CrossAccountFilterOptionType = ...,
|
|
1366
1395
|
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
1367
1396
|
) -> _PageIterator[ListModelPackageGroupsOutputTypeDef]:
|
|
1368
1397
|
"""
|