mypy-boto3-sagemaker 1.40.2__py3-none-any.whl → 1.40.6__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 +8 -0
- mypy_boto3_sagemaker/__init__.pyi +8 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +88 -2
- mypy_boto3_sagemaker/client.pyi +88 -2
- mypy_boto3_sagemaker/literals.py +29 -1
- mypy_boto3_sagemaker/literals.pyi +29 -1
- mypy_boto3_sagemaker/paginator.py +54 -0
- mypy_boto3_sagemaker/paginator.pyi +48 -0
- mypy_boto3_sagemaker/type_defs.py +322 -17
- mypy_boto3_sagemaker/type_defs.pyi +291 -17
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/METADATA +12 -4
- mypy_boto3_sagemaker-1.40.6.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.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.40.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.40.
|
|
3
|
+
Version: 1.40.6
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.40.6 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.40.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.40.6](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.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.6' 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.
|
|
@@ -363,6 +363,7 @@ from mypy_boto3_sagemaker.paginator import (
|
|
|
363
363
|
ListAssociationsPaginator,
|
|
364
364
|
ListAutoMLJobsPaginator,
|
|
365
365
|
ListCandidatesForAutoMLJobPaginator,
|
|
366
|
+
ListClusterEventsPaginator,
|
|
366
367
|
ListClusterNodesPaginator,
|
|
367
368
|
ListClusterSchedulerConfigsPaginator,
|
|
368
369
|
ListClustersPaginator,
|
|
@@ -429,6 +430,7 @@ from mypy_boto3_sagemaker.paginator import (
|
|
|
429
430
|
ListTransformJobsPaginator,
|
|
430
431
|
ListTrialComponentsPaginator,
|
|
431
432
|
ListTrialsPaginator,
|
|
433
|
+
ListUltraServersByReservedCapacityPaginator,
|
|
432
434
|
ListUserProfilesPaginator,
|
|
433
435
|
ListWorkforcesPaginator,
|
|
434
436
|
ListWorkteamsPaginator,
|
|
@@ -455,6 +457,9 @@ list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("lis
|
|
|
455
457
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = (
|
|
456
458
|
client.get_paginator("list_candidates_for_auto_ml_job")
|
|
457
459
|
)
|
|
460
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator(
|
|
461
|
+
"list_cluster_events"
|
|
462
|
+
)
|
|
458
463
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
459
464
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = (
|
|
460
465
|
client.get_paginator("list_cluster_scheduler_configs")
|
|
@@ -615,6 +620,9 @@ list_trial_components_paginator: ListTrialComponentsPaginator = client.get_pagin
|
|
|
615
620
|
"list_trial_components"
|
|
616
621
|
)
|
|
617
622
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
623
|
+
list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = (
|
|
624
|
+
client.get_paginator("list_ultra_servers_by_reserved_capacity")
|
|
625
|
+
)
|
|
618
626
|
list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
|
|
619
627
|
list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
|
|
620
628
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=8u1GoCuYZL3XnYrn9wOzROItqTTiuPlw5sf0_gSkS8M,21904
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=U5FxNumwWVegSjatfeS1b91q5XdHYIpWK6LMpwX7tm8,21903
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=Oh3TE8AsAhjckvcUNPoWaxc2JzhJvyliJ8Nnq9KHJYY,989
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=WToZFdhC7Wt5_LYM2mf6njFcflnQ2Yr9pW9SnnA5fHo,279028
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=pTVBeGJHBzypeZskLqfg02PVHfxyVsRbc3BscqByYo8,279025
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=wpRBWYwErAf5AhKFygp9m_Ck8RMPuwg-QvXsiXdNDzo,85495
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=Cvz7lM-5HhuwuS1SGv5wneKzOzLlvwwE5_u-XuGwtRg,85493
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=1fUjKHghqFE04mdXf0-FmZ4wBf-xX55GGpT-Pl-fqKU,120255
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=vGQCLe7DjQ93tq2SzKgEpW8M90mp74xVWeBB03Bklck,120008
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=lmZIIRFcK9a26wt70CFgaroTI8FNsnauL6uOUks92_I,481725
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=BCCIWMfOAd8ICPrxJs7DVY6B-OzYm-F0oX3Q_glPfMs,480083
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=VNQBT6aQNszUcr85DV1qb_G-WS-X9TA2In_GQ9Xv7cQ,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.40.6.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/METADATA,sha256=ov8GqdTyz9Szrqp3tpT2Fyx8jqvQOK7_ZqHea_OPoSk,29604
|
|
18
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.40.6.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=JUsVccGFuQfIOyrrHUhfy5jk3FCdqGD2Hkqb2rsA8uc,21376
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=_mfwjFh9EC6nHOpoCL2X-jrSx1ji2LD6CShR5m-Issk,21375
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=Txvp4IOMss6tuVuv-GnGtPwUW3VmUjYmpBsjNSPoWms,989
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=eJnEzySwS8bcAOeG4iizP6kpn6xcVc8XD8g8ZzyB8Ug,274577
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=sJWbqStvoeb-7S3iElYsrVNtyrvba0Z8lb00q360oi0,274574
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=zO48qNlfGNWzMot_M7rVcCQlhs96RghaIlPUxmTP6ag,84362
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=Fl9DGzt_nLldMwSEa685D-tixCL-576l6nyR9VcY1dA,84360
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=lx8AjH-vldHFXjRF_qervJL33q7vCl6Y_Ws6iCb8QDY,117089
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=pnCJcv7oA36a_irJoFOGJvYD147XWGZPz0BfSI3LBkQ,116848
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=l21LxND9tCZAcOQ4n3Mh0xC4w4DJ869pnpyAg5UtqBs,471745
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=AH_uJcMzup9WZ46UORgO0laW5JRrz9f3F1SqdjEb43E,470134
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=2eSDCSJMbL_5KjVPoMGbPD4wtz5zusugzLa7ydyll1w,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.40.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.40.2.dist-info/METADATA,sha256=Se9QvYHzVSwqTfa5YWDlXOKL79wqTXG3NJg9mLqxNO4,29244
|
|
18
|
-
mypy_boto3_sagemaker-1.40.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_sagemaker-1.40.2.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.40.2.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/top_level.txt
RENAMED
|
File without changes
|