mypy-boto3-sagemaker 1.34.129__py3-none-any.whl → 1.34.135__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/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +30 -1
- mypy_boto3_sagemaker/client.pyi +30 -1
- mypy_boto3_sagemaker/literals.py +19 -1
- mypy_boto3_sagemaker/literals.pyi +19 -1
- mypy_boto3_sagemaker/type_defs.py +68 -5
- mypy_boto3_sagemaker/type_defs.pyi +68 -5
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.135.dist-info}/METADATA +3 -3
- mypy_boto3_sagemaker-1.34.135.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.135.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.34.129.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.135.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.135.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -10,8 +10,8 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.SageMaker 1.34.
|
|
14
|
-
"Version: 1.34.
|
|
13
|
+
"Type annotations for boto3.SageMaker 1.34.135\n"
|
|
14
|
+
"Version: 1.34.135\n"
|
|
15
15
|
"Builder version: 7.24.0\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.34.
|
|
27
|
+
print("1.34.135")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -259,6 +259,7 @@ from .type_defs import (
|
|
|
259
259
|
CreateExperimentResponseTypeDef,
|
|
260
260
|
CreateFeatureGroupResponseTypeDef,
|
|
261
261
|
CreateFlowDefinitionResponseTypeDef,
|
|
262
|
+
CreateHubContentReferenceResponseTypeDef,
|
|
262
263
|
CreateHubResponseTypeDef,
|
|
263
264
|
CreateHumanTaskUiResponseTypeDef,
|
|
264
265
|
CreateHyperParameterTuningJobResponseTypeDef,
|
|
@@ -1168,6 +1169,24 @@ class SageMakerClient(BaseClient):
|
|
|
1168
1169
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub)
|
|
1169
1170
|
"""
|
|
1170
1171
|
|
|
1172
|
+
def create_hub_content_reference(
|
|
1173
|
+
self,
|
|
1174
|
+
*,
|
|
1175
|
+
HubName: str,
|
|
1176
|
+
SageMakerPublicHubContentArn: str,
|
|
1177
|
+
HubContentName: str = ...,
|
|
1178
|
+
MinVersion: str = ...,
|
|
1179
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
1180
|
+
) -> CreateHubContentReferenceResponseTypeDef:
|
|
1181
|
+
"""
|
|
1182
|
+
Create a hub content reference in order to add a model in the JumpStart public
|
|
1183
|
+
hub to a private
|
|
1184
|
+
hub.
|
|
1185
|
+
|
|
1186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.create_hub_content_reference)
|
|
1187
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub_content_reference)
|
|
1188
|
+
"""
|
|
1189
|
+
|
|
1171
1190
|
def create_human_task_ui(
|
|
1172
1191
|
self,
|
|
1173
1192
|
*,
|
|
@@ -2057,6 +2076,16 @@ class SageMakerClient(BaseClient):
|
|
|
2057
2076
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub_content)
|
|
2058
2077
|
"""
|
|
2059
2078
|
|
|
2079
|
+
def delete_hub_content_reference(
|
|
2080
|
+
self, *, HubName: str, HubContentType: HubContentTypeType, HubContentName: str
|
|
2081
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
2082
|
+
"""
|
|
2083
|
+
Delete a hub content reference in order to remove a model from a private hub.
|
|
2084
|
+
|
|
2085
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.delete_hub_content_reference)
|
|
2086
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub_content_reference)
|
|
2087
|
+
"""
|
|
2088
|
+
|
|
2060
2089
|
def delete_human_task_ui(self, *, HumanTaskUiName: str) -> Dict[str, Any]:
|
|
2061
2090
|
"""
|
|
2062
2091
|
Use this operation to delete a human task user interface (worker task template).
|
|
@@ -2557,7 +2586,7 @@ class SageMakerClient(BaseClient):
|
|
|
2557
2586
|
|
|
2558
2587
|
def describe_hub(self, *, HubName: str) -> DescribeHubResponseTypeDef:
|
|
2559
2588
|
"""
|
|
2560
|
-
|
|
2589
|
+
Describes a hub.
|
|
2561
2590
|
|
|
2562
2591
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.describe_hub)
|
|
2563
2592
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_hub)
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -259,6 +259,7 @@ from .type_defs import (
|
|
|
259
259
|
CreateExperimentResponseTypeDef,
|
|
260
260
|
CreateFeatureGroupResponseTypeDef,
|
|
261
261
|
CreateFlowDefinitionResponseTypeDef,
|
|
262
|
+
CreateHubContentReferenceResponseTypeDef,
|
|
262
263
|
CreateHubResponseTypeDef,
|
|
263
264
|
CreateHumanTaskUiResponseTypeDef,
|
|
264
265
|
CreateHyperParameterTuningJobResponseTypeDef,
|
|
@@ -1165,6 +1166,24 @@ class SageMakerClient(BaseClient):
|
|
|
1165
1166
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub)
|
|
1166
1167
|
"""
|
|
1167
1168
|
|
|
1169
|
+
def create_hub_content_reference(
|
|
1170
|
+
self,
|
|
1171
|
+
*,
|
|
1172
|
+
HubName: str,
|
|
1173
|
+
SageMakerPublicHubContentArn: str,
|
|
1174
|
+
HubContentName: str = ...,
|
|
1175
|
+
MinVersion: str = ...,
|
|
1176
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
1177
|
+
) -> CreateHubContentReferenceResponseTypeDef:
|
|
1178
|
+
"""
|
|
1179
|
+
Create a hub content reference in order to add a model in the JumpStart public
|
|
1180
|
+
hub to a private
|
|
1181
|
+
hub.
|
|
1182
|
+
|
|
1183
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.create_hub_content_reference)
|
|
1184
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub_content_reference)
|
|
1185
|
+
"""
|
|
1186
|
+
|
|
1168
1187
|
def create_human_task_ui(
|
|
1169
1188
|
self,
|
|
1170
1189
|
*,
|
|
@@ -2054,6 +2073,16 @@ class SageMakerClient(BaseClient):
|
|
|
2054
2073
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub_content)
|
|
2055
2074
|
"""
|
|
2056
2075
|
|
|
2076
|
+
def delete_hub_content_reference(
|
|
2077
|
+
self, *, HubName: str, HubContentType: HubContentTypeType, HubContentName: str
|
|
2078
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
2079
|
+
"""
|
|
2080
|
+
Delete a hub content reference in order to remove a model from a private hub.
|
|
2081
|
+
|
|
2082
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.delete_hub_content_reference)
|
|
2083
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub_content_reference)
|
|
2084
|
+
"""
|
|
2085
|
+
|
|
2057
2086
|
def delete_human_task_ui(self, *, HumanTaskUiName: str) -> Dict[str, Any]:
|
|
2058
2087
|
"""
|
|
2059
2088
|
Use this operation to delete a human task user interface (worker task template).
|
|
@@ -2554,7 +2583,7 @@ class SageMakerClient(BaseClient):
|
|
|
2554
2583
|
|
|
2555
2584
|
def describe_hub(self, *, HubName: str) -> DescribeHubResponseTypeDef:
|
|
2556
2585
|
"""
|
|
2557
|
-
|
|
2586
|
+
Describes a hub.
|
|
2558
2587
|
|
|
2559
2588
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.describe_hub)
|
|
2560
2589
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_hub)
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -113,6 +113,7 @@ __all__ = (
|
|
|
113
113
|
"FrameworkType",
|
|
114
114
|
"HubContentSortByType",
|
|
115
115
|
"HubContentStatusType",
|
|
116
|
+
"HubContentSupportStatusType",
|
|
116
117
|
"HubContentTypeType",
|
|
117
118
|
"HubSortByType",
|
|
118
119
|
"HubStatusType",
|
|
@@ -231,6 +232,7 @@ __all__ = (
|
|
|
231
232
|
"ListWorkteamsSortByOptionsType",
|
|
232
233
|
"ManagedInstanceScalingStatusType",
|
|
233
234
|
"MetricSetSourceType",
|
|
235
|
+
"MlToolsType",
|
|
234
236
|
"ModelApprovalStatusType",
|
|
235
237
|
"ModelCacheSettingType",
|
|
236
238
|
"ModelCardExportJobSortByType",
|
|
@@ -868,7 +870,8 @@ FrameworkType = Literal[
|
|
|
868
870
|
]
|
|
869
871
|
HubContentSortByType = Literal["CreationTime", "HubContentName", "HubContentStatus"]
|
|
870
872
|
HubContentStatusType = Literal["Available", "DeleteFailed", "Deleting", "ImportFailed", "Importing"]
|
|
871
|
-
|
|
873
|
+
HubContentSupportStatusType = Literal["Deprecated", "Supported"]
|
|
874
|
+
HubContentTypeType = Literal["Model", "ModelReference", "Notebook"]
|
|
872
875
|
HubSortByType = Literal["AccountIdOwner", "CreationTime", "HubName", "HubStatus"]
|
|
873
876
|
HubStatusType = Literal[
|
|
874
877
|
"CreateFailed", "Creating", "DeleteFailed", "Deleting", "InService", "UpdateFailed", "Updating"
|
|
@@ -1176,6 +1179,21 @@ ListWorkteamsPaginatorName = Literal["list_workteams"]
|
|
|
1176
1179
|
ListWorkteamsSortByOptionsType = Literal["CreateDate", "Name"]
|
|
1177
1180
|
ManagedInstanceScalingStatusType = Literal["DISABLED", "ENABLED"]
|
|
1178
1181
|
MetricSetSourceType = Literal["Test", "Train", "Validation"]
|
|
1182
|
+
MlToolsType = Literal[
|
|
1183
|
+
"AutoMl",
|
|
1184
|
+
"DataWrangler",
|
|
1185
|
+
"EmrClusters",
|
|
1186
|
+
"Endpoints",
|
|
1187
|
+
"Experiments",
|
|
1188
|
+
"FeatureStore",
|
|
1189
|
+
"InferenceRecommender",
|
|
1190
|
+
"JumpStart",
|
|
1191
|
+
"ModelEvaluation",
|
|
1192
|
+
"Models",
|
|
1193
|
+
"Pipelines",
|
|
1194
|
+
"Projects",
|
|
1195
|
+
"Training",
|
|
1196
|
+
]
|
|
1179
1197
|
ModelApprovalStatusType = Literal["Approved", "PendingManualApproval", "Rejected"]
|
|
1180
1198
|
ModelCacheSettingType = Literal["Disabled", "Enabled"]
|
|
1181
1199
|
ModelCardExportJobSortByType = Literal["CreationTime", "Name", "Status"]
|
|
@@ -113,6 +113,7 @@ __all__ = (
|
|
|
113
113
|
"FrameworkType",
|
|
114
114
|
"HubContentSortByType",
|
|
115
115
|
"HubContentStatusType",
|
|
116
|
+
"HubContentSupportStatusType",
|
|
116
117
|
"HubContentTypeType",
|
|
117
118
|
"HubSortByType",
|
|
118
119
|
"HubStatusType",
|
|
@@ -231,6 +232,7 @@ __all__ = (
|
|
|
231
232
|
"ListWorkteamsSortByOptionsType",
|
|
232
233
|
"ManagedInstanceScalingStatusType",
|
|
233
234
|
"MetricSetSourceType",
|
|
235
|
+
"MlToolsType",
|
|
234
236
|
"ModelApprovalStatusType",
|
|
235
237
|
"ModelCacheSettingType",
|
|
236
238
|
"ModelCardExportJobSortByType",
|
|
@@ -868,7 +870,8 @@ FrameworkType = Literal[
|
|
|
868
870
|
]
|
|
869
871
|
HubContentSortByType = Literal["CreationTime", "HubContentName", "HubContentStatus"]
|
|
870
872
|
HubContentStatusType = Literal["Available", "DeleteFailed", "Deleting", "ImportFailed", "Importing"]
|
|
871
|
-
|
|
873
|
+
HubContentSupportStatusType = Literal["Deprecated", "Supported"]
|
|
874
|
+
HubContentTypeType = Literal["Model", "ModelReference", "Notebook"]
|
|
872
875
|
HubSortByType = Literal["AccountIdOwner", "CreationTime", "HubName", "HubStatus"]
|
|
873
876
|
HubStatusType = Literal[
|
|
874
877
|
"CreateFailed", "Creating", "DeleteFailed", "Deleting", "InService", "UpdateFailed", "Updating"
|
|
@@ -1176,6 +1179,21 @@ ListWorkteamsPaginatorName = Literal["list_workteams"]
|
|
|
1176
1179
|
ListWorkteamsSortByOptionsType = Literal["CreateDate", "Name"]
|
|
1177
1180
|
ManagedInstanceScalingStatusType = Literal["DISABLED", "ENABLED"]
|
|
1178
1181
|
MetricSetSourceType = Literal["Test", "Train", "Validation"]
|
|
1182
|
+
MlToolsType = Literal[
|
|
1183
|
+
"AutoMl",
|
|
1184
|
+
"DataWrangler",
|
|
1185
|
+
"EmrClusters",
|
|
1186
|
+
"Endpoints",
|
|
1187
|
+
"Experiments",
|
|
1188
|
+
"FeatureStore",
|
|
1189
|
+
"InferenceRecommender",
|
|
1190
|
+
"JumpStart",
|
|
1191
|
+
"ModelEvaluation",
|
|
1192
|
+
"Models",
|
|
1193
|
+
"Pipelines",
|
|
1194
|
+
"Projects",
|
|
1195
|
+
"Training",
|
|
1196
|
+
]
|
|
1179
1197
|
ModelApprovalStatusType = Literal["Approved", "PendingManualApproval", "Rejected"]
|
|
1180
1198
|
ModelCacheSettingType = Literal["Disabled", "Enabled"]
|
|
1181
1199
|
ModelCardExportJobSortByType = Literal["CreationTime", "Name", "Status"]
|
|
@@ -105,6 +105,7 @@ from .literals import (
|
|
|
105
105
|
FrameworkType,
|
|
106
106
|
HubContentSortByType,
|
|
107
107
|
HubContentStatusType,
|
|
108
|
+
HubContentSupportStatusType,
|
|
108
109
|
HubContentTypeType,
|
|
109
110
|
HubSortByType,
|
|
110
111
|
HubStatusType,
|
|
@@ -143,6 +144,7 @@ from .literals import (
|
|
|
143
144
|
ListWorkteamsSortByOptionsType,
|
|
144
145
|
ManagedInstanceScalingStatusType,
|
|
145
146
|
MetricSetSourceType,
|
|
147
|
+
MlToolsType,
|
|
146
148
|
ModelApprovalStatusType,
|
|
147
149
|
ModelCacheSettingType,
|
|
148
150
|
ModelCardExportJobSortByType,
|
|
@@ -486,6 +488,7 @@ __all__ = (
|
|
|
486
488
|
"DeleteExperimentRequestRequestTypeDef",
|
|
487
489
|
"DeleteFeatureGroupRequestRequestTypeDef",
|
|
488
490
|
"DeleteFlowDefinitionRequestRequestTypeDef",
|
|
491
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
489
492
|
"DeleteHubContentRequestRequestTypeDef",
|
|
490
493
|
"DeleteHubRequestRequestTypeDef",
|
|
491
494
|
"DeleteHumanTaskUiRequestRequestTypeDef",
|
|
@@ -682,6 +685,7 @@ __all__ = (
|
|
|
682
685
|
"InferenceComponentStartupParametersTypeDef",
|
|
683
686
|
"InferenceComponentSummaryTypeDef",
|
|
684
687
|
"InferenceExperimentScheduleExtraOutputTypeDef",
|
|
688
|
+
"InferenceHubAccessConfigTypeDef",
|
|
685
689
|
"RecommendationMetricsTypeDef",
|
|
686
690
|
"InferenceRecommendationsJobTypeDef",
|
|
687
691
|
"InstanceGroupTypeDef",
|
|
@@ -826,6 +830,8 @@ __all__ = (
|
|
|
826
830
|
"StopProcessingJobRequestRequestTypeDef",
|
|
827
831
|
"StopTrainingJobRequestRequestTypeDef",
|
|
828
832
|
"StopTransformJobRequestRequestTypeDef",
|
|
833
|
+
"StudioWebPortalSettingsOutputTypeDef",
|
|
834
|
+
"StudioWebPortalSettingsTypeDef",
|
|
829
835
|
"ThroughputConfigUpdateTypeDef",
|
|
830
836
|
"TimeSeriesConfigOutputTypeDef",
|
|
831
837
|
"TimeSeriesConfigTypeDef",
|
|
@@ -869,6 +875,7 @@ __all__ = (
|
|
|
869
875
|
"CreateExperimentResponseTypeDef",
|
|
870
876
|
"CreateFeatureGroupResponseTypeDef",
|
|
871
877
|
"CreateFlowDefinitionResponseTypeDef",
|
|
878
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
872
879
|
"CreateHubResponseTypeDef",
|
|
873
880
|
"CreateHumanTaskUiResponseTypeDef",
|
|
874
881
|
"CreateHyperParameterTuningJobResponseTypeDef",
|
|
@@ -972,6 +979,7 @@ __all__ = (
|
|
|
972
979
|
"AddTagsInputRequestTypeDef",
|
|
973
980
|
"AddTagsOutputTypeDef",
|
|
974
981
|
"CreateExperimentRequestRequestTypeDef",
|
|
982
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
975
983
|
"CreateImageRequestRequestTypeDef",
|
|
976
984
|
"CreateMlflowTrackingServerRequestRequestTypeDef",
|
|
977
985
|
"CreateModelPackageGroupInputRequestTypeDef",
|
|
@@ -3272,6 +3280,14 @@ DeleteFlowDefinitionRequestRequestTypeDef = TypedDict(
|
|
|
3272
3280
|
"FlowDefinitionName": str,
|
|
3273
3281
|
},
|
|
3274
3282
|
)
|
|
3283
|
+
DeleteHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
3284
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
3285
|
+
{
|
|
3286
|
+
"HubName": str,
|
|
3287
|
+
"HubContentType": HubContentTypeType,
|
|
3288
|
+
"HubContentName": str,
|
|
3289
|
+
},
|
|
3290
|
+
)
|
|
3275
3291
|
DeleteHubContentRequestRequestTypeDef = TypedDict(
|
|
3276
3292
|
"DeleteHubContentRequestRequestTypeDef",
|
|
3277
3293
|
{
|
|
@@ -4538,9 +4554,12 @@ HubContentInfoTypeDef = TypedDict(
|
|
|
4538
4554
|
"DocumentSchemaVersion": str,
|
|
4539
4555
|
"HubContentStatus": HubContentStatusType,
|
|
4540
4556
|
"CreationTime": datetime,
|
|
4557
|
+
"SageMakerPublicHubContentArn": NotRequired[str],
|
|
4541
4558
|
"HubContentDisplayName": NotRequired[str],
|
|
4542
4559
|
"HubContentDescription": NotRequired[str],
|
|
4560
|
+
"SupportStatus": NotRequired[HubContentSupportStatusType],
|
|
4543
4561
|
"HubContentSearchKeywords": NotRequired[List[str]],
|
|
4562
|
+
"OriginalCreationTime": NotRequired[datetime],
|
|
4544
4563
|
},
|
|
4545
4564
|
)
|
|
4546
4565
|
HubInfoTypeDef = TypedDict(
|
|
@@ -4710,13 +4729,19 @@ InferenceExperimentScheduleExtraOutputTypeDef = TypedDict(
|
|
|
4710
4729
|
"EndTime": NotRequired[datetime],
|
|
4711
4730
|
},
|
|
4712
4731
|
)
|
|
4732
|
+
InferenceHubAccessConfigTypeDef = TypedDict(
|
|
4733
|
+
"InferenceHubAccessConfigTypeDef",
|
|
4734
|
+
{
|
|
4735
|
+
"HubContentArn": str,
|
|
4736
|
+
},
|
|
4737
|
+
)
|
|
4713
4738
|
RecommendationMetricsTypeDef = TypedDict(
|
|
4714
4739
|
"RecommendationMetricsTypeDef",
|
|
4715
4740
|
{
|
|
4716
|
-
"CostPerHour": float,
|
|
4717
|
-
"CostPerInference": float,
|
|
4718
|
-
"MaxInvocations": int,
|
|
4719
|
-
"ModelLatency": int,
|
|
4741
|
+
"CostPerHour": NotRequired[float],
|
|
4742
|
+
"CostPerInference": NotRequired[float],
|
|
4743
|
+
"MaxInvocations": NotRequired[int],
|
|
4744
|
+
"ModelLatency": NotRequired[int],
|
|
4720
4745
|
"CpuUtilization": NotRequired[float],
|
|
4721
4746
|
"MemoryUtilization": NotRequired[float],
|
|
4722
4747
|
"ModelSetupTime": NotRequired[int],
|
|
@@ -5875,6 +5900,20 @@ StopTransformJobRequestRequestTypeDef = TypedDict(
|
|
|
5875
5900
|
"TransformJobName": str,
|
|
5876
5901
|
},
|
|
5877
5902
|
)
|
|
5903
|
+
StudioWebPortalSettingsOutputTypeDef = TypedDict(
|
|
5904
|
+
"StudioWebPortalSettingsOutputTypeDef",
|
|
5905
|
+
{
|
|
5906
|
+
"HiddenMlTools": NotRequired[List[MlToolsType]],
|
|
5907
|
+
"HiddenAppTypes": NotRequired[List[AppTypeType]],
|
|
5908
|
+
},
|
|
5909
|
+
)
|
|
5910
|
+
StudioWebPortalSettingsTypeDef = TypedDict(
|
|
5911
|
+
"StudioWebPortalSettingsTypeDef",
|
|
5912
|
+
{
|
|
5913
|
+
"HiddenMlTools": NotRequired[Sequence[MlToolsType]],
|
|
5914
|
+
"HiddenAppTypes": NotRequired[Sequence[AppTypeType]],
|
|
5915
|
+
},
|
|
5916
|
+
)
|
|
5878
5917
|
ThroughputConfigUpdateTypeDef = TypedDict(
|
|
5879
5918
|
"ThroughputConfigUpdateTypeDef",
|
|
5880
5919
|
{
|
|
@@ -6217,6 +6256,14 @@ CreateFlowDefinitionResponseTypeDef = TypedDict(
|
|
|
6217
6256
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6218
6257
|
},
|
|
6219
6258
|
)
|
|
6259
|
+
CreateHubContentReferenceResponseTypeDef = TypedDict(
|
|
6260
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
6261
|
+
{
|
|
6262
|
+
"HubArn": str,
|
|
6263
|
+
"HubContentArn": str,
|
|
6264
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6265
|
+
},
|
|
6266
|
+
)
|
|
6220
6267
|
CreateHubResponseTypeDef = TypedDict(
|
|
6221
6268
|
"CreateHubResponseTypeDef",
|
|
6222
6269
|
{
|
|
@@ -6975,6 +7022,16 @@ CreateExperimentRequestRequestTypeDef = TypedDict(
|
|
|
6975
7022
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
6976
7023
|
},
|
|
6977
7024
|
)
|
|
7025
|
+
CreateHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
7026
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
7027
|
+
{
|
|
7028
|
+
"HubName": str,
|
|
7029
|
+
"SageMakerPublicHubContentArn": str,
|
|
7030
|
+
"HubContentName": NotRequired[str],
|
|
7031
|
+
"MinVersion": NotRequired[str],
|
|
7032
|
+
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
7033
|
+
},
|
|
7034
|
+
)
|
|
6978
7035
|
CreateImageRequestRequestTypeDef = TypedDict(
|
|
6979
7036
|
"CreateImageRequestRequestTypeDef",
|
|
6980
7037
|
{
|
|
@@ -9281,6 +9338,9 @@ DescribeHubContentResponseTypeDef = TypedDict(
|
|
|
9281
9338
|
"HubContentDescription": str,
|
|
9282
9339
|
"HubContentMarkdown": str,
|
|
9283
9340
|
"HubContentDocument": str,
|
|
9341
|
+
"SageMakerPublicHubContentArn": str,
|
|
9342
|
+
"ReferenceMinVersion": str,
|
|
9343
|
+
"SupportStatus": HubContentSupportStatusType,
|
|
9284
9344
|
"HubContentSearchKeywords": List[str],
|
|
9285
9345
|
"HubContentDependencies": List[HubContentDependencyTypeDef],
|
|
9286
9346
|
"HubContentStatus": HubContentStatusType,
|
|
@@ -11002,6 +11062,7 @@ S3ModelDataSourceTypeDef = TypedDict(
|
|
|
11002
11062
|
"S3DataType": S3ModelDataTypeType,
|
|
11003
11063
|
"CompressionType": ModelCompressionTypeType,
|
|
11004
11064
|
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
11065
|
+
"HubAccessConfig": NotRequired[InferenceHubAccessConfigTypeDef],
|
|
11005
11066
|
},
|
|
11006
11067
|
)
|
|
11007
11068
|
TextGenerationJobConfigOutputTypeDef = TypedDict(
|
|
@@ -11912,6 +11973,7 @@ UserSettingsOutputTypeDef = TypedDict(
|
|
|
11912
11973
|
"StudioWebPortal": NotRequired[StudioWebPortalType],
|
|
11913
11974
|
"CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
|
|
11914
11975
|
"CustomFileSystemConfigs": NotRequired[List[CustomFileSystemConfigTypeDef]],
|
|
11976
|
+
"StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsOutputTypeDef],
|
|
11915
11977
|
},
|
|
11916
11978
|
)
|
|
11917
11979
|
UserSettingsTypeDef = TypedDict(
|
|
@@ -11933,6 +11995,7 @@ UserSettingsTypeDef = TypedDict(
|
|
|
11933
11995
|
"StudioWebPortal": NotRequired[StudioWebPortalType],
|
|
11934
11996
|
"CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
|
|
11935
11997
|
"CustomFileSystemConfigs": NotRequired[Sequence[CustomFileSystemConfigTypeDef]],
|
|
11998
|
+
"StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsTypeDef],
|
|
11936
11999
|
},
|
|
11937
12000
|
)
|
|
11938
12001
|
InferenceComponentSpecificationSummaryTypeDef = TypedDict(
|
|
@@ -12078,10 +12141,10 @@ SpaceSettingsTypeDef = TypedDict(
|
|
|
12078
12141
|
InferenceRecommendationTypeDef = TypedDict(
|
|
12079
12142
|
"InferenceRecommendationTypeDef",
|
|
12080
12143
|
{
|
|
12081
|
-
"Metrics": RecommendationMetricsTypeDef,
|
|
12082
12144
|
"EndpointConfiguration": EndpointOutputConfigurationTypeDef,
|
|
12083
12145
|
"ModelConfiguration": ModelConfigurationTypeDef,
|
|
12084
12146
|
"RecommendationId": NotRequired[str],
|
|
12147
|
+
"Metrics": NotRequired[RecommendationMetricsTypeDef],
|
|
12085
12148
|
"InvocationEndTime": NotRequired[datetime],
|
|
12086
12149
|
"InvocationStartTime": NotRequired[datetime],
|
|
12087
12150
|
},
|
|
@@ -105,6 +105,7 @@ from .literals import (
|
|
|
105
105
|
FrameworkType,
|
|
106
106
|
HubContentSortByType,
|
|
107
107
|
HubContentStatusType,
|
|
108
|
+
HubContentSupportStatusType,
|
|
108
109
|
HubContentTypeType,
|
|
109
110
|
HubSortByType,
|
|
110
111
|
HubStatusType,
|
|
@@ -143,6 +144,7 @@ from .literals import (
|
|
|
143
144
|
ListWorkteamsSortByOptionsType,
|
|
144
145
|
ManagedInstanceScalingStatusType,
|
|
145
146
|
MetricSetSourceType,
|
|
147
|
+
MlToolsType,
|
|
146
148
|
ModelApprovalStatusType,
|
|
147
149
|
ModelCacheSettingType,
|
|
148
150
|
ModelCardExportJobSortByType,
|
|
@@ -486,6 +488,7 @@ __all__ = (
|
|
|
486
488
|
"DeleteExperimentRequestRequestTypeDef",
|
|
487
489
|
"DeleteFeatureGroupRequestRequestTypeDef",
|
|
488
490
|
"DeleteFlowDefinitionRequestRequestTypeDef",
|
|
491
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
489
492
|
"DeleteHubContentRequestRequestTypeDef",
|
|
490
493
|
"DeleteHubRequestRequestTypeDef",
|
|
491
494
|
"DeleteHumanTaskUiRequestRequestTypeDef",
|
|
@@ -682,6 +685,7 @@ __all__ = (
|
|
|
682
685
|
"InferenceComponentStartupParametersTypeDef",
|
|
683
686
|
"InferenceComponentSummaryTypeDef",
|
|
684
687
|
"InferenceExperimentScheduleExtraOutputTypeDef",
|
|
688
|
+
"InferenceHubAccessConfigTypeDef",
|
|
685
689
|
"RecommendationMetricsTypeDef",
|
|
686
690
|
"InferenceRecommendationsJobTypeDef",
|
|
687
691
|
"InstanceGroupTypeDef",
|
|
@@ -826,6 +830,8 @@ __all__ = (
|
|
|
826
830
|
"StopProcessingJobRequestRequestTypeDef",
|
|
827
831
|
"StopTrainingJobRequestRequestTypeDef",
|
|
828
832
|
"StopTransformJobRequestRequestTypeDef",
|
|
833
|
+
"StudioWebPortalSettingsOutputTypeDef",
|
|
834
|
+
"StudioWebPortalSettingsTypeDef",
|
|
829
835
|
"ThroughputConfigUpdateTypeDef",
|
|
830
836
|
"TimeSeriesConfigOutputTypeDef",
|
|
831
837
|
"TimeSeriesConfigTypeDef",
|
|
@@ -869,6 +875,7 @@ __all__ = (
|
|
|
869
875
|
"CreateExperimentResponseTypeDef",
|
|
870
876
|
"CreateFeatureGroupResponseTypeDef",
|
|
871
877
|
"CreateFlowDefinitionResponseTypeDef",
|
|
878
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
872
879
|
"CreateHubResponseTypeDef",
|
|
873
880
|
"CreateHumanTaskUiResponseTypeDef",
|
|
874
881
|
"CreateHyperParameterTuningJobResponseTypeDef",
|
|
@@ -972,6 +979,7 @@ __all__ = (
|
|
|
972
979
|
"AddTagsInputRequestTypeDef",
|
|
973
980
|
"AddTagsOutputTypeDef",
|
|
974
981
|
"CreateExperimentRequestRequestTypeDef",
|
|
982
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
975
983
|
"CreateImageRequestRequestTypeDef",
|
|
976
984
|
"CreateMlflowTrackingServerRequestRequestTypeDef",
|
|
977
985
|
"CreateModelPackageGroupInputRequestTypeDef",
|
|
@@ -3272,6 +3280,14 @@ DeleteFlowDefinitionRequestRequestTypeDef = TypedDict(
|
|
|
3272
3280
|
"FlowDefinitionName": str,
|
|
3273
3281
|
},
|
|
3274
3282
|
)
|
|
3283
|
+
DeleteHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
3284
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
3285
|
+
{
|
|
3286
|
+
"HubName": str,
|
|
3287
|
+
"HubContentType": HubContentTypeType,
|
|
3288
|
+
"HubContentName": str,
|
|
3289
|
+
},
|
|
3290
|
+
)
|
|
3275
3291
|
DeleteHubContentRequestRequestTypeDef = TypedDict(
|
|
3276
3292
|
"DeleteHubContentRequestRequestTypeDef",
|
|
3277
3293
|
{
|
|
@@ -4538,9 +4554,12 @@ HubContentInfoTypeDef = TypedDict(
|
|
|
4538
4554
|
"DocumentSchemaVersion": str,
|
|
4539
4555
|
"HubContentStatus": HubContentStatusType,
|
|
4540
4556
|
"CreationTime": datetime,
|
|
4557
|
+
"SageMakerPublicHubContentArn": NotRequired[str],
|
|
4541
4558
|
"HubContentDisplayName": NotRequired[str],
|
|
4542
4559
|
"HubContentDescription": NotRequired[str],
|
|
4560
|
+
"SupportStatus": NotRequired[HubContentSupportStatusType],
|
|
4543
4561
|
"HubContentSearchKeywords": NotRequired[List[str]],
|
|
4562
|
+
"OriginalCreationTime": NotRequired[datetime],
|
|
4544
4563
|
},
|
|
4545
4564
|
)
|
|
4546
4565
|
HubInfoTypeDef = TypedDict(
|
|
@@ -4710,13 +4729,19 @@ InferenceExperimentScheduleExtraOutputTypeDef = TypedDict(
|
|
|
4710
4729
|
"EndTime": NotRequired[datetime],
|
|
4711
4730
|
},
|
|
4712
4731
|
)
|
|
4732
|
+
InferenceHubAccessConfigTypeDef = TypedDict(
|
|
4733
|
+
"InferenceHubAccessConfigTypeDef",
|
|
4734
|
+
{
|
|
4735
|
+
"HubContentArn": str,
|
|
4736
|
+
},
|
|
4737
|
+
)
|
|
4713
4738
|
RecommendationMetricsTypeDef = TypedDict(
|
|
4714
4739
|
"RecommendationMetricsTypeDef",
|
|
4715
4740
|
{
|
|
4716
|
-
"CostPerHour": float,
|
|
4717
|
-
"CostPerInference": float,
|
|
4718
|
-
"MaxInvocations": int,
|
|
4719
|
-
"ModelLatency": int,
|
|
4741
|
+
"CostPerHour": NotRequired[float],
|
|
4742
|
+
"CostPerInference": NotRequired[float],
|
|
4743
|
+
"MaxInvocations": NotRequired[int],
|
|
4744
|
+
"ModelLatency": NotRequired[int],
|
|
4720
4745
|
"CpuUtilization": NotRequired[float],
|
|
4721
4746
|
"MemoryUtilization": NotRequired[float],
|
|
4722
4747
|
"ModelSetupTime": NotRequired[int],
|
|
@@ -5875,6 +5900,20 @@ StopTransformJobRequestRequestTypeDef = TypedDict(
|
|
|
5875
5900
|
"TransformJobName": str,
|
|
5876
5901
|
},
|
|
5877
5902
|
)
|
|
5903
|
+
StudioWebPortalSettingsOutputTypeDef = TypedDict(
|
|
5904
|
+
"StudioWebPortalSettingsOutputTypeDef",
|
|
5905
|
+
{
|
|
5906
|
+
"HiddenMlTools": NotRequired[List[MlToolsType]],
|
|
5907
|
+
"HiddenAppTypes": NotRequired[List[AppTypeType]],
|
|
5908
|
+
},
|
|
5909
|
+
)
|
|
5910
|
+
StudioWebPortalSettingsTypeDef = TypedDict(
|
|
5911
|
+
"StudioWebPortalSettingsTypeDef",
|
|
5912
|
+
{
|
|
5913
|
+
"HiddenMlTools": NotRequired[Sequence[MlToolsType]],
|
|
5914
|
+
"HiddenAppTypes": NotRequired[Sequence[AppTypeType]],
|
|
5915
|
+
},
|
|
5916
|
+
)
|
|
5878
5917
|
ThroughputConfigUpdateTypeDef = TypedDict(
|
|
5879
5918
|
"ThroughputConfigUpdateTypeDef",
|
|
5880
5919
|
{
|
|
@@ -6217,6 +6256,14 @@ CreateFlowDefinitionResponseTypeDef = TypedDict(
|
|
|
6217
6256
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6218
6257
|
},
|
|
6219
6258
|
)
|
|
6259
|
+
CreateHubContentReferenceResponseTypeDef = TypedDict(
|
|
6260
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
6261
|
+
{
|
|
6262
|
+
"HubArn": str,
|
|
6263
|
+
"HubContentArn": str,
|
|
6264
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6265
|
+
},
|
|
6266
|
+
)
|
|
6220
6267
|
CreateHubResponseTypeDef = TypedDict(
|
|
6221
6268
|
"CreateHubResponseTypeDef",
|
|
6222
6269
|
{
|
|
@@ -6975,6 +7022,16 @@ CreateExperimentRequestRequestTypeDef = TypedDict(
|
|
|
6975
7022
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
6976
7023
|
},
|
|
6977
7024
|
)
|
|
7025
|
+
CreateHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
7026
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
7027
|
+
{
|
|
7028
|
+
"HubName": str,
|
|
7029
|
+
"SageMakerPublicHubContentArn": str,
|
|
7030
|
+
"HubContentName": NotRequired[str],
|
|
7031
|
+
"MinVersion": NotRequired[str],
|
|
7032
|
+
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
7033
|
+
},
|
|
7034
|
+
)
|
|
6978
7035
|
CreateImageRequestRequestTypeDef = TypedDict(
|
|
6979
7036
|
"CreateImageRequestRequestTypeDef",
|
|
6980
7037
|
{
|
|
@@ -9281,6 +9338,9 @@ DescribeHubContentResponseTypeDef = TypedDict(
|
|
|
9281
9338
|
"HubContentDescription": str,
|
|
9282
9339
|
"HubContentMarkdown": str,
|
|
9283
9340
|
"HubContentDocument": str,
|
|
9341
|
+
"SageMakerPublicHubContentArn": str,
|
|
9342
|
+
"ReferenceMinVersion": str,
|
|
9343
|
+
"SupportStatus": HubContentSupportStatusType,
|
|
9284
9344
|
"HubContentSearchKeywords": List[str],
|
|
9285
9345
|
"HubContentDependencies": List[HubContentDependencyTypeDef],
|
|
9286
9346
|
"HubContentStatus": HubContentStatusType,
|
|
@@ -11002,6 +11062,7 @@ S3ModelDataSourceTypeDef = TypedDict(
|
|
|
11002
11062
|
"S3DataType": S3ModelDataTypeType,
|
|
11003
11063
|
"CompressionType": ModelCompressionTypeType,
|
|
11004
11064
|
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
11065
|
+
"HubAccessConfig": NotRequired[InferenceHubAccessConfigTypeDef],
|
|
11005
11066
|
},
|
|
11006
11067
|
)
|
|
11007
11068
|
TextGenerationJobConfigOutputTypeDef = TypedDict(
|
|
@@ -11912,6 +11973,7 @@ UserSettingsOutputTypeDef = TypedDict(
|
|
|
11912
11973
|
"StudioWebPortal": NotRequired[StudioWebPortalType],
|
|
11913
11974
|
"CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
|
|
11914
11975
|
"CustomFileSystemConfigs": NotRequired[List[CustomFileSystemConfigTypeDef]],
|
|
11976
|
+
"StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsOutputTypeDef],
|
|
11915
11977
|
},
|
|
11916
11978
|
)
|
|
11917
11979
|
UserSettingsTypeDef = TypedDict(
|
|
@@ -11933,6 +11995,7 @@ UserSettingsTypeDef = TypedDict(
|
|
|
11933
11995
|
"StudioWebPortal": NotRequired[StudioWebPortalType],
|
|
11934
11996
|
"CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
|
|
11935
11997
|
"CustomFileSystemConfigs": NotRequired[Sequence[CustomFileSystemConfigTypeDef]],
|
|
11998
|
+
"StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsTypeDef],
|
|
11936
11999
|
},
|
|
11937
12000
|
)
|
|
11938
12001
|
InferenceComponentSpecificationSummaryTypeDef = TypedDict(
|
|
@@ -12078,10 +12141,10 @@ SpaceSettingsTypeDef = TypedDict(
|
|
|
12078
12141
|
InferenceRecommendationTypeDef = TypedDict(
|
|
12079
12142
|
"InferenceRecommendationTypeDef",
|
|
12080
12143
|
{
|
|
12081
|
-
"Metrics": RecommendationMetricsTypeDef,
|
|
12082
12144
|
"EndpointConfiguration": EndpointOutputConfigurationTypeDef,
|
|
12083
12145
|
"ModelConfiguration": ModelConfigurationTypeDef,
|
|
12084
12146
|
"RecommendationId": NotRequired[str],
|
|
12147
|
+
"Metrics": NotRequired[RecommendationMetricsTypeDef],
|
|
12085
12148
|
"InvocationEndTime": NotRequired[datetime],
|
|
12086
12149
|
"InvocationStartTime": NotRequired[datetime],
|
|
12087
12150
|
},
|
mypy_boto3_sagemaker/version.py
CHANGED
{mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.135.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.SageMaker 1.34.
|
|
3
|
+
Version: 1.34.135
|
|
4
|
+
Summary: Type annotations for boto3.SageMaker 1.34.135 service generated with mypy-boto3-builder 7.24.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.SageMaker 1.34.
|
|
46
|
+
[boto3.SageMaker 1.34.135](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=FCqhgYLcvJHVISArwLDcHFSQDrQ8MkvExNaq42X1qJo,930
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=f5ODO7Xvf-P4UnSkixSwScuhtBPuZ7AaURgB7v6LmfU,287236
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=o36Rya36oriCa4C5eb95HBX4fpBnz68CAXAko7Qna70,287233
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=GmMz2yHpab0RLkRJEJir-4KsRD-ERPKK6yKmPCoOiv4,70282
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=GmMz2yHpab0RLkRJEJir-4KsRD-ERPKK6yKmPCoOiv4,70282
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=_xnATTKBFwnkPPImy7HNm1LeYF43gJCblIRefT_xIh8,104353
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=rXTqx1MM8iMqnJWo5soGF09O7ldIEy5WtZRylpbsrMk,104279
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=l_r_3XxoLEMmgr_1oMMEttQHoQF1ETvN3DMShOutRXg,556138
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=l_r_3XxoLEMmgr_1oMMEttQHoQF1ETvN3DMShOutRXg,556138
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=R95NeWKZEL0LP08KWp17khP6OMeEBOdI3_Ovq6rrWvc,63
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=sgVFqtSXJD4pkx1f6t-BBp6hh61GjIp1IS2Iz_WJMaE,13323
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=vpObdrmi9_5qh3M5fkDnJRCj55lDcN_ZcNaoZOb1U4I,13310
|
|
16
|
+
mypy_boto3_sagemaker-1.34.135.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.34.135.dist-info/METADATA,sha256=7Dg2M-TcdTC9VpZ2Ila2l_tA6Q00wmLA6r-s8nyS_M4,25945
|
|
18
|
+
mypy_boto3_sagemaker-1.34.135.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
19
|
+
mypy_boto3_sagemaker-1.34.135.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.34.135.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=xHAzdFnG5yr01sXV2IX9zhgZhg4RDIUqhBNzAQA7ChM,930
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=eq-C7FvWJN46oXXwyX8SDxOZ42_g1ij6qmzZ0mZWSgU,285845
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=jEgASCVQL4oEaEWF5ml_FQDlxDJDfHvWai-ujLyx5Fc,285842
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=S0qGA9XIJNNntIWreMHBPrH8OfBjj3jsRhbKYxjySbA,69880
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=S0qGA9XIJNNntIWreMHBPrH8OfBjj3jsRhbKYxjySbA,69880
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=_xnATTKBFwnkPPImy7HNm1LeYF43gJCblIRefT_xIh8,104353
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=rXTqx1MM8iMqnJWo5soGF09O7ldIEy5WtZRylpbsrMk,104279
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=VkQp4ouHkjxF0TT2RzpC6PdNnhZqcXPw1qziN9KX5zg,553833
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=VkQp4ouHkjxF0TT2RzpC6PdNnhZqcXPw1qziN9KX5zg,553833
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=MKCpHZ22Fx9TcXSTIaVjj0EVYyqY1n6F8mgyAZQqBrQ,63
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=sgVFqtSXJD4pkx1f6t-BBp6hh61GjIp1IS2Iz_WJMaE,13323
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=vpObdrmi9_5qh3M5fkDnJRCj55lDcN_ZcNaoZOb1U4I,13310
|
|
16
|
-
mypy_boto3_sagemaker-1.34.129.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.34.129.dist-info/METADATA,sha256=nc4X2-VarUNf3RrmpPNsStxrDohomddwoLlNi3a2npc,25945
|
|
18
|
-
mypy_boto3_sagemaker-1.34.129.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
-
mypy_boto3_sagemaker-1.34.129.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.34.129.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.135.dist-info}/top_level.txt
RENAMED
|
File without changes
|