types-boto3 1.0.2__py3-none-any.whl → 1.35.71.post1__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 +5745 -0
- boto3-stubs/compat.pyi +13 -0
- boto3-stubs/crt.pyi +28 -0
- boto3-stubs/docs/__init__.pyi +9 -0
- boto3-stubs/docs/action.pyi +37 -0
- boto3-stubs/docs/attr.pyi +33 -0
- boto3-stubs/docs/base.pyi +19 -0
- boto3-stubs/docs/client.pyi +9 -0
- boto3-stubs/docs/collection.pyi +37 -0
- boto3-stubs/docs/docstring.pyi +18 -0
- boto3-stubs/docs/method.pyi +27 -0
- boto3-stubs/docs/resource.pyi +20 -0
- boto3-stubs/docs/service.pyi +17 -0
- boto3-stubs/docs/subresource.pyi +22 -0
- boto3-stubs/docs/utils.pyi +30 -0
- boto3-stubs/docs/waiter.pyi +33 -0
- boto3-stubs/dynamodb/conditions.pyi +136 -0
- boto3-stubs/dynamodb/table.pyi +39 -0
- boto3-stubs/dynamodb/transform.pyi +55 -0
- boto3-stubs/dynamodb/types.pyi +48 -0
- boto3-stubs/ec2/createtags.pyi +12 -0
- boto3-stubs/ec2/deletetags.pyi +12 -0
- boto3-stubs/exceptions.pyi +46 -0
- boto3-stubs/py.typed +0 -0
- boto3-stubs/resources/__init__.pyi +0 -0
- boto3-stubs/resources/action.pyi +53 -0
- boto3-stubs/resources/base.pyi +40 -0
- boto3-stubs/resources/collection.pyi +54 -0
- boto3-stubs/resources/factory.pyi +23 -0
- boto3-stubs/resources/model.pyi +123 -0
- boto3-stubs/resources/params.pyi +23 -0
- boto3-stubs/resources/response.pyi +50 -0
- boto3-stubs/s3/__init__.pyi +0 -0
- boto3-stubs/s3/constants.pyi +8 -0
- boto3-stubs/s3/inject.pyi +145 -0
- boto3-stubs/s3/transfer.pyi +90 -0
- boto3-stubs/session.pyi +6173 -0
- boto3-stubs/utils.pyi +28 -0
- {types_boto3-1.0.2.dist-info → types_boto3-1.35.71.post1.dist-info}/LICENSE +2 -2
- types_boto3-1.35.71.post1.dist-info/METADATA +2793 -0
- types_boto3-1.35.71.post1.dist-info/RECORD +45 -0
- {types_boto3-1.0.2.dist-info → types_boto3-1.35.71.post1.dist-info}/WHEEL +1 -1
- types_boto3-1.35.71.post1.dist-info/top_level.txt +1 -0
- types_boto3-1.0.2.dist-info/METADATA +0 -255
- types_boto3-1.0.2.dist-info/RECORD +0 -7
- types_boto3-1.0.2.dist-info/top_level.txt +0 -1
- /types_boto3/__init__.py → /boto3-stubs/dynamodb/__init__.pyi +0 -0
- /types_boto3/py.typed → /boto3-stubs/ec2/__init__.pyi +0 -0
boto3-stubs/utils.pyi
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for boto3.utils module.
|
3
|
+
|
4
|
+
Copyright 2024 Vlad Emelianov
|
5
|
+
"""
|
6
|
+
|
7
|
+
from typing import Any
|
8
|
+
|
9
|
+
from botocore.model import ServiceModel
|
10
|
+
from botocore.session import Session
|
11
|
+
from botocore.waiter import Waiter, WaiterModel
|
12
|
+
|
13
|
+
class ServiceContext:
|
14
|
+
def __init__(
|
15
|
+
self,
|
16
|
+
service_name: str,
|
17
|
+
service_model: ServiceModel,
|
18
|
+
service_waiter_model: WaiterModel | None,
|
19
|
+
resource_json_definitions: dict[str, Any],
|
20
|
+
) -> None: ...
|
21
|
+
|
22
|
+
def import_module(name: str) -> Any: ...
|
23
|
+
def lazy_call(full_name: str, **kwargs: Any) -> Any: ...
|
24
|
+
def inject_attribute(class_attributes: dict[str, Any], name: str, value: Any) -> None: ...
|
25
|
+
|
26
|
+
class LazyLoadedWaiterModel:
|
27
|
+
def __init__(self, bc_session: Session, service_name: str, api_version: str) -> None: ...
|
28
|
+
def get_waiter(self, waiter_name: str) -> Waiter: ...
|
@@ -1,6 +1,6 @@
|
|
1
1
|
MIT License
|
2
2
|
|
3
|
-
Copyright (c)
|
3
|
+
Copyright (c) 2024 Vlad Emelianov
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
21
|
+
SOFTWARE.
|