mypy-boto3-sagemaker 1.34.116__py3-none-any.whl → 1.34.119__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 +2 -2
- mypy_boto3_sagemaker/client.pyi +2 -2
- mypy_boto3_sagemaker/literals.py +1 -0
- mypy_boto3_sagemaker/literals.pyi +1 -0
- mypy_boto3_sagemaker/type_defs.py +11 -0
- mypy_boto3_sagemaker/type_defs.pyi +11 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.34.116.dist-info → mypy_boto3_sagemaker-1.34.119.dist-info}/METADATA +3 -3
- mypy_boto3_sagemaker-1.34.119.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.34.116.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.34.116.dist-info → mypy_boto3_sagemaker-1.34.119.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.116.dist-info → mypy_boto3_sagemaker-1.34.119.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.34.116.dist-info → mypy_boto3_sagemaker-1.34.119.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.119\n"
|
|
14
|
+
"Version: 1.34.119\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.119")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -2346,8 +2346,8 @@ class SageMakerClient(BaseClient):
|
|
|
2346
2346
|
self, *, ClusterName: str, NodeId: str
|
|
2347
2347
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
2348
2348
|
"""
|
|
2349
|
-
Retrieves information of
|
|
2350
|
-
|
|
2349
|
+
Retrieves information of a node (also called a *instance* interchangeably) of a
|
|
2350
|
+
SageMaker HyperPod
|
|
2351
2351
|
cluster.
|
|
2352
2352
|
|
|
2353
2353
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.describe_cluster_node)
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -2343,8 +2343,8 @@ class SageMakerClient(BaseClient):
|
|
|
2343
2343
|
self, *, ClusterName: str, NodeId: str
|
|
2344
2344
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
2345
2345
|
"""
|
|
2346
|
-
Retrieves information of
|
|
2347
|
-
|
|
2346
|
+
Retrieves information of a node (also called a *instance* interchangeably) of a
|
|
2347
|
+
SageMaker HyperPod
|
|
2348
2348
|
cluster.
|
|
2349
2349
|
|
|
2350
2350
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.describe_cluster_node)
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -363,6 +363,7 @@ __all__ = (
|
|
|
363
363
|
"ClarifyShapBaselineConfigTypeDef",
|
|
364
364
|
"ClarifyTextConfigTypeDef",
|
|
365
365
|
"ClusterLifeCycleConfigTypeDef",
|
|
366
|
+
"ClusterInstancePlacementTypeDef",
|
|
366
367
|
"ClusterInstanceStatusDetailsTypeDef",
|
|
367
368
|
"ClusterSummaryTypeDef",
|
|
368
369
|
"ContainerConfigExtraOutputTypeDef",
|
|
@@ -2335,6 +2336,13 @@ ClusterLifeCycleConfigTypeDef = TypedDict(
|
|
|
2335
2336
|
"OnCreate": str,
|
|
2336
2337
|
},
|
|
2337
2338
|
)
|
|
2339
|
+
ClusterInstancePlacementTypeDef = TypedDict(
|
|
2340
|
+
"ClusterInstancePlacementTypeDef",
|
|
2341
|
+
{
|
|
2342
|
+
"AvailabilityZone": NotRequired[str],
|
|
2343
|
+
"AvailabilityZoneId": NotRequired[str],
|
|
2344
|
+
},
|
|
2345
|
+
)
|
|
2338
2346
|
ClusterInstanceStatusDetailsTypeDef = TypedDict(
|
|
2339
2347
|
"ClusterInstanceStatusDetailsTypeDef",
|
|
2340
2348
|
{
|
|
@@ -7399,6 +7407,9 @@ ClusterNodeDetailsTypeDef = TypedDict(
|
|
|
7399
7407
|
"LaunchTime": NotRequired[datetime],
|
|
7400
7408
|
"LifeCycleConfig": NotRequired[ClusterLifeCycleConfigTypeDef],
|
|
7401
7409
|
"ThreadsPerCore": NotRequired[int],
|
|
7410
|
+
"PrivatePrimaryIp": NotRequired[str],
|
|
7411
|
+
"PrivateDnsHostname": NotRequired[str],
|
|
7412
|
+
"Placement": NotRequired[ClusterInstancePlacementTypeDef],
|
|
7402
7413
|
},
|
|
7403
7414
|
)
|
|
7404
7415
|
ClusterNodeSummaryTypeDef = TypedDict(
|
|
@@ -363,6 +363,7 @@ __all__ = (
|
|
|
363
363
|
"ClarifyShapBaselineConfigTypeDef",
|
|
364
364
|
"ClarifyTextConfigTypeDef",
|
|
365
365
|
"ClusterLifeCycleConfigTypeDef",
|
|
366
|
+
"ClusterInstancePlacementTypeDef",
|
|
366
367
|
"ClusterInstanceStatusDetailsTypeDef",
|
|
367
368
|
"ClusterSummaryTypeDef",
|
|
368
369
|
"ContainerConfigExtraOutputTypeDef",
|
|
@@ -2335,6 +2336,13 @@ ClusterLifeCycleConfigTypeDef = TypedDict(
|
|
|
2335
2336
|
"OnCreate": str,
|
|
2336
2337
|
},
|
|
2337
2338
|
)
|
|
2339
|
+
ClusterInstancePlacementTypeDef = TypedDict(
|
|
2340
|
+
"ClusterInstancePlacementTypeDef",
|
|
2341
|
+
{
|
|
2342
|
+
"AvailabilityZone": NotRequired[str],
|
|
2343
|
+
"AvailabilityZoneId": NotRequired[str],
|
|
2344
|
+
},
|
|
2345
|
+
)
|
|
2338
2346
|
ClusterInstanceStatusDetailsTypeDef = TypedDict(
|
|
2339
2347
|
"ClusterInstanceStatusDetailsTypeDef",
|
|
2340
2348
|
{
|
|
@@ -7399,6 +7407,9 @@ ClusterNodeDetailsTypeDef = TypedDict(
|
|
|
7399
7407
|
"LaunchTime": NotRequired[datetime],
|
|
7400
7408
|
"LifeCycleConfig": NotRequired[ClusterLifeCycleConfigTypeDef],
|
|
7401
7409
|
"ThreadsPerCore": NotRequired[int],
|
|
7410
|
+
"PrivatePrimaryIp": NotRequired[str],
|
|
7411
|
+
"PrivateDnsHostname": NotRequired[str],
|
|
7412
|
+
"Placement": NotRequired[ClusterInstancePlacementTypeDef],
|
|
7402
7413
|
},
|
|
7403
7414
|
)
|
|
7404
7415
|
ClusterNodeSummaryTypeDef = TypedDict(
|
mypy_boto3_sagemaker/version.py
CHANGED
{mypy_boto3_sagemaker-1.34.116.dist-info → mypy_boto3_sagemaker-1.34.119.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.119
|
|
4
|
+
Summary: Type annotations for boto3.SageMaker 1.34.119 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.119](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=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=90gujgs9TWN0Z44moSQc_m-yNNBdaK-t5P8DJF2kWhQ,930
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=tAWjq4JpFdMnfCvLY8qnGi6S_TeXDGZZCv6WEcF-7B8,279435
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=Gfyr3PeEphK2ucY0yZcnk_i-gQW6SsU8UdvG82mL5GY,279432
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=IKi3Tphb8GpoIn1XFMipKak-uZQAu8q_Xx6lsKXEbbg,68902
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=IKi3Tphb8GpoIn1XFMipKak-uZQAu8q_Xx6lsKXEbbg,68902
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=q2jVJQEHSxSRpulbl9pWG8bBzHVP9di7T2JScL33WdE,102768
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=WEXKsc8Cb7_Rx4ngfAJJ0LHm0eE7r0W-TM9G7HOZAco,102695
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=84mqViESsmJtORVS_R8RykX6CgYjXAhXuBppxsQAcJk,545884
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=84mqViESsmJtORVS_R8RykX6CgYjXAhXuBppxsQAcJk,545884
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=OWAnAQdolWPJlbt-528D-prMkykf5LOt07KK27FEJsI,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.119.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.34.119.dist-info/METADATA,sha256=PbjT0s6VWhzkfuwo7iWVbBocTGpLBg7r3mHFOmxcpPs,25769
|
|
18
|
+
mypy_boto3_sagemaker-1.34.119.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
+
mypy_boto3_sagemaker-1.34.119.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.34.119.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=STP_dhtI7Pk5YCmcAJ6jhT5GX9qz47bjGdBVnaBp1aY,930
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=Zb4RddsvH5kTM9k1L0esGHIlg9GPeu-37sSfqzebvXE,279436
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=rUHfSlb6TqQaOci2gf4wlSyneJeLpf79enUjpm4VL8w,279433
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=7dyUU0TVrml_Cdc7iVw2CcT7yXo7wH5x6jkTdbQT0qU,68883
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=7dyUU0TVrml_Cdc7iVw2CcT7yXo7wH5x6jkTdbQT0qU,68883
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=q2jVJQEHSxSRpulbl9pWG8bBzHVP9di7T2JScL33WdE,102768
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=WEXKsc8Cb7_Rx4ngfAJJ0LHm0eE7r0W-TM9G7HOZAco,102695
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=nJ0Ia38mEIiLPxr72qKSgJMJz6uR1BamLjlNts-ObDk,545491
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=nJ0Ia38mEIiLPxr72qKSgJMJz6uR1BamLjlNts-ObDk,545491
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=vQmRDk0bfOl-AzV2UB0z2hiEo_7oahWZLQQOCCizX6I,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.116.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.34.116.dist-info/METADATA,sha256=7-mOQMNVCpiy8FkGfxF323ZPYB-ji4UtqKzeoDxWdxY,25769
|
|
18
|
-
mypy_boto3_sagemaker-1.34.116.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
-
mypy_boto3_sagemaker-1.34.116.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.34.116.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_sagemaker-1.34.116.dist-info → mypy_boto3_sagemaker-1.34.119.dist-info}/top_level.txt
RENAMED
|
File without changes
|