types-boto3 1.0.1__py3-none-any.whl → 1.35.99__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. boto3-stubs/__init__.pyi +7481 -0
  2. boto3-stubs/compat.pyi +13 -0
  3. boto3-stubs/crt.pyi +28 -0
  4. boto3-stubs/docs/__init__.pyi +9 -0
  5. boto3-stubs/docs/action.pyi +37 -0
  6. boto3-stubs/docs/attr.pyi +33 -0
  7. boto3-stubs/docs/base.pyi +19 -0
  8. boto3-stubs/docs/client.pyi +9 -0
  9. boto3-stubs/docs/collection.pyi +37 -0
  10. boto3-stubs/docs/docstring.pyi +18 -0
  11. boto3-stubs/docs/method.pyi +27 -0
  12. boto3-stubs/docs/resource.pyi +20 -0
  13. boto3-stubs/docs/service.pyi +17 -0
  14. boto3-stubs/docs/subresource.pyi +22 -0
  15. boto3-stubs/docs/utils.pyi +30 -0
  16. boto3-stubs/docs/waiter.pyi +33 -0
  17. boto3-stubs/dynamodb/conditions.pyi +136 -0
  18. boto3-stubs/dynamodb/table.pyi +39 -0
  19. boto3-stubs/dynamodb/transform.pyi +55 -0
  20. boto3-stubs/dynamodb/types.pyi +48 -0
  21. boto3-stubs/ec2/createtags.pyi +12 -0
  22. boto3-stubs/ec2/deletetags.pyi +12 -0
  23. boto3-stubs/exceptions.pyi +46 -0
  24. boto3-stubs/resources/__init__.pyi +0 -0
  25. boto3-stubs/resources/action.pyi +53 -0
  26. boto3-stubs/resources/base.pyi +40 -0
  27. boto3-stubs/resources/collection.pyi +54 -0
  28. boto3-stubs/resources/factory.pyi +23 -0
  29. boto3-stubs/resources/model.pyi +123 -0
  30. boto3-stubs/resources/params.pyi +23 -0
  31. boto3-stubs/resources/response.pyi +50 -0
  32. boto3-stubs/s3/__init__.pyi +0 -0
  33. boto3-stubs/s3/constants.pyi +8 -0
  34. boto3-stubs/s3/inject.pyi +145 -0
  35. boto3-stubs/s3/transfer.pyi +90 -0
  36. boto3-stubs/session.pyi +7913 -0
  37. boto3-stubs/utils.pyi +28 -0
  38. {types_boto3-1.0.1.dist-info → types_boto3-1.35.99.dist-info}/LICENSE +2 -2
  39. types_boto3-1.35.99.dist-info/METADATA +2852 -0
  40. types_boto3-1.35.99.dist-info/RECORD +45 -0
  41. {types_boto3-1.0.1.dist-info → types_boto3-1.35.99.dist-info}/WHEEL +1 -1
  42. types_boto3-1.35.99.dist-info/top_level.txt +1 -0
  43. types_boto3-1.0.1.dist-info/METADATA +0 -227
  44. types_boto3-1.0.1.dist-info/RECORD +0 -8
  45. types_boto3-1.0.1.dist-info/top_level.txt +0 -1
  46. /types_boto3/__init__.py → /boto3-stubs/dynamodb/__init__.pyi +0 -0
  47. /types_boto3/py.typed → /boto3-stubs/ec2/__init__.pyi +0 -0
  48. /types_botocore/__init__.py → /boto3-stubs/py.typed +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) 2019 Vlad Emelianov
3
+ Copyright (c) 2025 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.