mypy-boto3-sagemaker 1.35.68__py3-none-any.whl → 1.35.75__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.

@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2024 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.68"
7
+ __version__ = "1.35.75"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-sagemaker
3
- Version: 1.35.68
4
- Summary: Type annotations for boto3 SageMaker 1.35.68 service generated with mypy-boto3-builder 8.3.1
3
+ Version: 1.35.75
4
+ Summary: Type annotations for boto3 SageMaker 1.35.75 service generated with mypy-boto3-builder 8.5.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
@@ -9,7 +9,7 @@ License: MIT License
9
9
  Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/
10
10
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
11
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 sagemaker type-annotations botocore mypy typeshed autocomplete
12
+ Keywords: boto3 sagemaker boto3-stubs type-annotations mypy typeshed autocomplete
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
43
43
 
44
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
- Type annotations for [boto3 SageMaker 1.35.68](https://pypi.org/project/boto3/)
46
+ Type annotations for [boto3 SageMaker 1.35.75](https://pypi.org/project/boto3/)
47
47
  compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
54
  Generated by
55
- [mypy-boto3-builder 8.3.1](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 8.5.0](https://github.com/youtype/mypy_boto3_builder).
56
56
 
57
57
  More information can be found on
58
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -60,7 +60,7 @@ More information can be found on
60
60
 
61
61
  See how it helps you find and fix potential bugs:
62
62
 
63
- ![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
63
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
64
64
 
65
65
  - [mypy-boto3-sagemaker](#mypy-boto3-sagemaker)
66
66
  - [How to install](#how-to-install)
@@ -75,6 +75,7 @@ See how it helps you find and fix potential bugs:
75
75
  - [Other IDEs](#other-ides)
76
76
  - [mypy](#mypy)
77
77
  - [pyright](#pyright)
78
+ - [Pylint compatibility](#pylint-compatibility)
78
79
  - [Explicit type annotations](#explicit-type-annotations)
79
80
  - [Client annotations](#client-annotations)
80
81
  - [Paginators annotations](#paginators-annotations)
@@ -268,6 +269,31 @@ Optionally, you can install `boto3-stubs` to `typings` directory.
268
269
  Type checking should now work. No explicit type annotations required, write
269
270
  your `boto3` code as usual.
270
271
 
272
+ <a id="pylint-compatibility"></a>
273
+
274
+ ### Pylint compatibility
275
+
276
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
277
+ `mypy-boto3-sagemaker` dependency in production. However, there is an issue in
278
+ `pylint` that it complains about undefined variables. To fix it, set all types
279
+ to `object` in non-`TYPE_CHECKING` mode.
280
+
281
+ ```python
282
+ from typing import TYPE_CHECKING
283
+
284
+ if TYPE_CHECKING:
285
+ from mypy_boto3_ec2 import EC2Client, EC2ServiceResource
286
+ from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
287
+ from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
288
+ else:
289
+ EC2Client = object
290
+ EC2ServiceResource = object
291
+ BundleTaskCompleteWaiter = object
292
+ DescribeVolumesPaginator = object
293
+
294
+ ...
295
+ ```
296
+
271
297
  <a id="explicit-type-annotations"></a>
272
298
 
273
299
  ## Explicit type annotations
@@ -310,9 +336,11 @@ from mypy_boto3_sagemaker.paginator import (
310
336
  ListAutoMLJobsPaginator,
311
337
  ListCandidatesForAutoMLJobPaginator,
312
338
  ListClusterNodesPaginator,
339
+ ListClusterSchedulerConfigsPaginator,
313
340
  ListClustersPaginator,
314
341
  ListCodeRepositoriesPaginator,
315
342
  ListCompilationJobsPaginator,
343
+ ListComputeQuotasPaginator,
316
344
  ListContextsPaginator,
317
345
  ListDataQualityJobDefinitionsPaginator,
318
346
  ListDeviceFleetsPaginator,
@@ -354,6 +382,7 @@ from mypy_boto3_sagemaker.paginator import (
354
382
  ListNotebookInstanceLifecycleConfigsPaginator,
355
383
  ListNotebookInstancesPaginator,
356
384
  ListOptimizationJobsPaginator,
385
+ ListPartnerAppsPaginator,
357
386
  ListPipelineExecutionStepsPaginator,
358
387
  ListPipelineExecutionsPaginator,
359
388
  ListPipelineParametersForExecutionPaginator,
@@ -367,6 +396,7 @@ from mypy_boto3_sagemaker.paginator import (
367
396
  ListTagsPaginator,
368
397
  ListTrainingJobsForHyperParameterTuningJobPaginator,
369
398
  ListTrainingJobsPaginator,
399
+ ListTrainingPlansPaginator,
370
400
  ListTransformJobsPaginator,
371
401
  ListTrialComponentsPaginator,
372
402
  ListTrialsPaginator,
@@ -394,6 +424,9 @@ list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator =
394
424
  client.get_paginator("list_candidates_for_auto_ml_job")
395
425
  )
396
426
  list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
427
+ list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = (
428
+ client.get_paginator("list_cluster_scheduler_configs")
429
+ )
397
430
  list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
398
431
  list_code_repositories_paginator: ListCodeRepositoriesPaginator = client.get_paginator(
399
432
  "list_code_repositories"
@@ -401,6 +434,9 @@ list_code_repositories_paginator: ListCodeRepositoriesPaginator = client.get_pag
401
434
  list_compilation_jobs_paginator: ListCompilationJobsPaginator = client.get_paginator(
402
435
  "list_compilation_jobs"
403
436
  )
437
+ list_compute_quotas_paginator: ListComputeQuotasPaginator = client.get_paginator(
438
+ "list_compute_quotas"
439
+ )
404
440
  list_contexts_paginator: ListContextsPaginator = client.get_paginator("list_contexts")
405
441
  list_data_quality_job_definitions_paginator: ListDataQualityJobDefinitionsPaginator = (
406
442
  client.get_paginator("list_data_quality_job_definitions")
@@ -504,6 +540,7 @@ list_notebook_instances_paginator: ListNotebookInstancesPaginator = client.get_p
504
540
  list_optimization_jobs_paginator: ListOptimizationJobsPaginator = client.get_paginator(
505
541
  "list_optimization_jobs"
506
542
  )
543
+ list_partner_apps_paginator: ListPartnerAppsPaginator = client.get_paginator("list_partner_apps")
507
544
  list_pipeline_execution_steps_paginator: ListPipelineExecutionStepsPaginator = client.get_paginator(
508
545
  "list_pipeline_execution_steps"
509
546
  )
@@ -533,6 +570,9 @@ list_training_jobs_for_hyper_parameter_tuning_job_paginator: ListTrainingJobsFor
533
570
  "list_training_jobs_for_hyper_parameter_tuning_job"
534
571
  )
535
572
  list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
573
+ list_training_plans_paginator: ListTrainingPlansPaginator = client.get_paginator(
574
+ "list_training_plans"
575
+ )
536
576
  list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator(
537
577
  "list_transform_jobs"
538
578
  )
@@ -0,0 +1,20 @@
1
+ mypy_boto3_sagemaker/__init__.py,sha256=1dhTcsW6YDsy1ZfKkGI38VUMx5aRfIU38uLx8DGmMsQ,20779
2
+ mypy_boto3_sagemaker/__init__.pyi,sha256=BGr_znBC4FxDq9f6LYMR2XxCxayB8AxU-pLlEQCryEY,20778
3
+ mypy_boto3_sagemaker/__main__.py,sha256=bC1xOKL8CF5cyoop9gxNmpiex25oE2l77ESO2o-7ynk,957
4
+ mypy_boto3_sagemaker/client.py,sha256=VeqbIX2yEk3Sm-EhrPdAk8qo1fW607JFsFNTiFPWQGE,268315
5
+ mypy_boto3_sagemaker/client.pyi,sha256=l6rIfoUcmz2JxV4GQpNyqwzyWgHbOrDM6ykYqEpwyYk,268311
6
+ mypy_boto3_sagemaker/literals.py,sha256=Q2J1vgvaQqzQ-pAAbgHKhH0ubDdEYBWCbiRPvfdO9ek,78177
7
+ mypy_boto3_sagemaker/literals.pyi,sha256=K7qnfl3A-ZDb-eKx6PtPIS9xDzf5Ixqhwvbh641NL4c,78175
8
+ mypy_boto3_sagemaker/paginator.py,sha256=KwDFKJq9cucmkpoqMW6WSxxuDTANOoZIS2uAYJob51c,98795
9
+ mypy_boto3_sagemaker/paginator.pyi,sha256=8mEV6rze_rE-FRLgWdeACVBLpLdhrF_OB2PF94GFKN4,98636
10
+ mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_sagemaker/type_defs.py,sha256=d--AtGKH3bVxOcFsG5NEMe78_oiL54zojMbdiz8W9QE,460883
12
+ mypy_boto3_sagemaker/type_defs.pyi,sha256=RbBz6KMhYL-bR-skd0WfVplt4oFB9Crk3oTVeLE-2MM,459340
13
+ mypy_boto3_sagemaker/version.py,sha256=FzmLtS1ahLBp0wT2VFjMUO6bFICA23-GBxxyVwGf7Oo,93
14
+ mypy_boto3_sagemaker/waiter.py,sha256=lFZNGbgWtR7c6Au8ED42rwrmoaxdTq3gCrC9SozEVbY,15104
15
+ mypy_boto3_sagemaker/waiter.pyi,sha256=nsVNAnPyopzM3cXozPgBDq6IfeVhbmNZKxBpp7Yvf4Q,15077
16
+ mypy_boto3_sagemaker-1.35.75.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_sagemaker-1.35.75.dist-info/METADATA,sha256=gxbvX4JtQa3QlvVwOBRcltAly_xfsybj46Xftt4xqC4,27961
18
+ mypy_boto3_sagemaker-1.35.75.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
+ mypy_boto3_sagemaker-1.35.75.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
+ mypy_boto3_sagemaker-1.35.75.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_sagemaker/__init__.py,sha256=c_BpdLyoMwjra3k6Y-a7ZEg4xjHIgMJpH5EI9ALNncY,19889
2
- mypy_boto3_sagemaker/__init__.pyi,sha256=TREr5gIgLR7Tb6oKo0Nc1NsvI7tTAySX6l6pWhquO2o,19888
3
- mypy_boto3_sagemaker/__main__.py,sha256=pEfJqfHtWSEbJRl6hIEd3tHf-NpMquTYhBCvmo4lv54,957
4
- mypy_boto3_sagemaker/client.py,sha256=jww0Wka9nZKZTPtjK0kqfwTFBt8E3fzJyrV-i1RJzM8,249644
5
- mypy_boto3_sagemaker/client.pyi,sha256=p3EQxJM4YgvD_5Vumlz9X2oUXsRsQzn-KBIrvABTffI,249640
6
- mypy_boto3_sagemaker/literals.py,sha256=zfrf5aKIctGzw8z7vxLHJZmFhbki_trFxW2nQYGOxIM,75055
7
- mypy_boto3_sagemaker/literals.pyi,sha256=J2qi8NtSJuTLoEXAqeJHz7LmtNKJzs-VQRbju4cpP58,75053
8
- mypy_boto3_sagemaker/paginator.py,sha256=D7Ln-RHzxiob2rZCpXl__wSf_6cWRr5-9j3Vtk3eMzM,93794
9
- mypy_boto3_sagemaker/paginator.pyi,sha256=hnWdLyIT-BeicGxvmArL0Eb2UdbAbN0-BR47KLI3ttI,93643
10
- mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sagemaker/type_defs.py,sha256=Cje4w5--5RYJz-I1FcVtQY1un4a-Uco3w5CNuzGkynY,441331
12
- mypy_boto3_sagemaker/type_defs.pyi,sha256=VLUX_UIXjcyckG_RU9Yy5ZXem9c4huxFcqF4uvPUyUY,439852
13
- mypy_boto3_sagemaker/version.py,sha256=PcdOPBWwsAGW5n9X_5Y2mhMlza_5GJh35mY9J_rFf8Q,93
14
- mypy_boto3_sagemaker/waiter.py,sha256=lFZNGbgWtR7c6Au8ED42rwrmoaxdTq3gCrC9SozEVbY,15104
15
- mypy_boto3_sagemaker/waiter.pyi,sha256=nsVNAnPyopzM3cXozPgBDq6IfeVhbmNZKxBpp7Yvf4Q,15077
16
- mypy_boto3_sagemaker-1.35.68.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_sagemaker-1.35.68.dist-info/METADATA,sha256=Q52tu1rCAe0KhVJz6MJG83mBIUZZAyysosc5La8JfLE,26581
18
- mypy_boto3_sagemaker-1.35.68.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
- mypy_boto3_sagemaker-1.35.68.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
- mypy_boto3_sagemaker-1.35.68.dist-info/RECORD,,