boto3-stubs 1.38.37__py3-none-any.whl → 1.38.39__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.
- boto3-stubs/__init__.pyi +38 -0
- boto3-stubs/session.pyi +40 -0
- {boto3_stubs-1.38.37.dist-info → boto3_stubs-1.38.39.dist-info}/METADATA +19 -7
- {boto3_stubs-1.38.37.dist-info → boto3_stubs-1.38.39.dist-info}/RECORD +7 -7
- {boto3_stubs-1.38.37.dist-info → boto3_stubs-1.38.39.dist-info}/WHEEL +0 -0
- {boto3_stubs-1.38.37.dist-info → boto3_stubs-1.38.39.dist-info}/licenses/LICENSE +0 -0
- {boto3_stubs-1.38.37.dist-info → boto3_stubs-1.38.39.dist-info}/top_level.txt +0 -0
boto3-stubs/__init__.pyi
CHANGED
@@ -16,6 +16,7 @@ from mypy_boto3_accessanalyzer.client import AccessAnalyzerClient
|
|
16
16
|
from mypy_boto3_account.client import AccountClient
|
17
17
|
from mypy_boto3_acm.client import ACMClient
|
18
18
|
from mypy_boto3_acm_pca.client import ACMPCAClient
|
19
|
+
from mypy_boto3_aiops.client import AIOpsClient
|
19
20
|
from mypy_boto3_amp.client import PrometheusServiceClient
|
20
21
|
from mypy_boto3_amplify.client import AmplifyClient
|
21
22
|
from mypy_boto3_amplifybackend.client import AmplifyBackendClient
|
@@ -281,6 +282,7 @@ from mypy_boto3_migration_hub_refactor_spaces.client import MigrationHubRefactor
|
|
281
282
|
from mypy_boto3_migrationhub_config.client import MigrationHubConfigClient
|
282
283
|
from mypy_boto3_migrationhuborchestrator.client import MigrationHubOrchestratorClient
|
283
284
|
from mypy_boto3_migrationhubstrategy.client import MigrationHubStrategyRecommendationsClient
|
285
|
+
from mypy_boto3_mpa.client import MultipartyApprovalClient
|
284
286
|
from mypy_boto3_mq.client import MQClient
|
285
287
|
from mypy_boto3_mturk.client import MTurkClient
|
286
288
|
from mypy_boto3_mwaa.client import MWAAClient
|
@@ -532,6 +534,24 @@ def client(
|
|
532
534
|
Create client for ACMPCA service.
|
533
535
|
"""
|
534
536
|
|
537
|
+
@overload
|
538
|
+
def client(
|
539
|
+
service_name: Literal["aiops"],
|
540
|
+
region_name: str | None = ...,
|
541
|
+
api_version: str | None = ...,
|
542
|
+
use_ssl: bool | None = ...,
|
543
|
+
verify: bool | str | None = ...,
|
544
|
+
endpoint_url: str | None = ...,
|
545
|
+
aws_access_key_id: str | None = ...,
|
546
|
+
aws_secret_access_key: str | None = ...,
|
547
|
+
aws_session_token: str | None = ...,
|
548
|
+
config: Config | None = ...,
|
549
|
+
aws_account_id: str | None = ...,
|
550
|
+
) -> AIOpsClient:
|
551
|
+
"""
|
552
|
+
Create client for AIOps service.
|
553
|
+
"""
|
554
|
+
|
535
555
|
@overload
|
536
556
|
def client(
|
537
557
|
service_name: Literal["amp"],
|
@@ -5086,6 +5106,24 @@ def client(
|
|
5086
5106
|
Create client for MigrationHubStrategyRecommendations service.
|
5087
5107
|
"""
|
5088
5108
|
|
5109
|
+
@overload
|
5110
|
+
def client(
|
5111
|
+
service_name: Literal["mpa"],
|
5112
|
+
region_name: str | None = ...,
|
5113
|
+
api_version: str | None = ...,
|
5114
|
+
use_ssl: bool | None = ...,
|
5115
|
+
verify: bool | str | None = ...,
|
5116
|
+
endpoint_url: str | None = ...,
|
5117
|
+
aws_access_key_id: str | None = ...,
|
5118
|
+
aws_secret_access_key: str | None = ...,
|
5119
|
+
aws_session_token: str | None = ...,
|
5120
|
+
config: Config | None = ...,
|
5121
|
+
aws_account_id: str | None = ...,
|
5122
|
+
) -> MultipartyApprovalClient:
|
5123
|
+
"""
|
5124
|
+
Create client for MultipartyApproval service.
|
5125
|
+
"""
|
5126
|
+
|
5089
5127
|
@overload
|
5090
5128
|
def client(
|
5091
5129
|
service_name: Literal["mq"],
|
boto3-stubs/session.pyi
CHANGED
@@ -22,6 +22,7 @@ from mypy_boto3_accessanalyzer.client import AccessAnalyzerClient
|
|
22
22
|
from mypy_boto3_account.client import AccountClient
|
23
23
|
from mypy_boto3_acm.client import ACMClient
|
24
24
|
from mypy_boto3_acm_pca.client import ACMPCAClient
|
25
|
+
from mypy_boto3_aiops.client import AIOpsClient
|
25
26
|
from mypy_boto3_amp.client import PrometheusServiceClient
|
26
27
|
from mypy_boto3_amplify.client import AmplifyClient
|
27
28
|
from mypy_boto3_amplifybackend.client import AmplifyBackendClient
|
@@ -287,6 +288,7 @@ from mypy_boto3_migration_hub_refactor_spaces.client import MigrationHubRefactor
|
|
287
288
|
from mypy_boto3_migrationhub_config.client import MigrationHubConfigClient
|
288
289
|
from mypy_boto3_migrationhuborchestrator.client import MigrationHubOrchestratorClient
|
289
290
|
from mypy_boto3_migrationhubstrategy.client import MigrationHubStrategyRecommendationsClient
|
291
|
+
from mypy_boto3_mpa.client import MultipartyApprovalClient
|
290
292
|
from mypy_boto3_mq.client import MQClient
|
291
293
|
from mypy_boto3_mturk.client import MTurkClient
|
292
294
|
from mypy_boto3_mwaa.client import MWAAClient
|
@@ -556,6 +558,25 @@ class Session:
|
|
556
558
|
Create client for ACMPCA service.
|
557
559
|
"""
|
558
560
|
|
561
|
+
@overload
|
562
|
+
def client(
|
563
|
+
self,
|
564
|
+
service_name: Literal["aiops"],
|
565
|
+
region_name: str | None = ...,
|
566
|
+
api_version: str | None = ...,
|
567
|
+
use_ssl: bool | None = ...,
|
568
|
+
verify: bool | str | None = ...,
|
569
|
+
endpoint_url: str | None = ...,
|
570
|
+
aws_access_key_id: str | None = ...,
|
571
|
+
aws_secret_access_key: str | None = ...,
|
572
|
+
aws_session_token: str | None = ...,
|
573
|
+
config: Config | None = ...,
|
574
|
+
aws_account_id: str | None = ...,
|
575
|
+
) -> AIOpsClient:
|
576
|
+
"""
|
577
|
+
Create client for AIOps service.
|
578
|
+
"""
|
579
|
+
|
559
580
|
@overload
|
560
581
|
def client(
|
561
582
|
self,
|
@@ -5363,6 +5384,25 @@ class Session:
|
|
5363
5384
|
Create client for MigrationHubStrategyRecommendations service.
|
5364
5385
|
"""
|
5365
5386
|
|
5387
|
+
@overload
|
5388
|
+
def client(
|
5389
|
+
self,
|
5390
|
+
service_name: Literal["mpa"],
|
5391
|
+
region_name: str | None = ...,
|
5392
|
+
api_version: str | None = ...,
|
5393
|
+
use_ssl: bool | None = ...,
|
5394
|
+
verify: bool | str | None = ...,
|
5395
|
+
endpoint_url: str | None = ...,
|
5396
|
+
aws_access_key_id: str | None = ...,
|
5397
|
+
aws_secret_access_key: str | None = ...,
|
5398
|
+
aws_session_token: str | None = ...,
|
5399
|
+
config: Config | None = ...,
|
5400
|
+
aws_account_id: str | None = ...,
|
5401
|
+
) -> MultipartyApprovalClient:
|
5402
|
+
"""
|
5403
|
+
Create client for MultipartyApproval service.
|
5404
|
+
"""
|
5405
|
+
|
5366
5406
|
@overload
|
5367
5407
|
def client(
|
5368
5408
|
self,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: boto3-stubs
|
3
|
-
Version: 1.38.
|
4
|
-
Summary: Type annotations for boto3 1.38.
|
3
|
+
Version: 1.38.39
|
4
|
+
Summary: Type annotations for boto3 1.38.39 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
|
@@ -36,12 +36,13 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
36
36
|
Provides-Extra: full
|
37
37
|
Requires-Dist: boto3-stubs-full<1.39.0,>=1.38.0; extra == "full"
|
38
38
|
Provides-Extra: boto3
|
39
|
-
Requires-Dist: boto3==1.38.
|
39
|
+
Requires-Dist: boto3==1.38.39; extra == "boto3"
|
40
40
|
Provides-Extra: all
|
41
41
|
Requires-Dist: mypy-boto3-accessanalyzer<1.39.0,>=1.38.0; extra == "all"
|
42
42
|
Requires-Dist: mypy-boto3-account<1.39.0,>=1.38.0; extra == "all"
|
43
43
|
Requires-Dist: mypy-boto3-acm<1.39.0,>=1.38.0; extra == "all"
|
44
44
|
Requires-Dist: mypy-boto3-acm-pca<1.39.0,>=1.38.0; extra == "all"
|
45
|
+
Requires-Dist: mypy-boto3-aiops<1.39.0,>=1.38.0; extra == "all"
|
45
46
|
Requires-Dist: mypy-boto3-amp<1.39.0,>=1.38.0; extra == "all"
|
46
47
|
Requires-Dist: mypy-boto3-amplify<1.39.0,>=1.38.0; extra == "all"
|
47
48
|
Requires-Dist: mypy-boto3-amplifybackend<1.39.0,>=1.38.0; extra == "all"
|
@@ -295,6 +296,7 @@ Requires-Dist: mypy-boto3-migration-hub-refactor-spaces<1.39.0,>=1.38.0; extra =
|
|
295
296
|
Requires-Dist: mypy-boto3-migrationhub-config<1.39.0,>=1.38.0; extra == "all"
|
296
297
|
Requires-Dist: mypy-boto3-migrationhuborchestrator<1.39.0,>=1.38.0; extra == "all"
|
297
298
|
Requires-Dist: mypy-boto3-migrationhubstrategy<1.39.0,>=1.38.0; extra == "all"
|
299
|
+
Requires-Dist: mypy-boto3-mpa<1.39.0,>=1.38.0; extra == "all"
|
298
300
|
Requires-Dist: mypy-boto3-mq<1.39.0,>=1.38.0; extra == "all"
|
299
301
|
Requires-Dist: mypy-boto3-mturk<1.39.0,>=1.38.0; extra == "all"
|
300
302
|
Requires-Dist: mypy-boto3-mwaa<1.39.0,>=1.38.0; extra == "all"
|
@@ -458,6 +460,8 @@ Provides-Extra: acm
|
|
458
460
|
Requires-Dist: mypy-boto3-acm<1.39.0,>=1.38.0; extra == "acm"
|
459
461
|
Provides-Extra: acm-pca
|
460
462
|
Requires-Dist: mypy-boto3-acm-pca<1.39.0,>=1.38.0; extra == "acm-pca"
|
463
|
+
Provides-Extra: aiops
|
464
|
+
Requires-Dist: mypy-boto3-aiops<1.39.0,>=1.38.0; extra == "aiops"
|
461
465
|
Provides-Extra: amp
|
462
466
|
Requires-Dist: mypy-boto3-amp<1.39.0,>=1.38.0; extra == "amp"
|
463
467
|
Provides-Extra: amplify
|
@@ -964,6 +968,8 @@ Provides-Extra: migrationhuborchestrator
|
|
964
968
|
Requires-Dist: mypy-boto3-migrationhuborchestrator<1.39.0,>=1.38.0; extra == "migrationhuborchestrator"
|
965
969
|
Provides-Extra: migrationhubstrategy
|
966
970
|
Requires-Dist: mypy-boto3-migrationhubstrategy<1.39.0,>=1.38.0; extra == "migrationhubstrategy"
|
971
|
+
Provides-Extra: mpa
|
972
|
+
Requires-Dist: mypy-boto3-mpa<1.39.0,>=1.38.0; extra == "mpa"
|
967
973
|
Provides-Extra: mq
|
968
974
|
Requires-Dist: mypy-boto3-mq<1.39.0,>=1.38.0; extra == "mq"
|
969
975
|
Provides-Extra: mturk
|
@@ -1284,7 +1290,7 @@ Dynamic: summary
|
|
1284
1290
|
|
1285
1291
|

|
1286
1292
|
|
1287
|
-
Type annotations for [boto3 1.38.
|
1293
|
+
Type annotations for [boto3 1.38.39](https://pypi.org/project/boto3/)
|
1288
1294
|
compatible with [VSCode](https://code.visualstudio.com/),
|
1289
1295
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
1290
1296
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -1343,7 +1349,7 @@ You can generate type annotations for `boto3` package locally with
|
|
1343
1349
|
isolation.
|
1344
1350
|
|
1345
1351
|
1. Run mypy-boto3-builder in your package root directory:
|
1346
|
-
`uvx --with 'boto3==1.38.
|
1352
|
+
`uvx --with 'boto3==1.38.39' mypy-boto3-builder`
|
1347
1353
|
2. Select `boto3-stubs` AWS SDK.
|
1348
1354
|
3. Select services you use in the current project.
|
1349
1355
|
4. Use provided commands to install generated packages.
|
@@ -1695,9 +1701,9 @@ repository.
|
|
1695
1701
|
|
1696
1702
|
## Submodules
|
1697
1703
|
|
1698
|
-
- `boto3-stubs[full]` - Type annotations for all
|
1704
|
+
- `boto3-stubs[full]` - Type annotations for all 406 services in one package
|
1699
1705
|
(recommended).
|
1700
|
-
- `boto3-stubs[all]` - Type annotations for all
|
1706
|
+
- `boto3-stubs[all]` - Type annotations for all 406 services in separate
|
1701
1707
|
packages.
|
1702
1708
|
- `boto3-stubs[essential]` - Type annotations for
|
1703
1709
|
[CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/),
|
@@ -1719,6 +1725,9 @@ repository.
|
|
1719
1725
|
- `boto3-stubs[acm-pca]` - Type annotations for
|
1720
1726
|
[ACMPCA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm_pca/)
|
1721
1727
|
service.
|
1728
|
+
- `boto3-stubs[aiops]` - Type annotations for
|
1729
|
+
[AIOps](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_aiops/)
|
1730
|
+
service.
|
1722
1731
|
- `boto3-stubs[amp]` - Type annotations for
|
1723
1732
|
[PrometheusService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amp/)
|
1724
1733
|
service.
|
@@ -2457,6 +2466,9 @@ repository.
|
|
2457
2466
|
- `boto3-stubs[migrationhubstrategy]` - Type annotations for
|
2458
2467
|
[MigrationHubStrategyRecommendations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhubstrategy/)
|
2459
2468
|
service.
|
2469
|
+
- `boto3-stubs[mpa]` - Type annotations for
|
2470
|
+
[MultipartyApproval](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mpa/)
|
2471
|
+
service.
|
2460
2472
|
- `boto3-stubs[mq]` - Type annotations for
|
2461
2473
|
[MQ](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mq/) service.
|
2462
2474
|
- `boto3-stubs[mturk]` - Type annotations for
|
@@ -1,9 +1,9 @@
|
|
1
|
-
boto3-stubs/__init__.pyi,sha256=
|
1
|
+
boto3-stubs/__init__.pyi,sha256=O0IHwen2UU9DtncuOcvmNIIyGnPE_hW_51wQz9TFKss,246448
|
2
2
|
boto3-stubs/compat.pyi,sha256=PWrZhB_PeAhGJaNV3a5OXYy1k5QRa-Jm2Qt3SsVutWY,278
|
3
3
|
boto3-stubs/crt.pyi,sha256=OAjGbtBlQJIDRctWkMpr7UwRKxiH_lQt9OdSrHPL3QI,893
|
4
4
|
boto3-stubs/exceptions.pyi,sha256=cjOrbR2BIOcaHRmIQvGL0y-XEJdicpzRl2dQNfx6GVk,1339
|
5
5
|
boto3-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
boto3-stubs/session.pyi,sha256=
|
6
|
+
boto3-stubs/session.pyi,sha256=bMzriqGKmSx8rS_4zP3D7gLfWWATCxUtzGxD2Mx0obE,281667
|
7
7
|
boto3-stubs/utils.pyi,sha256=2vtGuLR-fnfzUNoeNvcEbb0Lb-DGEZ-BQ5BV9xF8vSg,841
|
8
8
|
boto3-stubs/docs/__init__.pyi,sha256=uDkzwRXE_Bb65mlFvnPSySeRYnhK9Cpk4fUyK6gpBd0,179
|
9
9
|
boto3-stubs/docs/action.pyi,sha256=_vWYnBVkwK6kU3xTdr5tPGxL-s3ULaAFBnxuFLHsmsE,1016
|
@@ -38,8 +38,8 @@ boto3-stubs/s3/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
38
|
boto3-stubs/s3/constants.pyi,sha256=U9MRV6GXbxTyEfKLsp3fVKzLR85KSSSP5FbcIWVHX54,163
|
39
39
|
boto3-stubs/s3/inject.pyi,sha256=iSD34EWV7eyBwCNgAyVC2BZ24i_DXmFF6XhlNbZ6boA,4639
|
40
40
|
boto3-stubs/s3/transfer.pyi,sha256=7A4hY7nziEaFM6fFhhneQYgB8aPa_on4i3DhOxh1_7s,2536
|
41
|
-
boto3_stubs-1.38.
|
42
|
-
boto3_stubs-1.38.
|
43
|
-
boto3_stubs-1.38.
|
44
|
-
boto3_stubs-1.38.
|
45
|
-
boto3_stubs-1.38.
|
41
|
+
boto3_stubs-1.38.39.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
42
|
+
boto3_stubs-1.38.39.dist-info/METADATA,sha256=SVfPMIPbMdrqG0wYki3otjriy0DENGP7P3wXQVRYO9M,149832
|
43
|
+
boto3_stubs-1.38.39.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
44
|
+
boto3_stubs-1.38.39.dist-info/top_level.txt,sha256=uB_lQ39lkJ_VYZ_88DxH_zFptJtIwQ_SzeMpW8tRmT4,12
|
45
|
+
boto3_stubs-1.38.39.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|