types-boto3 1.35.72__py3-none-any.whl → 1.35.74__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 +28 -0
- boto3-stubs/session.pyi +30 -0
- {types_boto3-1.35.72.dist-info → types_boto3-1.35.74.dist-info}/METADATA +19 -7
- {types_boto3-1.35.72.dist-info → types_boto3-1.35.74.dist-info}/RECORD +7 -7
- {types_boto3-1.35.72.dist-info → types_boto3-1.35.74.dist-info}/LICENSE +0 -0
- {types_boto3-1.35.72.dist-info → types_boto3-1.35.74.dist-info}/WHEEL +0 -0
- {types_boto3-1.35.72.dist-info → types_boto3-1.35.74.dist-info}/top_level.txt +0 -0
boto3-stubs/__init__.pyi
CHANGED
@@ -133,6 +133,7 @@ from types_boto3_docdb_elastic.client import DocDBElasticClient
|
|
133
133
|
from types_boto3_drs.client import DrsClient
|
134
134
|
from types_boto3_ds.client import DirectoryServiceClient
|
135
135
|
from types_boto3_ds_data.client import DirectoryServiceDataClient
|
136
|
+
from types_boto3_dsql.client import AuroraDSQLClient
|
136
137
|
from types_boto3_dynamodb.client import DynamoDBClient
|
137
138
|
from types_boto3_dynamodb.service_resource import DynamoDBServiceResource
|
138
139
|
from types_boto3_dynamodbstreams.client import DynamoDBStreamsClient
|
@@ -353,6 +354,7 @@ from types_boto3_s3.client import S3Client
|
|
353
354
|
from types_boto3_s3.service_resource import S3ServiceResource
|
354
355
|
from types_boto3_s3control.client import S3ControlClient
|
355
356
|
from types_boto3_s3outposts.client import S3OutpostsClient
|
357
|
+
from types_boto3_s3tables.client import S3TablesClient
|
356
358
|
from types_boto3_sagemaker.client import SageMakerClient
|
357
359
|
from types_boto3_sagemaker_a2i_runtime.client import AugmentedAIRuntimeClient
|
358
360
|
from types_boto3_sagemaker_edge.client import SagemakerEdgeManagerClient
|
@@ -1977,6 +1979,19 @@ def client(
|
|
1977
1979
|
config: Optional[Config] = ...,
|
1978
1980
|
) -> DirectoryServiceDataClient: ...
|
1979
1981
|
@overload
|
1982
|
+
def client(
|
1983
|
+
service_name: Literal["dsql"],
|
1984
|
+
region_name: Optional[str] = ...,
|
1985
|
+
api_version: Optional[str] = ...,
|
1986
|
+
use_ssl: Optional[bool] = ...,
|
1987
|
+
verify: Union[bool, str, None] = ...,
|
1988
|
+
endpoint_url: Optional[str] = ...,
|
1989
|
+
aws_access_key_id: Optional[str] = ...,
|
1990
|
+
aws_secret_access_key: Optional[str] = ...,
|
1991
|
+
aws_session_token: Optional[str] = ...,
|
1992
|
+
config: Optional[Config] = ...,
|
1993
|
+
) -> AuroraDSQLClient: ...
|
1994
|
+
@overload
|
1980
1995
|
def client(
|
1981
1996
|
service_name: Literal["dynamodb"],
|
1982
1997
|
region_name: Optional[str] = ...,
|
@@ -4707,6 +4722,19 @@ def client(
|
|
4707
4722
|
config: Optional[Config] = ...,
|
4708
4723
|
) -> S3OutpostsClient: ...
|
4709
4724
|
@overload
|
4725
|
+
def client(
|
4726
|
+
service_name: Literal["s3tables"],
|
4727
|
+
region_name: Optional[str] = ...,
|
4728
|
+
api_version: Optional[str] = ...,
|
4729
|
+
use_ssl: Optional[bool] = ...,
|
4730
|
+
verify: Union[bool, str, None] = ...,
|
4731
|
+
endpoint_url: Optional[str] = ...,
|
4732
|
+
aws_access_key_id: Optional[str] = ...,
|
4733
|
+
aws_secret_access_key: Optional[str] = ...,
|
4734
|
+
aws_session_token: Optional[str] = ...,
|
4735
|
+
config: Optional[Config] = ...,
|
4736
|
+
) -> S3TablesClient: ...
|
4737
|
+
@overload
|
4710
4738
|
def client(
|
4711
4739
|
service_name: Literal["sagemaker"],
|
4712
4740
|
region_name: Optional[str] = ...,
|
boto3-stubs/session.pyi
CHANGED
@@ -139,6 +139,7 @@ from types_boto3_docdb_elastic.client import DocDBElasticClient
|
|
139
139
|
from types_boto3_drs.client import DrsClient
|
140
140
|
from types_boto3_ds.client import DirectoryServiceClient
|
141
141
|
from types_boto3_ds_data.client import DirectoryServiceDataClient
|
142
|
+
from types_boto3_dsql.client import AuroraDSQLClient
|
142
143
|
from types_boto3_dynamodb.client import DynamoDBClient
|
143
144
|
from types_boto3_dynamodb.service_resource import DynamoDBServiceResource
|
144
145
|
from types_boto3_dynamodbstreams.client import DynamoDBStreamsClient
|
@@ -359,6 +360,7 @@ from types_boto3_s3.client import S3Client
|
|
359
360
|
from types_boto3_s3.service_resource import S3ServiceResource
|
360
361
|
from types_boto3_s3control.client import S3ControlClient
|
361
362
|
from types_boto3_s3outposts.client import S3OutpostsClient
|
363
|
+
from types_boto3_s3tables.client import S3TablesClient
|
362
364
|
from types_boto3_sagemaker.client import SageMakerClient
|
363
365
|
from types_boto3_sagemaker_a2i_runtime.client import AugmentedAIRuntimeClient
|
364
366
|
from types_boto3_sagemaker_edge.client import SagemakerEdgeManagerClient
|
@@ -2115,6 +2117,20 @@ class Session:
|
|
2115
2117
|
config: Optional[Config] = ...,
|
2116
2118
|
) -> DirectoryServiceDataClient: ...
|
2117
2119
|
@overload
|
2120
|
+
def client(
|
2121
|
+
self,
|
2122
|
+
service_name: Literal["dsql"],
|
2123
|
+
region_name: Optional[str] = ...,
|
2124
|
+
api_version: Optional[str] = ...,
|
2125
|
+
use_ssl: Optional[bool] = ...,
|
2126
|
+
verify: Union[bool, str, None] = ...,
|
2127
|
+
endpoint_url: Optional[str] = ...,
|
2128
|
+
aws_access_key_id: Optional[str] = ...,
|
2129
|
+
aws_secret_access_key: Optional[str] = ...,
|
2130
|
+
aws_session_token: Optional[str] = ...,
|
2131
|
+
config: Optional[Config] = ...,
|
2132
|
+
) -> AuroraDSQLClient: ...
|
2133
|
+
@overload
|
2118
2134
|
def client(
|
2119
2135
|
self,
|
2120
2136
|
service_name: Literal["dynamodb"],
|
@@ -5055,6 +5071,20 @@ class Session:
|
|
5055
5071
|
config: Optional[Config] = ...,
|
5056
5072
|
) -> S3OutpostsClient: ...
|
5057
5073
|
@overload
|
5074
|
+
def client(
|
5075
|
+
self,
|
5076
|
+
service_name: Literal["s3tables"],
|
5077
|
+
region_name: Optional[str] = ...,
|
5078
|
+
api_version: Optional[str] = ...,
|
5079
|
+
use_ssl: Optional[bool] = ...,
|
5080
|
+
verify: Union[bool, str, None] = ...,
|
5081
|
+
endpoint_url: Optional[str] = ...,
|
5082
|
+
aws_access_key_id: Optional[str] = ...,
|
5083
|
+
aws_secret_access_key: Optional[str] = ...,
|
5084
|
+
aws_session_token: Optional[str] = ...,
|
5085
|
+
config: Optional[Config] = ...,
|
5086
|
+
) -> S3TablesClient: ...
|
5087
|
+
@overload
|
5058
5088
|
def client(
|
5059
5089
|
self,
|
5060
5090
|
service_name: Literal["sagemaker"],
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: types-boto3
|
3
|
-
Version: 1.35.
|
4
|
-
Summary: Type annotations for boto3 1.35.
|
3
|
+
Version: 1.35.74
|
4
|
+
Summary: Type annotations for boto3 1.35.74 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
|
@@ -153,6 +153,7 @@ Requires-Dist: types-boto3-docdb-elastic<1.36.0,>=1.35.0; extra == "all"
|
|
153
153
|
Requires-Dist: types-boto3-drs<1.36.0,>=1.35.0; extra == "all"
|
154
154
|
Requires-Dist: types-boto3-ds<1.36.0,>=1.35.0; extra == "all"
|
155
155
|
Requires-Dist: types-boto3-ds-data<1.36.0,>=1.35.0; extra == "all"
|
156
|
+
Requires-Dist: types-boto3-dsql<1.36.0,>=1.35.0; extra == "all"
|
156
157
|
Requires-Dist: types-boto3-dynamodb<1.36.0,>=1.35.0; extra == "all"
|
157
158
|
Requires-Dist: types-boto3-dynamodbstreams<1.36.0,>=1.35.0; extra == "all"
|
158
159
|
Requires-Dist: types-boto3-ebs<1.36.0,>=1.35.0; extra == "all"
|
@@ -363,6 +364,7 @@ Requires-Dist: types-boto3-rum<1.36.0,>=1.35.0; extra == "all"
|
|
363
364
|
Requires-Dist: types-boto3-s3<1.36.0,>=1.35.0; extra == "all"
|
364
365
|
Requires-Dist: types-boto3-s3control<1.36.0,>=1.35.0; extra == "all"
|
365
366
|
Requires-Dist: types-boto3-s3outposts<1.36.0,>=1.35.0; extra == "all"
|
367
|
+
Requires-Dist: types-boto3-s3tables<1.36.0,>=1.35.0; extra == "all"
|
366
368
|
Requires-Dist: types-boto3-sagemaker<1.36.0,>=1.35.0; extra == "all"
|
367
369
|
Requires-Dist: types-boto3-sagemaker-a2i-runtime<1.36.0,>=1.35.0; extra == "all"
|
368
370
|
Requires-Dist: types-boto3-sagemaker-edge<1.36.0,>=1.35.0; extra == "all"
|
@@ -445,8 +447,8 @@ Requires-Dist: types-boto3-rds<1.36.0,>=1.35.0; extra == "essential"
|
|
445
447
|
Requires-Dist: types-boto3-s3<1.36.0,>=1.35.0; extra == "essential"
|
446
448
|
Requires-Dist: types-boto3-sqs<1.36.0,>=1.35.0; extra == "essential"
|
447
449
|
Provides-Extra: boto3
|
448
|
-
Requires-Dist: boto3==1.35.
|
449
|
-
Requires-Dist: botocore==1.35.
|
450
|
+
Requires-Dist: boto3==1.35.74; extra == "boto3"
|
451
|
+
Requires-Dist: botocore==1.35.74; extra == "boto3"
|
450
452
|
Provides-Extra: accessanalyzer
|
451
453
|
Requires-Dist: types-boto3-accessanalyzer<1.36.0,>=1.35.0; extra == "accessanalyzer"
|
452
454
|
Provides-Extra: account
|
@@ -681,6 +683,8 @@ Provides-Extra: ds
|
|
681
683
|
Requires-Dist: types-boto3-ds<1.36.0,>=1.35.0; extra == "ds"
|
682
684
|
Provides-Extra: ds-data
|
683
685
|
Requires-Dist: types-boto3-ds-data<1.36.0,>=1.35.0; extra == "ds-data"
|
686
|
+
Provides-Extra: dsql
|
687
|
+
Requires-Dist: types-boto3-dsql<1.36.0,>=1.35.0; extra == "dsql"
|
684
688
|
Provides-Extra: dynamodb
|
685
689
|
Requires-Dist: types-boto3-dynamodb<1.36.0,>=1.35.0; extra == "dynamodb"
|
686
690
|
Provides-Extra: dynamodbstreams
|
@@ -1101,6 +1105,8 @@ Provides-Extra: s3control
|
|
1101
1105
|
Requires-Dist: types-boto3-s3control<1.36.0,>=1.35.0; extra == "s3control"
|
1102
1106
|
Provides-Extra: s3outposts
|
1103
1107
|
Requires-Dist: types-boto3-s3outposts<1.36.0,>=1.35.0; extra == "s3outposts"
|
1108
|
+
Provides-Extra: s3tables
|
1109
|
+
Requires-Dist: types-boto3-s3tables<1.36.0,>=1.35.0; extra == "s3tables"
|
1104
1110
|
Provides-Extra: sagemaker
|
1105
1111
|
Requires-Dist: types-boto3-sagemaker<1.36.0,>=1.35.0; extra == "sagemaker"
|
1106
1112
|
Provides-Extra: sagemaker-a2i-runtime
|
@@ -1259,7 +1265,7 @@ Requires-Dist: types-boto3-xray<1.36.0,>=1.35.0; extra == "xray"
|
|
1259
1265
|
|
1260
1266
|

|
1261
1267
|
|
1262
|
-
Type annotations for [boto3 1.35.
|
1268
|
+
Type annotations for [boto3 1.35.74](https://pypi.org/project/boto3/)
|
1263
1269
|
compatible with [VSCode](https://code.visualstudio.com/),
|
1264
1270
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
1265
1271
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -1633,9 +1639,9 @@ repository.
|
|
1633
1639
|
|
1634
1640
|
## Submodules
|
1635
1641
|
|
1636
|
-
- `types-boto3[full]` - Type annotations for all
|
1642
|
+
- `types-boto3[full]` - Type annotations for all 402 services in one package
|
1637
1643
|
(recommended).
|
1638
|
-
- `types-boto3[all]` - Type annotations for all
|
1644
|
+
- `types-boto3[all]` - Type annotations for all 402 services in separate
|
1639
1645
|
packages.
|
1640
1646
|
- `types-boto3[essential]` - Type annotations for
|
1641
1647
|
[CloudFormation](https://youtype.github.io/types_boto3_docs/types_boto3_cloudformation/),
|
@@ -1992,6 +1998,9 @@ repository.
|
|
1992
1998
|
- `types-boto3[ds-data]` - Type annotations for
|
1993
1999
|
[DirectoryServiceData](https://youtype.github.io/types_boto3_docs/types_boto3_ds_data/)
|
1994
2000
|
service.
|
2001
|
+
- `types-boto3[dsql]` - Type annotations for
|
2002
|
+
[AuroraDSQL](https://youtype.github.io/types_boto3_docs/types_boto3_dsql/)
|
2003
|
+
service.
|
1995
2004
|
- `types-boto3[dynamodb]` - Type annotations for
|
1996
2005
|
[DynamoDB](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/)
|
1997
2006
|
service.
|
@@ -2599,6 +2608,9 @@ repository.
|
|
2599
2608
|
- `types-boto3[s3outposts]` - Type annotations for
|
2600
2609
|
[S3Outposts](https://youtype.github.io/types_boto3_docs/types_boto3_s3outposts/)
|
2601
2610
|
service.
|
2611
|
+
- `types-boto3[s3tables]` - Type annotations for
|
2612
|
+
[S3Tables](https://youtype.github.io/types_boto3_docs/types_boto3_s3tables/)
|
2613
|
+
service.
|
2602
2614
|
- `types-boto3[sagemaker]` - Type annotations for
|
2603
2615
|
[SageMaker](https://youtype.github.io/types_boto3_docs/types_boto3_sagemaker/)
|
2604
2616
|
service.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
boto3-stubs/__init__.pyi,sha256=
|
1
|
+
boto3-stubs/__init__.pyi,sha256=IYqH9UjYKNn6i-n0icQeuHSPnDS2A8VyMoGVuZtR7pg,216679
|
2
2
|
boto3-stubs/compat.pyi,sha256=j3-SBZqCGaoZoXzN6e7fkEQQvUmQ-MpIpcF9FuuUHH0,209
|
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=9--waMRM1_Y2KuHeurHeK7X78NgUtKREPvzn7u3PTP8,244980
|
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=z72QArriCVYH-O15Z5yDGnMX0zo7nCmYhSB2tiIRTeo,4502
|
40
40
|
boto3-stubs/s3/transfer.pyi,sha256=7A4hY7nziEaFM6fFhhneQYgB8aPa_on4i3DhOxh1_7s,2536
|
41
|
-
types_boto3-1.35.
|
42
|
-
types_boto3-1.35.
|
43
|
-
types_boto3-1.35.
|
44
|
-
types_boto3-1.35.
|
45
|
-
types_boto3-1.35.
|
41
|
+
types_boto3-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
42
|
+
types_boto3-1.35.74.dist-info/METADATA,sha256=kNSBYEguC9-KIHcdDDeBCw1IEX6qevedCtY3YGaNsnA,148234
|
43
|
+
types_boto3-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
44
|
+
types_boto3-1.35.74.dist-info/top_level.txt,sha256=uB_lQ39lkJ_VYZ_88DxH_zFptJtIwQ_SzeMpW8tRmT4,12
|
45
|
+
types_boto3-1.35.74.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|