boto3-stubs 1.34.65__py3-none-any.whl → 1.36.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- boto3-stubs/__init__.pyi +5945 -3951
- boto3-stubs/compat.pyi +7 -2
- boto3-stubs/crt.pyi +10 -6
- boto3-stubs/docs/__init__.pyi +6 -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 +16 -5
- boto3-stubs/docs/waiter.pyi +33 -0
- boto3-stubs/dynamodb/conditions.pyi +31 -38
- boto3-stubs/dynamodb/table.pyi +15 -9
- boto3-stubs/dynamodb/transform.pyi +18 -12
- boto3-stubs/dynamodb/types.pyi +22 -33
- boto3-stubs/ec2/createtags.pyi +9 -3
- boto3-stubs/ec2/deletetags.pyi +6 -0
- boto3-stubs/exceptions.pyi +6 -0
- boto3-stubs/resources/action.pyi +12 -6
- boto3-stubs/resources/base.pyi +17 -13
- boto3-stubs/resources/collection.pyi +10 -6
- boto3-stubs/resources/factory.pyi +9 -3
- boto3-stubs/resources/model.pyi +55 -53
- boto3-stubs/resources/params.pyi +12 -6
- boto3-stubs/resources/response.pyi +20 -14
- boto3-stubs/s3/constants.pyi +6 -0
- boto3-stubs/s3/inject.pyi +62 -56
- boto3-stubs/s3/transfer.pyi +23 -17
- boto3-stubs/session.pyi +5971 -3955
- boto3-stubs/utils.pyi +10 -4
- {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/LICENSE +1 -1
- {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/METADATA +1062 -872
- boto3_stubs-1.36.1.dist-info/RECORD +45 -0
- {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/WHEEL +1 -1
- boto3_stubs-1.34.65.dist-info/RECORD +0 -34
- {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/top_level.txt +0 -0
boto3-stubs/utils.pyi
CHANGED
@@ -1,4 +1,10 @@
|
|
1
|
-
|
1
|
+
"""
|
2
|
+
Type annotations for boto3.utils module.
|
3
|
+
|
4
|
+
Copyright 2024 Vlad Emelianov
|
5
|
+
"""
|
6
|
+
|
7
|
+
from typing import Any
|
2
8
|
|
3
9
|
from botocore.model import ServiceModel
|
4
10
|
from botocore.session import Session
|
@@ -9,13 +15,13 @@ class ServiceContext:
|
|
9
15
|
self,
|
10
16
|
service_name: str,
|
11
17
|
service_model: ServiceModel,
|
12
|
-
service_waiter_model:
|
13
|
-
resource_json_definitions:
|
18
|
+
service_waiter_model: WaiterModel | None,
|
19
|
+
resource_json_definitions: dict[str, Any],
|
14
20
|
) -> None: ...
|
15
21
|
|
16
22
|
def import_module(name: str) -> Any: ...
|
17
23
|
def lazy_call(full_name: str, **kwargs: Any) -> Any: ...
|
18
|
-
def inject_attribute(class_attributes:
|
24
|
+
def inject_attribute(class_attributes: dict[str, Any], name: str, value: Any) -> None: ...
|
19
25
|
|
20
26
|
class LazyLoadedWaiterModel:
|
21
27
|
def __init__(self, bc_session: Session, service_name: str, api_version: str) -> None: ...
|