mypy-boto3-sagemaker 1.37.0__py3-none-any.whl → 1.37.3__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 +26 -0
- mypy_boto3_sagemaker/client.pyi +26 -0
- mypy_boto3_sagemaker/literals.py +3 -1
- mypy_boto3_sagemaker/literals.pyi +3 -1
- mypy_boto3_sagemaker/type_defs.py +499 -414
- mypy_boto3_sagemaker/type_defs.pyi +445 -370
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/METADATA +4 -4
- mypy_boto3_sagemaker-1.37.3.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.37.0.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SageMaker 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.37.3\n"
|
|
16
|
+
"Version: 1.37.3\n"
|
|
17
17
|
"Builder version: 8.9.2\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#sagemaker\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.3\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -700,6 +700,10 @@ from .type_defs import (
|
|
|
700
700
|
UpdateFeatureGroupRequestTypeDef,
|
|
701
701
|
UpdateFeatureGroupResponseTypeDef,
|
|
702
702
|
UpdateFeatureMetadataRequestTypeDef,
|
|
703
|
+
UpdateHubContentReferenceRequestTypeDef,
|
|
704
|
+
UpdateHubContentReferenceResponseTypeDef,
|
|
705
|
+
UpdateHubContentRequestTypeDef,
|
|
706
|
+
UpdateHubContentResponseTypeDef,
|
|
703
707
|
UpdateHubRequestTypeDef,
|
|
704
708
|
UpdateHubResponseTypeDef,
|
|
705
709
|
UpdateImageRequestTypeDef,
|
|
@@ -4164,6 +4168,28 @@ class SageMakerClient(BaseClient):
|
|
|
4164
4168
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub)
|
|
4165
4169
|
"""
|
|
4166
4170
|
|
|
4171
|
+
def update_hub_content(
|
|
4172
|
+
self, **kwargs: Unpack[UpdateHubContentRequestTypeDef]
|
|
4173
|
+
) -> UpdateHubContentResponseTypeDef:
|
|
4174
|
+
"""
|
|
4175
|
+
Updates SageMaker hub content (either a <code>Model</code> or
|
|
4176
|
+
<code>Notebook</code> resource).
|
|
4177
|
+
|
|
4178
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_hub_content.html)
|
|
4179
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub_content)
|
|
4180
|
+
"""
|
|
4181
|
+
|
|
4182
|
+
def update_hub_content_reference(
|
|
4183
|
+
self, **kwargs: Unpack[UpdateHubContentReferenceRequestTypeDef]
|
|
4184
|
+
) -> UpdateHubContentReferenceResponseTypeDef:
|
|
4185
|
+
"""
|
|
4186
|
+
Updates the contents of a SageMaker hub for a <code>ModelReference</code>
|
|
4187
|
+
resource.
|
|
4188
|
+
|
|
4189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_hub_content_reference.html)
|
|
4190
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub_content_reference)
|
|
4191
|
+
"""
|
|
4192
|
+
|
|
4167
4193
|
def update_image(
|
|
4168
4194
|
self, **kwargs: Unpack[UpdateImageRequestTypeDef]
|
|
4169
4195
|
) -> UpdateImageResponseTypeDef:
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -700,6 +700,10 @@ from .type_defs import (
|
|
|
700
700
|
UpdateFeatureGroupRequestTypeDef,
|
|
701
701
|
UpdateFeatureGroupResponseTypeDef,
|
|
702
702
|
UpdateFeatureMetadataRequestTypeDef,
|
|
703
|
+
UpdateHubContentReferenceRequestTypeDef,
|
|
704
|
+
UpdateHubContentReferenceResponseTypeDef,
|
|
705
|
+
UpdateHubContentRequestTypeDef,
|
|
706
|
+
UpdateHubContentResponseTypeDef,
|
|
703
707
|
UpdateHubRequestTypeDef,
|
|
704
708
|
UpdateHubResponseTypeDef,
|
|
705
709
|
UpdateImageRequestTypeDef,
|
|
@@ -4161,6 +4165,28 @@ class SageMakerClient(BaseClient):
|
|
|
4161
4165
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub)
|
|
4162
4166
|
"""
|
|
4163
4167
|
|
|
4168
|
+
def update_hub_content(
|
|
4169
|
+
self, **kwargs: Unpack[UpdateHubContentRequestTypeDef]
|
|
4170
|
+
) -> UpdateHubContentResponseTypeDef:
|
|
4171
|
+
"""
|
|
4172
|
+
Updates SageMaker hub content (either a <code>Model</code> or
|
|
4173
|
+
<code>Notebook</code> resource).
|
|
4174
|
+
|
|
4175
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_hub_content.html)
|
|
4176
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub_content)
|
|
4177
|
+
"""
|
|
4178
|
+
|
|
4179
|
+
def update_hub_content_reference(
|
|
4180
|
+
self, **kwargs: Unpack[UpdateHubContentReferenceRequestTypeDef]
|
|
4181
|
+
) -> UpdateHubContentReferenceResponseTypeDef:
|
|
4182
|
+
"""
|
|
4183
|
+
Updates the contents of a SageMaker hub for a <code>ModelReference</code>
|
|
4184
|
+
resource.
|
|
4185
|
+
|
|
4186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_hub_content_reference.html)
|
|
4187
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub_content_reference)
|
|
4188
|
+
"""
|
|
4189
|
+
|
|
4164
4190
|
def update_image(
|
|
4165
4191
|
self, **kwargs: Unpack[UpdateImageRequestTypeDef]
|
|
4166
4192
|
) -> UpdateImageResponseTypeDef:
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -145,6 +145,7 @@ __all__ = (
|
|
|
145
145
|
"ImageVersionSortByType",
|
|
146
146
|
"ImageVersionSortOrderType",
|
|
147
147
|
"ImageVersionStatusType",
|
|
148
|
+
"InferenceComponentCapacitySizeTypeType",
|
|
148
149
|
"InferenceComponentSortKeyType",
|
|
149
150
|
"InferenceComponentStatusType",
|
|
150
151
|
"InferenceExecutionModeType",
|
|
@@ -969,7 +970,7 @@ FrameworkType = Literal[
|
|
|
969
970
|
]
|
|
970
971
|
HubContentSortByType = Literal["CreationTime", "HubContentName", "HubContentStatus"]
|
|
971
972
|
HubContentStatusType = Literal["Available", "DeleteFailed", "Deleting", "ImportFailed", "Importing"]
|
|
972
|
-
HubContentSupportStatusType = Literal["Deprecated", "Supported"]
|
|
973
|
+
HubContentSupportStatusType = Literal["Deprecated", "Restricted", "Supported"]
|
|
973
974
|
HubContentTypeType = Literal["Model", "ModelReference", "Notebook"]
|
|
974
975
|
HubSortByType = Literal["AccountIdOwner", "CreationTime", "HubName", "HubStatus"]
|
|
975
976
|
HubStatusType = Literal[
|
|
@@ -1000,6 +1001,7 @@ ImageVersionSortOrderType = Literal["ASCENDING", "DESCENDING"]
|
|
|
1000
1001
|
ImageVersionStatusType = Literal[
|
|
1001
1002
|
"CREATED", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
1002
1003
|
]
|
|
1004
|
+
InferenceComponentCapacitySizeTypeType = Literal["CAPACITY_PERCENT", "COPY_COUNT"]
|
|
1003
1005
|
InferenceComponentSortKeyType = Literal["CreationTime", "Name", "Status"]
|
|
1004
1006
|
InferenceComponentStatusType = Literal["Creating", "Deleting", "Failed", "InService", "Updating"]
|
|
1005
1007
|
InferenceExecutionModeType = Literal["Direct", "Serial"]
|
|
@@ -144,6 +144,7 @@ __all__ = (
|
|
|
144
144
|
"ImageVersionSortByType",
|
|
145
145
|
"ImageVersionSortOrderType",
|
|
146
146
|
"ImageVersionStatusType",
|
|
147
|
+
"InferenceComponentCapacitySizeTypeType",
|
|
147
148
|
"InferenceComponentSortKeyType",
|
|
148
149
|
"InferenceComponentStatusType",
|
|
149
150
|
"InferenceExecutionModeType",
|
|
@@ -967,7 +968,7 @@ FrameworkType = Literal[
|
|
|
967
968
|
]
|
|
968
969
|
HubContentSortByType = Literal["CreationTime", "HubContentName", "HubContentStatus"]
|
|
969
970
|
HubContentStatusType = Literal["Available", "DeleteFailed", "Deleting", "ImportFailed", "Importing"]
|
|
970
|
-
HubContentSupportStatusType = Literal["Deprecated", "Supported"]
|
|
971
|
+
HubContentSupportStatusType = Literal["Deprecated", "Restricted", "Supported"]
|
|
971
972
|
HubContentTypeType = Literal["Model", "ModelReference", "Notebook"]
|
|
972
973
|
HubSortByType = Literal["AccountIdOwner", "CreationTime", "HubName", "HubStatus"]
|
|
973
974
|
HubStatusType = Literal[
|
|
@@ -998,6 +999,7 @@ ImageVersionSortOrderType = Literal["ASCENDING", "DESCENDING"]
|
|
|
998
999
|
ImageVersionStatusType = Literal[
|
|
999
1000
|
"CREATED", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
1000
1001
|
]
|
|
1002
|
+
InferenceComponentCapacitySizeTypeType = Literal["CAPACITY_PERCENT", "COPY_COUNT"]
|
|
1001
1003
|
InferenceComponentSortKeyType = Literal["CreationTime", "Name", "Status"]
|
|
1002
1004
|
InferenceComponentStatusType = Literal["Creating", "Deleting", "Failed", "InService", "Updating"]
|
|
1003
1005
|
InferenceExecutionModeType = Literal["Direct", "Serial"]
|