mypy-boto3-sagemaker 1.36.2__py3-none-any.whl → 1.36.11__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 -2
- mypy_boto3_sagemaker/__init__.pyi +4 -2
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +708 -730
- mypy_boto3_sagemaker/client.pyi +708 -730
- mypy_boto3_sagemaker/literals.py +3 -2
- mypy_boto3_sagemaker/literals.pyi +3 -2
- mypy_boto3_sagemaker/paginator.py +2 -2
- mypy_boto3_sagemaker/paginator.pyi +2 -2
- mypy_boto3_sagemaker/type_defs.py +1752 -1696
- mypy_boto3_sagemaker/type_defs.pyi +1663 -1623
- mypy_boto3_sagemaker/version.py +1 -1
- mypy_boto3_sagemaker/waiter.py +14 -8
- mypy_boto3_sagemaker/waiter.pyi +14 -8
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/METADATA +7 -6
- mypy_boto3_sagemaker-1.36.11.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.36.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__init__.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for sagemaker service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -197,8 +201,6 @@ Usage::
|
|
|
197
201
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
198
202
|
search_paginator: SearchPaginator = client.get_paginator("search")
|
|
199
203
|
```
|
|
200
|
-
|
|
201
|
-
Copyright 2025 Vlad Emelianov
|
|
202
204
|
"""
|
|
203
205
|
|
|
204
206
|
from .client import SageMakerClient
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for sagemaker service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -197,8 +201,6 @@ Usage::
|
|
|
197
201
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
198
202
|
search_paginator: SearchPaginator = client.get_paginator("search")
|
|
199
203
|
```
|
|
200
|
-
|
|
201
|
-
Copyright 2025 Vlad Emelianov
|
|
202
204
|
"""
|
|
203
205
|
|
|
204
206
|
from .client import SageMakerClient
|
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ 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.36.
|
|
16
|
-
"Version: 1.36.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.36.11\n"
|
|
16
|
+
"Version: 1.36.11\n"
|
|
17
|
+
"Builder version: 8.9.0\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"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\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.36.
|
|
29
|
+
sys.stdout.write("1.36.11\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|