mypy-boto3-sagemaker 1.39.1__py3-none-any.whl → 1.39.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/__init__.py +4 -0
- mypy_boto3_sagemaker/__init__.pyi +4 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +37 -0
- mypy_boto3_sagemaker/client.pyi +37 -0
- mypy_boto3_sagemaker/literals.py +3 -0
- mypy_boto3_sagemaker/literals.pyi +3 -0
- mypy_boto3_sagemaker/paginator.py +28 -0
- mypy_boto3_sagemaker/paginator.pyi +25 -0
- mypy_boto3_sagemaker/type_defs.py +938 -884
- mypy_boto3_sagemaker/type_defs.pyi +848 -800
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/METADATA +8 -4
- mypy_boto3_sagemaker-1.39.3.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.39.1.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.39.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.39.
|
|
3
|
+
Version: 1.39.3
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.39.3 service generated with mypy-boto3-builder 8.11.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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 SageMaker 1.39.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.39.3](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.39.
|
|
122
|
+
`uvx --with 'boto3==1.39.3' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `SageMaker` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -353,6 +353,7 @@ from boto3.session import Session
|
|
|
353
353
|
|
|
354
354
|
from mypy_boto3_sagemaker import SageMakerClient
|
|
355
355
|
from mypy_boto3_sagemaker.paginator import (
|
|
356
|
+
CreateHubContentPresignedUrlsPaginator,
|
|
356
357
|
ListActionsPaginator,
|
|
357
358
|
ListAlgorithmsPaginator,
|
|
358
359
|
ListAliasesPaginator,
|
|
@@ -437,6 +438,9 @@ client: SageMakerClient = Session().client("sagemaker")
|
|
|
437
438
|
|
|
438
439
|
# Explicit type annotations are optional here
|
|
439
440
|
# Types should be correctly discovered by mypy and IDEs
|
|
441
|
+
create_hub_content_presigned_urls_paginator: CreateHubContentPresignedUrlsPaginator = (
|
|
442
|
+
client.get_paginator("create_hub_content_presigned_urls")
|
|
443
|
+
)
|
|
440
444
|
list_actions_paginator: ListActionsPaginator = client.get_paginator("list_actions")
|
|
441
445
|
list_algorithms_paginator: ListAlgorithmsPaginator = client.get_paginator("list_algorithms")
|
|
442
446
|
list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=KE8R7Sa4Nt09tEGSFGiTUBD7XGdQLPvj4WDo1CYk1XE,21148
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=DEdtRMJEzOSATlyc2zcquyVYJKrmRctGTRpp5oMJfhY,21147
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=pGHuZw3FvGkM9ZqgjpAA68U1zBIhCDv75VE9bR8XOx0,989
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=7XvZYY8WfmYZ2YCrE1ZzDpMnLeLXGT3oxoFVN0pMwMw,271407
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=-ws26smxaepNN1w-BN8pUj6jlve71t-C5twBi1crVUs,271404
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=fPJgVUgRqGiB8Ui4AA1xbnm0_GLJy0aY64LuRdtYUeg,83836
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=d1_wkLLyQhyD_3Cy9XchaJ-nh6MRHesEcDkgY6k7QN4,83834
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=bZqENIbC9PHtnSlUJ9aeXKMZi4VKUAgiwaolLd-v3WA,115626
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=vVL7krK23v2uh15cjyrTFRj3cfDmHWBbjFuDc0lqN0k,115388
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=M9IzKmfrt69GcuQHhIr83wNi_DdbXfKFe5ktssMq0lQ,465278
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=69hFJhTa-Sc37Xz61nnXxxlUn8JGVeoUBBIchqmCcSM,463685
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=ZJ_go9nuTvE3CHhY4AV44aDQXzjjISfnjySFUwTsOvU,92
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
+
mypy_boto3_sagemaker-1.39.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.39.3.dist-info/METADATA,sha256=X-4oIumUcsntOvpqQPD6BGnQWuwyXg7fFH14E-08sJM,29090
|
|
18
|
+
mypy_boto3_sagemaker-1.39.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_sagemaker-1.39.3.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.39.3.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=N-698AgjtOw4uD2w_eVEp2FYwcIQZD_svbV87kwQzXo,989
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=N2YoZbs2qQlheG7oRaDd_neFEwH3M_kTRQxCCoItzXQ,83655
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=Ed-dF3jygXI0ZOV2MbiyGvJNKkFwFiA9tz-zi4Mk0Z8,83653
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=JS6pGg_68fX5V6BLEjQ07g94pQpXQZUChKG3xV9UDx8,463540
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=OFnv6rtRGCdoWQbpQk7oOvVv6Qd_9hX24DL_NG7UsNo,461953
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=sA9zhZ3-506f3t9k_1ZNqI4CHXM17GlGW55FTyR2A88,92
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
-
mypy_boto3_sagemaker-1.39.1.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.39.1.dist-info/METADATA,sha256=I05mdbYl2C3Kstcn8zlUXHzKxOSFjo3s5YeVaIq1N_0,28894
|
|
18
|
-
mypy_boto3_sagemaker-1.39.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_sagemaker-1.39.1.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.39.1.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.39.1.dist-info → mypy_boto3_sagemaker-1.39.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|