boto3-stubs 1.35.36__py3-none-any.whl → 1.35.90__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. boto3-stubs/__init__.pyi +5905 -3987
  2. boto3-stubs/compat.pyi +7 -2
  3. boto3-stubs/crt.pyi +10 -6
  4. boto3-stubs/docs/__init__.pyi +6 -0
  5. boto3-stubs/docs/action.pyi +7 -3
  6. boto3-stubs/docs/attr.pyi +6 -0
  7. boto3-stubs/docs/base.pyi +8 -2
  8. boto3-stubs/docs/client.pyi +6 -0
  9. boto3-stubs/docs/collection.pyi +6 -0
  10. boto3-stubs/docs/docstring.pyi +6 -0
  11. boto3-stubs/docs/method.pyi +14 -8
  12. boto3-stubs/docs/resource.pyi +6 -0
  13. boto3-stubs/docs/service.pyi +6 -2
  14. boto3-stubs/docs/subresource.pyi +6 -0
  15. boto3-stubs/docs/utils.pyi +10 -4
  16. boto3-stubs/docs/waiter.pyi +6 -0
  17. boto3-stubs/dynamodb/conditions.pyi +31 -38
  18. boto3-stubs/dynamodb/table.pyi +15 -9
  19. boto3-stubs/dynamodb/transform.pyi +18 -12
  20. boto3-stubs/dynamodb/types.pyi +22 -33
  21. boto3-stubs/ec2/createtags.pyi +9 -3
  22. boto3-stubs/ec2/deletetags.pyi +6 -0
  23. boto3-stubs/exceptions.pyi +6 -0
  24. boto3-stubs/resources/action.pyi +12 -6
  25. boto3-stubs/resources/base.pyi +16 -12
  26. boto3-stubs/resources/collection.pyi +10 -6
  27. boto3-stubs/resources/factory.pyi +9 -3
  28. boto3-stubs/resources/model.pyi +55 -53
  29. boto3-stubs/resources/params.pyi +12 -6
  30. boto3-stubs/resources/response.pyi +20 -14
  31. boto3-stubs/s3/constants.pyi +6 -0
  32. boto3-stubs/s3/inject.pyi +62 -56
  33. boto3-stubs/s3/transfer.pyi +23 -17
  34. boto3-stubs/session.pyi +5920 -3986
  35. boto3-stubs/utils.pyi +10 -4
  36. {boto3_stubs-1.35.36.dist-info → boto3_stubs-1.35.90.dist-info}/METADATA +213 -81
  37. boto3_stubs-1.35.90.dist-info/RECORD +45 -0
  38. {boto3_stubs-1.35.36.dist-info → boto3_stubs-1.35.90.dist-info}/WHEEL +1 -1
  39. boto3_stubs-1.35.36.dist-info/RECORD +0 -45
  40. {boto3_stubs-1.35.36.dist-info → boto3_stubs-1.35.90.dist-info}/LICENSE +0 -0
  41. {boto3_stubs-1.35.36.dist-info → boto3_stubs-1.35.90.dist-info}/top_level.txt +0 -0
boto3-stubs/utils.pyi CHANGED
@@ -1,4 +1,10 @@
1
- from typing import Any, Dict, Optional
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: Optional[WaiterModel],
13
- resource_json_definitions: Dict[str, Any],
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: Dict[str, Any], name: str, value: Any) -> None: ...
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: ...