mypy-boto3-sagemaker 1.34.129__py3-none-any.whl → 1.34.131__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 +3 -1
- mypy_boto3_sagemaker/literals.pyi +3 -1
- mypy_boto3_sagemaker/type_defs.py +49 -5
- mypy_boto3_sagemaker/type_defs.pyi +49 -5
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.131.dist-info}/METADATA +3 -3
- mypy_boto3_sagemaker-1.34.131.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.131.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.131.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.131.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.131\n"
|
|
14
|
+
"Version: 1.34.131\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.131")
|
|
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",
|
|
@@ -868,7 +869,8 @@ FrameworkType = Literal[
|
|
|
868
869
|
]
|
|
869
870
|
HubContentSortByType = Literal["CreationTime", "HubContentName", "HubContentStatus"]
|
|
870
871
|
HubContentStatusType = Literal["Available", "DeleteFailed", "Deleting", "ImportFailed", "Importing"]
|
|
871
|
-
|
|
872
|
+
HubContentSupportStatusType = Literal["Deprecated", "Supported"]
|
|
873
|
+
HubContentTypeType = Literal["Model", "ModelReference", "Notebook"]
|
|
872
874
|
HubSortByType = Literal["AccountIdOwner", "CreationTime", "HubName", "HubStatus"]
|
|
873
875
|
HubStatusType = Literal[
|
|
874
876
|
"CreateFailed", "Creating", "DeleteFailed", "Deleting", "InService", "UpdateFailed", "Updating"
|
|
@@ -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",
|
|
@@ -868,7 +869,8 @@ FrameworkType = Literal[
|
|
|
868
869
|
]
|
|
869
870
|
HubContentSortByType = Literal["CreationTime", "HubContentName", "HubContentStatus"]
|
|
870
871
|
HubContentStatusType = Literal["Available", "DeleteFailed", "Deleting", "ImportFailed", "Importing"]
|
|
871
|
-
|
|
872
|
+
HubContentSupportStatusType = Literal["Deprecated", "Supported"]
|
|
873
|
+
HubContentTypeType = Literal["Model", "ModelReference", "Notebook"]
|
|
872
874
|
HubSortByType = Literal["AccountIdOwner", "CreationTime", "HubName", "HubStatus"]
|
|
873
875
|
HubStatusType = Literal[
|
|
874
876
|
"CreateFailed", "Creating", "DeleteFailed", "Deleting", "InService", "UpdateFailed", "Updating"
|
|
@@ -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,
|
|
@@ -486,6 +487,7 @@ __all__ = (
|
|
|
486
487
|
"DeleteExperimentRequestRequestTypeDef",
|
|
487
488
|
"DeleteFeatureGroupRequestRequestTypeDef",
|
|
488
489
|
"DeleteFlowDefinitionRequestRequestTypeDef",
|
|
490
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
489
491
|
"DeleteHubContentRequestRequestTypeDef",
|
|
490
492
|
"DeleteHubRequestRequestTypeDef",
|
|
491
493
|
"DeleteHumanTaskUiRequestRequestTypeDef",
|
|
@@ -682,6 +684,7 @@ __all__ = (
|
|
|
682
684
|
"InferenceComponentStartupParametersTypeDef",
|
|
683
685
|
"InferenceComponentSummaryTypeDef",
|
|
684
686
|
"InferenceExperimentScheduleExtraOutputTypeDef",
|
|
687
|
+
"InferenceHubAccessConfigTypeDef",
|
|
685
688
|
"RecommendationMetricsTypeDef",
|
|
686
689
|
"InferenceRecommendationsJobTypeDef",
|
|
687
690
|
"InstanceGroupTypeDef",
|
|
@@ -869,6 +872,7 @@ __all__ = (
|
|
|
869
872
|
"CreateExperimentResponseTypeDef",
|
|
870
873
|
"CreateFeatureGroupResponseTypeDef",
|
|
871
874
|
"CreateFlowDefinitionResponseTypeDef",
|
|
875
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
872
876
|
"CreateHubResponseTypeDef",
|
|
873
877
|
"CreateHumanTaskUiResponseTypeDef",
|
|
874
878
|
"CreateHyperParameterTuningJobResponseTypeDef",
|
|
@@ -972,6 +976,7 @@ __all__ = (
|
|
|
972
976
|
"AddTagsInputRequestTypeDef",
|
|
973
977
|
"AddTagsOutputTypeDef",
|
|
974
978
|
"CreateExperimentRequestRequestTypeDef",
|
|
979
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
975
980
|
"CreateImageRequestRequestTypeDef",
|
|
976
981
|
"CreateMlflowTrackingServerRequestRequestTypeDef",
|
|
977
982
|
"CreateModelPackageGroupInputRequestTypeDef",
|
|
@@ -3272,6 +3277,14 @@ DeleteFlowDefinitionRequestRequestTypeDef = TypedDict(
|
|
|
3272
3277
|
"FlowDefinitionName": str,
|
|
3273
3278
|
},
|
|
3274
3279
|
)
|
|
3280
|
+
DeleteHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
3281
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
3282
|
+
{
|
|
3283
|
+
"HubName": str,
|
|
3284
|
+
"HubContentType": HubContentTypeType,
|
|
3285
|
+
"HubContentName": str,
|
|
3286
|
+
},
|
|
3287
|
+
)
|
|
3275
3288
|
DeleteHubContentRequestRequestTypeDef = TypedDict(
|
|
3276
3289
|
"DeleteHubContentRequestRequestTypeDef",
|
|
3277
3290
|
{
|
|
@@ -4538,9 +4551,12 @@ HubContentInfoTypeDef = TypedDict(
|
|
|
4538
4551
|
"DocumentSchemaVersion": str,
|
|
4539
4552
|
"HubContentStatus": HubContentStatusType,
|
|
4540
4553
|
"CreationTime": datetime,
|
|
4554
|
+
"SageMakerPublicHubContentArn": NotRequired[str],
|
|
4541
4555
|
"HubContentDisplayName": NotRequired[str],
|
|
4542
4556
|
"HubContentDescription": NotRequired[str],
|
|
4557
|
+
"SupportStatus": NotRequired[HubContentSupportStatusType],
|
|
4543
4558
|
"HubContentSearchKeywords": NotRequired[List[str]],
|
|
4559
|
+
"OriginalCreationTime": NotRequired[datetime],
|
|
4544
4560
|
},
|
|
4545
4561
|
)
|
|
4546
4562
|
HubInfoTypeDef = TypedDict(
|
|
@@ -4710,13 +4726,19 @@ InferenceExperimentScheduleExtraOutputTypeDef = TypedDict(
|
|
|
4710
4726
|
"EndTime": NotRequired[datetime],
|
|
4711
4727
|
},
|
|
4712
4728
|
)
|
|
4729
|
+
InferenceHubAccessConfigTypeDef = TypedDict(
|
|
4730
|
+
"InferenceHubAccessConfigTypeDef",
|
|
4731
|
+
{
|
|
4732
|
+
"HubContentArn": str,
|
|
4733
|
+
},
|
|
4734
|
+
)
|
|
4713
4735
|
RecommendationMetricsTypeDef = TypedDict(
|
|
4714
4736
|
"RecommendationMetricsTypeDef",
|
|
4715
4737
|
{
|
|
4716
|
-
"CostPerHour": float,
|
|
4717
|
-
"CostPerInference": float,
|
|
4718
|
-
"MaxInvocations": int,
|
|
4719
|
-
"ModelLatency": int,
|
|
4738
|
+
"CostPerHour": NotRequired[float],
|
|
4739
|
+
"CostPerInference": NotRequired[float],
|
|
4740
|
+
"MaxInvocations": NotRequired[int],
|
|
4741
|
+
"ModelLatency": NotRequired[int],
|
|
4720
4742
|
"CpuUtilization": NotRequired[float],
|
|
4721
4743
|
"MemoryUtilization": NotRequired[float],
|
|
4722
4744
|
"ModelSetupTime": NotRequired[int],
|
|
@@ -6217,6 +6239,14 @@ CreateFlowDefinitionResponseTypeDef = TypedDict(
|
|
|
6217
6239
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6218
6240
|
},
|
|
6219
6241
|
)
|
|
6242
|
+
CreateHubContentReferenceResponseTypeDef = TypedDict(
|
|
6243
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
6244
|
+
{
|
|
6245
|
+
"HubArn": str,
|
|
6246
|
+
"HubContentArn": str,
|
|
6247
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6248
|
+
},
|
|
6249
|
+
)
|
|
6220
6250
|
CreateHubResponseTypeDef = TypedDict(
|
|
6221
6251
|
"CreateHubResponseTypeDef",
|
|
6222
6252
|
{
|
|
@@ -6975,6 +7005,16 @@ CreateExperimentRequestRequestTypeDef = TypedDict(
|
|
|
6975
7005
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
6976
7006
|
},
|
|
6977
7007
|
)
|
|
7008
|
+
CreateHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
7009
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
7010
|
+
{
|
|
7011
|
+
"HubName": str,
|
|
7012
|
+
"SageMakerPublicHubContentArn": str,
|
|
7013
|
+
"HubContentName": NotRequired[str],
|
|
7014
|
+
"MinVersion": NotRequired[str],
|
|
7015
|
+
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
7016
|
+
},
|
|
7017
|
+
)
|
|
6978
7018
|
CreateImageRequestRequestTypeDef = TypedDict(
|
|
6979
7019
|
"CreateImageRequestRequestTypeDef",
|
|
6980
7020
|
{
|
|
@@ -9281,6 +9321,9 @@ DescribeHubContentResponseTypeDef = TypedDict(
|
|
|
9281
9321
|
"HubContentDescription": str,
|
|
9282
9322
|
"HubContentMarkdown": str,
|
|
9283
9323
|
"HubContentDocument": str,
|
|
9324
|
+
"SageMakerPublicHubContentArn": str,
|
|
9325
|
+
"ReferenceMinVersion": str,
|
|
9326
|
+
"SupportStatus": HubContentSupportStatusType,
|
|
9284
9327
|
"HubContentSearchKeywords": List[str],
|
|
9285
9328
|
"HubContentDependencies": List[HubContentDependencyTypeDef],
|
|
9286
9329
|
"HubContentStatus": HubContentStatusType,
|
|
@@ -11002,6 +11045,7 @@ S3ModelDataSourceTypeDef = TypedDict(
|
|
|
11002
11045
|
"S3DataType": S3ModelDataTypeType,
|
|
11003
11046
|
"CompressionType": ModelCompressionTypeType,
|
|
11004
11047
|
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
11048
|
+
"HubAccessConfig": NotRequired[InferenceHubAccessConfigTypeDef],
|
|
11005
11049
|
},
|
|
11006
11050
|
)
|
|
11007
11051
|
TextGenerationJobConfigOutputTypeDef = TypedDict(
|
|
@@ -12078,10 +12122,10 @@ SpaceSettingsTypeDef = TypedDict(
|
|
|
12078
12122
|
InferenceRecommendationTypeDef = TypedDict(
|
|
12079
12123
|
"InferenceRecommendationTypeDef",
|
|
12080
12124
|
{
|
|
12081
|
-
"Metrics": RecommendationMetricsTypeDef,
|
|
12082
12125
|
"EndpointConfiguration": EndpointOutputConfigurationTypeDef,
|
|
12083
12126
|
"ModelConfiguration": ModelConfigurationTypeDef,
|
|
12084
12127
|
"RecommendationId": NotRequired[str],
|
|
12128
|
+
"Metrics": NotRequired[RecommendationMetricsTypeDef],
|
|
12085
12129
|
"InvocationEndTime": NotRequired[datetime],
|
|
12086
12130
|
"InvocationStartTime": NotRequired[datetime],
|
|
12087
12131
|
},
|
|
@@ -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,
|
|
@@ -486,6 +487,7 @@ __all__ = (
|
|
|
486
487
|
"DeleteExperimentRequestRequestTypeDef",
|
|
487
488
|
"DeleteFeatureGroupRequestRequestTypeDef",
|
|
488
489
|
"DeleteFlowDefinitionRequestRequestTypeDef",
|
|
490
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
489
491
|
"DeleteHubContentRequestRequestTypeDef",
|
|
490
492
|
"DeleteHubRequestRequestTypeDef",
|
|
491
493
|
"DeleteHumanTaskUiRequestRequestTypeDef",
|
|
@@ -682,6 +684,7 @@ __all__ = (
|
|
|
682
684
|
"InferenceComponentStartupParametersTypeDef",
|
|
683
685
|
"InferenceComponentSummaryTypeDef",
|
|
684
686
|
"InferenceExperimentScheduleExtraOutputTypeDef",
|
|
687
|
+
"InferenceHubAccessConfigTypeDef",
|
|
685
688
|
"RecommendationMetricsTypeDef",
|
|
686
689
|
"InferenceRecommendationsJobTypeDef",
|
|
687
690
|
"InstanceGroupTypeDef",
|
|
@@ -869,6 +872,7 @@ __all__ = (
|
|
|
869
872
|
"CreateExperimentResponseTypeDef",
|
|
870
873
|
"CreateFeatureGroupResponseTypeDef",
|
|
871
874
|
"CreateFlowDefinitionResponseTypeDef",
|
|
875
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
872
876
|
"CreateHubResponseTypeDef",
|
|
873
877
|
"CreateHumanTaskUiResponseTypeDef",
|
|
874
878
|
"CreateHyperParameterTuningJobResponseTypeDef",
|
|
@@ -972,6 +976,7 @@ __all__ = (
|
|
|
972
976
|
"AddTagsInputRequestTypeDef",
|
|
973
977
|
"AddTagsOutputTypeDef",
|
|
974
978
|
"CreateExperimentRequestRequestTypeDef",
|
|
979
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
975
980
|
"CreateImageRequestRequestTypeDef",
|
|
976
981
|
"CreateMlflowTrackingServerRequestRequestTypeDef",
|
|
977
982
|
"CreateModelPackageGroupInputRequestTypeDef",
|
|
@@ -3272,6 +3277,14 @@ DeleteFlowDefinitionRequestRequestTypeDef = TypedDict(
|
|
|
3272
3277
|
"FlowDefinitionName": str,
|
|
3273
3278
|
},
|
|
3274
3279
|
)
|
|
3280
|
+
DeleteHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
3281
|
+
"DeleteHubContentReferenceRequestRequestTypeDef",
|
|
3282
|
+
{
|
|
3283
|
+
"HubName": str,
|
|
3284
|
+
"HubContentType": HubContentTypeType,
|
|
3285
|
+
"HubContentName": str,
|
|
3286
|
+
},
|
|
3287
|
+
)
|
|
3275
3288
|
DeleteHubContentRequestRequestTypeDef = TypedDict(
|
|
3276
3289
|
"DeleteHubContentRequestRequestTypeDef",
|
|
3277
3290
|
{
|
|
@@ -4538,9 +4551,12 @@ HubContentInfoTypeDef = TypedDict(
|
|
|
4538
4551
|
"DocumentSchemaVersion": str,
|
|
4539
4552
|
"HubContentStatus": HubContentStatusType,
|
|
4540
4553
|
"CreationTime": datetime,
|
|
4554
|
+
"SageMakerPublicHubContentArn": NotRequired[str],
|
|
4541
4555
|
"HubContentDisplayName": NotRequired[str],
|
|
4542
4556
|
"HubContentDescription": NotRequired[str],
|
|
4557
|
+
"SupportStatus": NotRequired[HubContentSupportStatusType],
|
|
4543
4558
|
"HubContentSearchKeywords": NotRequired[List[str]],
|
|
4559
|
+
"OriginalCreationTime": NotRequired[datetime],
|
|
4544
4560
|
},
|
|
4545
4561
|
)
|
|
4546
4562
|
HubInfoTypeDef = TypedDict(
|
|
@@ -4710,13 +4726,19 @@ InferenceExperimentScheduleExtraOutputTypeDef = TypedDict(
|
|
|
4710
4726
|
"EndTime": NotRequired[datetime],
|
|
4711
4727
|
},
|
|
4712
4728
|
)
|
|
4729
|
+
InferenceHubAccessConfigTypeDef = TypedDict(
|
|
4730
|
+
"InferenceHubAccessConfigTypeDef",
|
|
4731
|
+
{
|
|
4732
|
+
"HubContentArn": str,
|
|
4733
|
+
},
|
|
4734
|
+
)
|
|
4713
4735
|
RecommendationMetricsTypeDef = TypedDict(
|
|
4714
4736
|
"RecommendationMetricsTypeDef",
|
|
4715
4737
|
{
|
|
4716
|
-
"CostPerHour": float,
|
|
4717
|
-
"CostPerInference": float,
|
|
4718
|
-
"MaxInvocations": int,
|
|
4719
|
-
"ModelLatency": int,
|
|
4738
|
+
"CostPerHour": NotRequired[float],
|
|
4739
|
+
"CostPerInference": NotRequired[float],
|
|
4740
|
+
"MaxInvocations": NotRequired[int],
|
|
4741
|
+
"ModelLatency": NotRequired[int],
|
|
4720
4742
|
"CpuUtilization": NotRequired[float],
|
|
4721
4743
|
"MemoryUtilization": NotRequired[float],
|
|
4722
4744
|
"ModelSetupTime": NotRequired[int],
|
|
@@ -6217,6 +6239,14 @@ CreateFlowDefinitionResponseTypeDef = TypedDict(
|
|
|
6217
6239
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6218
6240
|
},
|
|
6219
6241
|
)
|
|
6242
|
+
CreateHubContentReferenceResponseTypeDef = TypedDict(
|
|
6243
|
+
"CreateHubContentReferenceResponseTypeDef",
|
|
6244
|
+
{
|
|
6245
|
+
"HubArn": str,
|
|
6246
|
+
"HubContentArn": str,
|
|
6247
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
6248
|
+
},
|
|
6249
|
+
)
|
|
6220
6250
|
CreateHubResponseTypeDef = TypedDict(
|
|
6221
6251
|
"CreateHubResponseTypeDef",
|
|
6222
6252
|
{
|
|
@@ -6975,6 +7005,16 @@ CreateExperimentRequestRequestTypeDef = TypedDict(
|
|
|
6975
7005
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
6976
7006
|
},
|
|
6977
7007
|
)
|
|
7008
|
+
CreateHubContentReferenceRequestRequestTypeDef = TypedDict(
|
|
7009
|
+
"CreateHubContentReferenceRequestRequestTypeDef",
|
|
7010
|
+
{
|
|
7011
|
+
"HubName": str,
|
|
7012
|
+
"SageMakerPublicHubContentArn": str,
|
|
7013
|
+
"HubContentName": NotRequired[str],
|
|
7014
|
+
"MinVersion": NotRequired[str],
|
|
7015
|
+
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
7016
|
+
},
|
|
7017
|
+
)
|
|
6978
7018
|
CreateImageRequestRequestTypeDef = TypedDict(
|
|
6979
7019
|
"CreateImageRequestRequestTypeDef",
|
|
6980
7020
|
{
|
|
@@ -9281,6 +9321,9 @@ DescribeHubContentResponseTypeDef = TypedDict(
|
|
|
9281
9321
|
"HubContentDescription": str,
|
|
9282
9322
|
"HubContentMarkdown": str,
|
|
9283
9323
|
"HubContentDocument": str,
|
|
9324
|
+
"SageMakerPublicHubContentArn": str,
|
|
9325
|
+
"ReferenceMinVersion": str,
|
|
9326
|
+
"SupportStatus": HubContentSupportStatusType,
|
|
9284
9327
|
"HubContentSearchKeywords": List[str],
|
|
9285
9328
|
"HubContentDependencies": List[HubContentDependencyTypeDef],
|
|
9286
9329
|
"HubContentStatus": HubContentStatusType,
|
|
@@ -11002,6 +11045,7 @@ S3ModelDataSourceTypeDef = TypedDict(
|
|
|
11002
11045
|
"S3DataType": S3ModelDataTypeType,
|
|
11003
11046
|
"CompressionType": ModelCompressionTypeType,
|
|
11004
11047
|
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
11048
|
+
"HubAccessConfig": NotRequired[InferenceHubAccessConfigTypeDef],
|
|
11005
11049
|
},
|
|
11006
11050
|
)
|
|
11007
11051
|
TextGenerationJobConfigOutputTypeDef = TypedDict(
|
|
@@ -12078,10 +12122,10 @@ SpaceSettingsTypeDef = TypedDict(
|
|
|
12078
12122
|
InferenceRecommendationTypeDef = TypedDict(
|
|
12079
12123
|
"InferenceRecommendationTypeDef",
|
|
12080
12124
|
{
|
|
12081
|
-
"Metrics": RecommendationMetricsTypeDef,
|
|
12082
12125
|
"EndpointConfiguration": EndpointOutputConfigurationTypeDef,
|
|
12083
12126
|
"ModelConfiguration": ModelConfigurationTypeDef,
|
|
12084
12127
|
"RecommendationId": NotRequired[str],
|
|
12128
|
+
"Metrics": NotRequired[RecommendationMetricsTypeDef],
|
|
12085
12129
|
"InvocationEndTime": NotRequired[datetime],
|
|
12086
12130
|
"InvocationStartTime": NotRequired[datetime],
|
|
12087
12131
|
},
|
mypy_boto3_sagemaker/version.py
CHANGED
{mypy_boto3_sagemaker-1.34.129.dist-info → mypy_boto3_sagemaker-1.34.131.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.131
|
|
4
|
+
Summary: Type annotations for boto3.SageMaker 1.34.131 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.131](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=ZPIR_OS60WFU_ckd05XowH4EB3p44waQYXz23l9p85U,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=VGNaMOI2qk2qPtbmxPow6h37Or7t-0FLmgaiGzjPT1Y,69998
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=VGNaMOI2qk2qPtbmxPow6h37Or7t-0FLmgaiGzjPT1Y,69998
|
|
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=K1d9eAurcPsbih7QpKnOHRoKRJIlSPg2qC8VQkmxtz0,555429
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=K1d9eAurcPsbih7QpKnOHRoKRJIlSPg2qC8VQkmxtz0,555429
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=LKnSnvnVgHboGedSlSWZA_k3l3h43W1XlyCLbfr0tIM,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.131.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.34.131.dist-info/METADATA,sha256=9zM1h1Xb9zyZkWzOkQ4eoS1jBPw45nsBSBLTSVxwPEc,25945
|
|
18
|
+
mypy_boto3_sagemaker-1.34.131.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
19
|
+
mypy_boto3_sagemaker-1.34.131.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.34.131.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.131.dist-info}/top_level.txt
RENAMED
|
File without changes
|