boto3-stubs 1.35.5__py3-none-any.whl → 1.35.14__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 +16 -2
- boto3-stubs/docs/action.pyi +29 -0
- boto3-stubs/docs/attr.pyi +23 -0
- boto3-stubs/docs/base.pyi +13 -0
- boto3-stubs/docs/client.pyi +3 -0
- boto3-stubs/docs/collection.pyi +29 -0
- boto3-stubs/docs/docstring.pyi +12 -0
- boto3-stubs/docs/method.pyi +19 -0
- boto3-stubs/docs/resource.pyi +11 -0
- boto3-stubs/docs/service.pyi +11 -0
- boto3-stubs/docs/subresource.pyi +14 -0
- boto3-stubs/docs/waiter.pyi +25 -0
- boto3-stubs/resources/base.pyi +3 -2
- boto3-stubs/session.pyi +17 -2
- {boto3_stubs-1.35.5.dist-info → boto3_stubs-1.35.14.dist-info}/METADATA +17 -12
- {boto3_stubs-1.35.5.dist-info → boto3_stubs-1.35.14.dist-info}/RECORD +19 -8
- {boto3_stubs-1.35.5.dist-info → boto3_stubs-1.35.14.dist-info}/WHEEL +1 -1
- {boto3_stubs-1.35.5.dist-info → boto3_stubs-1.35.14.dist-info}/LICENSE +0 -0
- {boto3_stubs-1.35.5.dist-info → boto3_stubs-1.35.14.dist-info}/top_level.txt +0 -0
boto3-stubs/__init__.pyi
CHANGED
@@ -174,13 +174,13 @@ from mypy_boto3_iam.service_resource import IAMServiceResource
|
|
174
174
|
from mypy_boto3_identitystore.client import IdentityStoreClient
|
175
175
|
from mypy_boto3_imagebuilder.client import ImagebuilderClient
|
176
176
|
from mypy_boto3_importexport.client import ImportExportClient
|
177
|
-
from mypy_boto3_inspector2.client import Inspector2Client
|
178
177
|
from mypy_boto3_inspector.client import InspectorClient
|
178
|
+
from mypy_boto3_inspector2.client import Inspector2Client
|
179
179
|
from mypy_boto3_inspector_scan.client import InspectorscanClient
|
180
180
|
from mypy_boto3_internetmonitor.client import CloudWatchInternetMonitorClient
|
181
|
+
from mypy_boto3_iot.client import IoTClient
|
181
182
|
from mypy_boto3_iot1click_devices.client import IoT1ClickDevicesServiceClient
|
182
183
|
from mypy_boto3_iot1click_projects.client import IoT1ClickProjectsClient
|
183
|
-
from mypy_boto3_iot.client import IoTClient
|
184
184
|
from mypy_boto3_iot_data.client import IoTDataPlaneClient
|
185
185
|
from mypy_boto3_iot_jobs_data.client import IoTJobsDataPlaneClient
|
186
186
|
from mypy_boto3_iotanalytics.client import IoTAnalyticsClient
|
@@ -285,6 +285,7 @@ from mypy_boto3_payment_cryptography.client import PaymentCryptographyControlPla
|
|
285
285
|
from mypy_boto3_payment_cryptography_data.client import PaymentCryptographyDataPlaneClient
|
286
286
|
from mypy_boto3_pca_connector_ad.client import PcaConnectorAdClient
|
287
287
|
from mypy_boto3_pca_connector_scep.client import PrivateCAConnectorforSCEPClient
|
288
|
+
from mypy_boto3_pcs.client import ParallelComputingServiceClient
|
288
289
|
from mypy_boto3_personalize.client import PersonalizeClient
|
289
290
|
from mypy_boto3_personalize_events.client import PersonalizeEventsClient
|
290
291
|
from mypy_boto3_personalize_runtime.client import PersonalizeRuntimeClient
|
@@ -3917,6 +3918,19 @@ def client(
|
|
3917
3918
|
config: Optional[Config] = ...,
|
3918
3919
|
) -> PrivateCAConnectorforSCEPClient: ...
|
3919
3920
|
@overload
|
3921
|
+
def client(
|
3922
|
+
service_name: Literal["pcs"],
|
3923
|
+
region_name: Optional[str] = ...,
|
3924
|
+
api_version: Optional[str] = ...,
|
3925
|
+
use_ssl: Optional[bool] = ...,
|
3926
|
+
verify: Union[bool, str, None] = ...,
|
3927
|
+
endpoint_url: Optional[str] = ...,
|
3928
|
+
aws_access_key_id: Optional[str] = ...,
|
3929
|
+
aws_secret_access_key: Optional[str] = ...,
|
3930
|
+
aws_session_token: Optional[str] = ...,
|
3931
|
+
config: Optional[Config] = ...,
|
3932
|
+
) -> ParallelComputingServiceClient: ...
|
3933
|
+
@overload
|
3920
3934
|
def client(
|
3921
3935
|
service_name: Literal["personalize"],
|
3922
3936
|
region_name: Optional[str] = ...,
|
@@ -0,0 +1,29 @@
|
|
1
|
+
from typing import Any, Dict, List
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
|
6
|
+
PUT_DATA_WARNING_MESSAGE: str
|
7
|
+
WARNING_MESSAGES: Dict[str, Dict[str, str]]
|
8
|
+
IGNORE_PARAMS: Dict[str, Dict[str, List[str]]]
|
9
|
+
|
10
|
+
class ActionDocumenter(NestedDocumenter):
|
11
|
+
def document_actions(self, section: Any) -> None: ...
|
12
|
+
|
13
|
+
def document_action(
|
14
|
+
section: Any,
|
15
|
+
resource_name: str,
|
16
|
+
event_emitter: BaseEventHooks,
|
17
|
+
action_model: Any,
|
18
|
+
service_model: Any,
|
19
|
+
include_signature: bool = ...,
|
20
|
+
) -> None: ...
|
21
|
+
def document_load_reload_action(
|
22
|
+
section: Any,
|
23
|
+
action_name: str,
|
24
|
+
resource_name: str,
|
25
|
+
event_emitter: BaseEventHooks,
|
26
|
+
load_model: Any,
|
27
|
+
service_model: Any,
|
28
|
+
include_signature: bool = ...,
|
29
|
+
) -> None: ...
|
@@ -0,0 +1,23 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from botocore.docs.params import ResponseParamsDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
|
6
|
+
class ResourceShapeDocumenter(ResponseParamsDocumenter):
|
7
|
+
EVENT_NAME: str
|
8
|
+
|
9
|
+
def document_attribute(
|
10
|
+
section: Any,
|
11
|
+
service_name: str,
|
12
|
+
resource_name: str,
|
13
|
+
attr_name: str,
|
14
|
+
event_emitter: BaseEventHooks,
|
15
|
+
attr_model: Any,
|
16
|
+
include_signature: bool = True,
|
17
|
+
) -> None: ...
|
18
|
+
def document_identifier(
|
19
|
+
section: Any, resource_name: str, identifier_model: Any, include_signature: bool = ...
|
20
|
+
) -> None: ...
|
21
|
+
def document_reference(
|
22
|
+
section: Any, reference_model: Any, include_signature: bool = ...
|
23
|
+
) -> None: ...
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from typing import Any, Dict
|
2
|
+
|
3
|
+
class BaseDocumenter:
|
4
|
+
member_map: Dict[str, Any]
|
5
|
+
represents_service_resource: Any
|
6
|
+
def __init__(self, resource: Any) -> None: ...
|
7
|
+
@property
|
8
|
+
def class_name(self) -> str: ...
|
9
|
+
|
10
|
+
class NestedDocumenter(BaseDocumenter):
|
11
|
+
def __init__(self, resource: Any, root_docs_path: str) -> None: ...
|
12
|
+
@property
|
13
|
+
def class_name(self) -> str: ...
|
@@ -0,0 +1,29 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
|
6
|
+
class CollectionDocumenter(NestedDocumenter):
|
7
|
+
def document_collections(self, section: Any) -> None: ...
|
8
|
+
|
9
|
+
def document_collection_object(
|
10
|
+
section: Any, collection_model: Any, include_signature: bool = ...
|
11
|
+
) -> None: ...
|
12
|
+
def document_batch_action(
|
13
|
+
section: Any,
|
14
|
+
resource_name: str,
|
15
|
+
event_emitter: BaseEventHooks,
|
16
|
+
batch_action_model: Any,
|
17
|
+
service_model: Any,
|
18
|
+
collection_model: Any,
|
19
|
+
include_signature: bool = ...,
|
20
|
+
) -> None: ...
|
21
|
+
def document_collection_method(
|
22
|
+
section: Any,
|
23
|
+
resource_name: str,
|
24
|
+
action_name: str,
|
25
|
+
event_emitter: BaseEventHooks,
|
26
|
+
collection_model: Any,
|
27
|
+
service_model: Any,
|
28
|
+
include_signature: bool = ...,
|
29
|
+
) -> None: ...
|
@@ -0,0 +1,12 @@
|
|
1
|
+
from botocore.docs.docstring import LazyLoadedDocstring
|
2
|
+
|
3
|
+
class ActionDocstring(LazyLoadedDocstring): ...
|
4
|
+
class LoadReloadDocstring(LazyLoadedDocstring): ...
|
5
|
+
class SubResourceDocstring(LazyLoadedDocstring): ...
|
6
|
+
class AttributeDocstring(LazyLoadedDocstring): ...
|
7
|
+
class IdentifierDocstring(LazyLoadedDocstring): ...
|
8
|
+
class ReferenceDocstring(LazyLoadedDocstring): ...
|
9
|
+
class CollectionDocstring(LazyLoadedDocstring): ...
|
10
|
+
class CollectionMethodDocstring(LazyLoadedDocstring): ...
|
11
|
+
class BatchActionDocstring(LazyLoadedDocstring): ...
|
12
|
+
class ResourceWaiterDocstring(LazyLoadedDocstring): ...
|
@@ -0,0 +1,19 @@
|
|
1
|
+
from typing import Any, Optional
|
2
|
+
|
3
|
+
from botocore.hooks import BaseEventHooks
|
4
|
+
|
5
|
+
def document_model_driven_resource_method(
|
6
|
+
section: Any,
|
7
|
+
method_name: str,
|
8
|
+
operation_model: Any,
|
9
|
+
event_emitter: BaseEventHooks,
|
10
|
+
method_description: Optional[str] = ...,
|
11
|
+
example_prefix: Optional[str] = ...,
|
12
|
+
include_input: Optional[Any] = ...,
|
13
|
+
include_output: Optional[Any] = ...,
|
14
|
+
exclude_input: Optional[Any] = ...,
|
15
|
+
exclude_output: Optional[Any] = ...,
|
16
|
+
document_output: bool = ...,
|
17
|
+
resource_action_model: Optional[Any] = ...,
|
18
|
+
include_signature: bool = ...,
|
19
|
+
) -> None: ...
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import BaseDocumenter
|
4
|
+
|
5
|
+
class ResourceDocumenter(BaseDocumenter):
|
6
|
+
def __init__(self, resource: Any, botocore_session: Any, root_docs_path: str) -> None: ...
|
7
|
+
def document_resource(self, section: Any) -> None: ...
|
8
|
+
|
9
|
+
class ServiceResourceDocumenter(ResourceDocumenter):
|
10
|
+
@property
|
11
|
+
def class_name(self) -> str: ...
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from typing import Any, List
|
2
|
+
|
3
|
+
from botocore.docs.service import ServiceDocumenter as BaseServiceDocumenter
|
4
|
+
|
5
|
+
class ServiceDocumenter(BaseServiceDocumenter):
|
6
|
+
EXAMPLE_PATH: str
|
7
|
+
sections: List[str]
|
8
|
+
def __init__(self, service_name: str, session: Any, root_docs_path: str) -> None: ...
|
9
|
+
def document_service(self) -> bytes: ...
|
10
|
+
def client_api(self, section: Any) -> None: ...
|
11
|
+
def resource_section(self, section: Any) -> None: ...
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
|
5
|
+
class SubResourceDocumenter(NestedDocumenter):
|
6
|
+
def document_sub_resources(self, section: Any) -> None: ...
|
7
|
+
|
8
|
+
def document_sub_resource(
|
9
|
+
section: Any,
|
10
|
+
resource_name: str,
|
11
|
+
sub_resource_model: Any,
|
12
|
+
service_model: Any,
|
13
|
+
include_signature: bool = ...,
|
14
|
+
) -> None: ...
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
from botocore.model import ServiceModel
|
6
|
+
from botocore.waiter import WaiterModel
|
7
|
+
|
8
|
+
class WaiterResourceDocumenter(NestedDocumenter):
|
9
|
+
def __init__(
|
10
|
+
self,
|
11
|
+
resource: Any,
|
12
|
+
service_waiter_model: WaiterModel,
|
13
|
+
root_docs_path: str,
|
14
|
+
) -> None: ...
|
15
|
+
def document_resource_waiters(self, section: Any) -> None: ...
|
16
|
+
|
17
|
+
def document_resource_waiter(
|
18
|
+
section: Any,
|
19
|
+
resource_name: str,
|
20
|
+
event_emitter: BaseEventHooks,
|
21
|
+
service_model: ServiceModel,
|
22
|
+
resource_waiter_model: Any,
|
23
|
+
service_waiter_model: WaiterModel,
|
24
|
+
include_signature: bool = ...,
|
25
|
+
) -> None: ...
|
boto3-stubs/resources/base.pyi
CHANGED
@@ -28,9 +28,10 @@ class ResourceMeta:
|
|
28
28
|
def copy(self: _ResourceMeta) -> _ResourceMeta: ...
|
29
29
|
|
30
30
|
class ServiceResource:
|
31
|
-
meta:
|
31
|
+
meta: None # type: ignore
|
32
32
|
|
33
|
-
def __init__(self, *args: Any, client: Optional[BaseClient] = ..., **kwargs: Any) -> None:
|
33
|
+
def __init__(self, *args: Any, client: Optional[BaseClient] = ..., **kwargs: Any) -> None:
|
34
|
+
self.meta: ResourceMeta
|
34
35
|
def __repr__(self) -> str: ...
|
35
36
|
def __eq__(self, other: Any) -> bool: ...
|
36
37
|
def __hash__(self) -> int: ...
|
boto3-stubs/session.pyi
CHANGED
@@ -180,13 +180,13 @@ from mypy_boto3_iam.service_resource import IAMServiceResource
|
|
180
180
|
from mypy_boto3_identitystore.client import IdentityStoreClient
|
181
181
|
from mypy_boto3_imagebuilder.client import ImagebuilderClient
|
182
182
|
from mypy_boto3_importexport.client import ImportExportClient
|
183
|
-
from mypy_boto3_inspector2.client import Inspector2Client
|
184
183
|
from mypy_boto3_inspector.client import InspectorClient
|
184
|
+
from mypy_boto3_inspector2.client import Inspector2Client
|
185
185
|
from mypy_boto3_inspector_scan.client import InspectorscanClient
|
186
186
|
from mypy_boto3_internetmonitor.client import CloudWatchInternetMonitorClient
|
187
|
+
from mypy_boto3_iot.client import IoTClient
|
187
188
|
from mypy_boto3_iot1click_devices.client import IoT1ClickDevicesServiceClient
|
188
189
|
from mypy_boto3_iot1click_projects.client import IoT1ClickProjectsClient
|
189
|
-
from mypy_boto3_iot.client import IoTClient
|
190
190
|
from mypy_boto3_iot_data.client import IoTDataPlaneClient
|
191
191
|
from mypy_boto3_iot_jobs_data.client import IoTJobsDataPlaneClient
|
192
192
|
from mypy_boto3_iotanalytics.client import IoTAnalyticsClient
|
@@ -291,6 +291,7 @@ from mypy_boto3_payment_cryptography.client import PaymentCryptographyControlPla
|
|
291
291
|
from mypy_boto3_payment_cryptography_data.client import PaymentCryptographyDataPlaneClient
|
292
292
|
from mypy_boto3_pca_connector_ad.client import PcaConnectorAdClient
|
293
293
|
from mypy_boto3_pca_connector_scep.client import PrivateCAConnectorforSCEPClient
|
294
|
+
from mypy_boto3_pcs.client import ParallelComputingServiceClient
|
294
295
|
from mypy_boto3_personalize.client import PersonalizeClient
|
295
296
|
from mypy_boto3_personalize_events.client import PersonalizeEventsClient
|
296
297
|
from mypy_boto3_personalize_runtime.client import PersonalizeRuntimeClient
|
@@ -4206,6 +4207,20 @@ class Session:
|
|
4206
4207
|
config: Optional[Config] = ...,
|
4207
4208
|
) -> PrivateCAConnectorforSCEPClient: ...
|
4208
4209
|
@overload
|
4210
|
+
def client(
|
4211
|
+
self,
|
4212
|
+
service_name: Literal["pcs"],
|
4213
|
+
region_name: Optional[str] = ...,
|
4214
|
+
api_version: Optional[str] = ...,
|
4215
|
+
use_ssl: Optional[bool] = ...,
|
4216
|
+
verify: Union[bool, str, None] = ...,
|
4217
|
+
endpoint_url: Optional[str] = ...,
|
4218
|
+
aws_access_key_id: Optional[str] = ...,
|
4219
|
+
aws_secret_access_key: Optional[str] = ...,
|
4220
|
+
aws_session_token: Optional[str] = ...,
|
4221
|
+
config: Optional[Config] = ...,
|
4222
|
+
) -> ParallelComputingServiceClient: ...
|
4223
|
+
@overload
|
4209
4224
|
def client(
|
4210
4225
|
self,
|
4211
4226
|
service_name: Literal["personalize"],
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: boto3-stubs
|
3
|
-
Version: 1.35.
|
4
|
-
Summary: Type annotations for boto3 1.35.
|
3
|
+
Version: 1.35.14
|
4
|
+
Summary: Type annotations for boto3 1.35.14 generated with mypy-boto3-builder 8.0.1
|
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
|
@@ -309,6 +309,7 @@ Requires-Dist: mypy-boto3-payment-cryptography<1.36.0,>=1.35.0; extra == "all"
|
|
309
309
|
Requires-Dist: mypy-boto3-payment-cryptography-data<1.36.0,>=1.35.0; extra == "all"
|
310
310
|
Requires-Dist: mypy-boto3-pca-connector-ad<1.36.0,>=1.35.0; extra == "all"
|
311
311
|
Requires-Dist: mypy-boto3-pca-connector-scep<1.36.0,>=1.35.0; extra == "all"
|
312
|
+
Requires-Dist: mypy-boto3-pcs<1.36.0,>=1.35.0; extra == "all"
|
312
313
|
Requires-Dist: mypy-boto3-personalize<1.36.0,>=1.35.0; extra == "all"
|
313
314
|
Requires-Dist: mypy-boto3-personalize-events<1.36.0,>=1.35.0; extra == "all"
|
314
315
|
Requires-Dist: mypy-boto3-personalize-runtime<1.36.0,>=1.35.0; extra == "all"
|
@@ -501,8 +502,8 @@ Requires-Dist: mypy-boto3-bedrock-runtime<1.36.0,>=1.35.0; extra == "bedrock-run
|
|
501
502
|
Provides-Extra: billingconductor
|
502
503
|
Requires-Dist: mypy-boto3-billingconductor<1.36.0,>=1.35.0; extra == "billingconductor"
|
503
504
|
Provides-Extra: boto3
|
504
|
-
Requires-Dist: boto3==1.35.
|
505
|
-
Requires-Dist: botocore==1.35.
|
505
|
+
Requires-Dist: boto3==1.35.14; extra == "boto3"
|
506
|
+
Requires-Dist: botocore==1.35.14; extra == "boto3"
|
506
507
|
Provides-Extra: braket
|
507
508
|
Requires-Dist: mypy-boto3-braket<1.36.0,>=1.35.0; extra == "braket"
|
508
509
|
Provides-Extra: budgets
|
@@ -965,6 +966,8 @@ Provides-Extra: pca-connector-ad
|
|
965
966
|
Requires-Dist: mypy-boto3-pca-connector-ad<1.36.0,>=1.35.0; extra == "pca-connector-ad"
|
966
967
|
Provides-Extra: pca-connector-scep
|
967
968
|
Requires-Dist: mypy-boto3-pca-connector-scep<1.36.0,>=1.35.0; extra == "pca-connector-scep"
|
969
|
+
Provides-Extra: pcs
|
970
|
+
Requires-Dist: mypy-boto3-pcs<1.36.0,>=1.35.0; extra == "pcs"
|
968
971
|
Provides-Extra: personalize
|
969
972
|
Requires-Dist: mypy-boto3-personalize<1.36.0,>=1.35.0; extra == "personalize"
|
970
973
|
Provides-Extra: personalize-events
|
@@ -1212,7 +1215,7 @@ Requires-Dist: mypy-boto3-xray<1.36.0,>=1.35.0; extra == "xray"
|
|
1212
1215
|

|
1213
1216
|
|
1214
1217
|
Type annotations for
|
1215
|
-
[boto3 1.35.
|
1218
|
+
[boto3 1.35.14](https://boto3.amazonaws.com/v1/documentation/api/1.35.14/index.html)
|
1216
1219
|
compatible with [VSCode](https://code.visualstudio.com/),
|
1217
1220
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
1218
1221
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -1221,7 +1224,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
1221
1224
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
1222
1225
|
|
1223
1226
|
Generated by
|
1224
|
-
[mypy-boto3-builder
|
1227
|
+
[mypy-boto3-builder 8.0.1](https://github.com/youtype/mypy_boto3_builder).
|
1225
1228
|
|
1226
1229
|
More information can be found in
|
1227
1230
|
[boto3-stubs docs](https://youtype.github.io/boto3_stubs_docs/).
|
@@ -1293,7 +1296,7 @@ python -m pip install 'boto3-stubs[boto3]'
|
|
1293
1296
|
|
1294
1297
|
|
1295
1298
|
# or install all-in-one annotations for all services at once
|
1296
|
-
python -m pip install
|
1299
|
+
python -m pip install boto3-stubs-full
|
1297
1300
|
|
1298
1301
|
|
1299
1302
|
|
@@ -1436,7 +1439,7 @@ should work.
|
|
1436
1439
|
- Install `boto3-stubs[essential]` in your environment:
|
1437
1440
|
|
1438
1441
|
```bash
|
1439
|
-
python -m pip install 'boto3-stubs[essential]'
|
1442
|
+
python -m pip install 'boto3-stubs[essential]'
|
1440
1443
|
```
|
1441
1444
|
|
1442
1445
|
Type checking should now work. No explicit type annotations required, write
|
@@ -1453,7 +1456,7 @@ your `boto3` code as usual.
|
|
1453
1456
|
python -m pip install 'boto3-stubs[essential]'
|
1454
1457
|
```
|
1455
1458
|
|
1456
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
1459
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
1457
1460
|
|
1458
1461
|
Type checking should now work. No explicit type annotations required, write
|
1459
1462
|
your `boto3` code as usual.
|
@@ -1524,8 +1527,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
1524
1527
|
annotations extracted from `botocore` schemas.
|
1525
1528
|
- Type annotations include up-to-date documentation.
|
1526
1529
|
- Link to documentation is provided for every method.
|
1527
|
-
- Code is processed by [
|
1528
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
1530
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
1529
1531
|
|
1530
1532
|
<a id="what's-new"></a>
|
1531
1533
|
|
@@ -1599,7 +1601,7 @@ repository.
|
|
1599
1601
|
|
1600
1602
|
## Submodules
|
1601
1603
|
|
1602
|
-
- `boto3-stubs[all]` - Type annotations for all
|
1604
|
+
- `boto3-stubs[all]` - Type annotations for all 386 services.
|
1603
1605
|
- `boto3-stubs[essential]` - Type annotations for
|
1604
1606
|
[CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/),
|
1605
1607
|
[DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/),
|
@@ -2390,6 +2392,9 @@ repository.
|
|
2390
2392
|
- `boto3-stubs[pca-connector-scep]` - Type annotations for
|
2391
2393
|
[PrivateCAConnectorforSCEP](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pca_connector_scep/)
|
2392
2394
|
service.
|
2395
|
+
- `boto3-stubs[pcs]` - Type annotations for
|
2396
|
+
[ParallelComputingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pcs/)
|
2397
|
+
service.
|
2393
2398
|
- `boto3-stubs[personalize]` - Type annotations for
|
2394
2399
|
[Personalize](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize/)
|
2395
2400
|
service.
|
@@ -1,12 +1,23 @@
|
|
1
|
-
boto3-stubs/__init__.pyi,sha256=
|
1
|
+
boto3-stubs/__init__.pyi,sha256=k8_5VLZjIWpsINOC4P4EmaLKjR8xs2Ng148czo9oIps,207450
|
2
2
|
boto3-stubs/compat.pyi,sha256=xa8V0D9EklCqKSzPAsOCRxSFn9o7ZsabgMB2NbezRU8,151
|
3
3
|
boto3-stubs/crt.pyi,sha256=I9HtByOVDaxLR8UI0IVRgEnd09-9nP7cz6aLchQGJy4,839
|
4
4
|
boto3-stubs/exceptions.pyi,sha256=5RiiwvZt6WJg4NmdBqiw_F3edX-hZCPft50s3YRd_Gg,1253
|
5
5
|
boto3-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
boto3-stubs/session.pyi,sha256=
|
6
|
+
boto3-stubs/session.pyi,sha256=94LLVmmKMLSz9n9sxvLcfEQo4z3T01DG1PqGvFIpWyk,234696
|
7
7
|
boto3-stubs/utils.pyi,sha256=aFM7Aoxm8HuplG367JDYs5-zZ_YQpKr7ONPs1x7f15Y,779
|
8
8
|
boto3-stubs/docs/__init__.pyi,sha256=wGWFUev9EDG-4NT4l-JUjzFUsypBQf2kwFBfdb1uJeU,99
|
9
|
+
boto3-stubs/docs/action.pyi,sha256=wdKrhAkNLcLZXu8F5vDvUPf7Kmiu4Evm5WgqvjQYeRc,769
|
10
|
+
boto3-stubs/docs/attr.pyi,sha256=dzWqyUDFjoExl-4d48mBM2-qDJZoUBRxPVTgHzfx1N0,659
|
11
|
+
boto3-stubs/docs/base.pyi,sha256=hYdyNgO31OXqtBAH3EqVaW1lxHHnaW64tAYOY6mnJoM,386
|
12
|
+
boto3-stubs/docs/client.pyi,sha256=LjD603Ya-woOwSpPDCIuR18Ncybf-7TpX_4USmwvpbg,102
|
13
|
+
boto3-stubs/docs/collection.pyi,sha256=6H4MB6Q68d5xx2k9SNb2DtHDnLc9e4tiDiENLJihx00,805
|
14
|
+
boto3-stubs/docs/docstring.pyi,sha256=B4SvarMezHVbItbOMYAWRhQf0SYwSgGZn8PD9ncWZ0w,583
|
15
|
+
boto3-stubs/docs/method.pyi,sha256=ah9NITaOpT6_YVqWk6NrA-yRLDeOwbvXsGJiTjGE820,600
|
16
|
+
boto3-stubs/docs/resource.pyi,sha256=oMtwG67C8adnP8R3v4fJ1gaoxvq6zif_yFIryfAc6vw,369
|
17
|
+
boto3-stubs/docs/service.pyi,sha256=0tqWb6Lbn29GXUesvXWllEQvP5VyAjPRWGwbjkmCyW0,447
|
18
|
+
boto3-stubs/docs/subresource.pyi,sha256=1L3iAJI-Rdfb_4sauh55VuUYxSIdqb4T7m7OwcRyVrQ,354
|
9
19
|
boto3-stubs/docs/utils.pyi,sha256=-TPT9ceptcx5Fx7PHeBt6u1jV-PuAudb5VYCtqf7SYg,934
|
20
|
+
boto3-stubs/docs/waiter.pyi,sha256=0JCr_T6Im6CKEDGW3VcEFL705BdkdSdRuYuhc2Rp4zM,717
|
10
21
|
boto3-stubs/dynamodb/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
22
|
boto3-stubs/dynamodb/conditions.pyi,sha256=J5gkps9ttGUMc8jqBJR2hdDBtWhfjtHqn_JtGMkZDpA,5463
|
12
23
|
boto3-stubs/dynamodb/table.pyi,sha256=V234sOSuGjpO56ry3-AVRM1ivhs4CDfTB4ebxVgL0AI,995
|
@@ -17,7 +28,7 @@ boto3-stubs/ec2/createtags.pyi,sha256=CcbwkLP_0j8wPMfNft72-_Sqd1-0SXjbvfkACxtpS3
|
|
17
28
|
boto3-stubs/ec2/deletetags.pyi,sha256=1jRFLP0hH_JMRW7wKf1YyH2yGS3MhclEZ999Fy5qJzs,204
|
18
29
|
boto3-stubs/resources/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
30
|
boto3-stubs/resources/action.pyi,sha256=Y3gDvwA1gj7MoejxnRrQYXy5znLHRIwWRym-3XPvK5o,1546
|
20
|
-
boto3-stubs/resources/base.pyi,sha256=
|
31
|
+
boto3-stubs/resources/base.pyi,sha256=myG7NBmm5Y5azjTUdpwziSozw79e0Ai-lyv8IoyI2Qg,1115
|
21
32
|
boto3-stubs/resources/collection.pyi,sha256=MurweTycZ2fdOO7PSgRalyKb_zz-GgKi3D2A0-rc_To,1922
|
22
33
|
boto3-stubs/resources/factory.pyi,sha256=9A0RHo8kRPE8xuzDCSHkxJCAsKk_oHmDiXwVj-i9_fk,496
|
23
34
|
boto3-stubs/resources/model.pyi,sha256=zopYjuENDzeUDsisNBrZlc2zc8_EIhVJmuL7FSd9wqk,3703
|
@@ -27,8 +38,8 @@ boto3-stubs/s3/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
38
|
boto3-stubs/s3/constants.pyi,sha256=9MYiVx6cRf9tcrxvpy0Ubi4HGyrmUj19WQA54lmfoR8,75
|
28
39
|
boto3-stubs/s3/inject.pyi,sha256=UxVi6tYfEYdvc8cKldt9StTEGFHWTdd-867frSfxF9w,4577
|
29
40
|
boto3-stubs/s3/transfer.pyi,sha256=zQ7pQpsCWWo9cdYrOoiuKyiLz_t1sG0_OOznd5DETTo,2508
|
30
|
-
boto3_stubs-1.35.
|
31
|
-
boto3_stubs-1.35.
|
32
|
-
boto3_stubs-1.35.
|
33
|
-
boto3_stubs-1.35.
|
34
|
-
boto3_stubs-1.35.
|
41
|
+
boto3_stubs-1.35.14.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
42
|
+
boto3_stubs-1.35.14.dist-info/METADATA,sha256=Sl7XNeQLA2AdEg-rbwRMOg6UMduQWuKoyslMbspWkeE,141135
|
43
|
+
boto3_stubs-1.35.14.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
44
|
+
boto3_stubs-1.35.14.dist-info/top_level.txt,sha256=uB_lQ39lkJ_VYZ_88DxH_zFptJtIwQ_SzeMpW8tRmT4,12
|
45
|
+
boto3_stubs-1.35.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|