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.
Files changed (41) hide show
  1. boto3-stubs/__init__.pyi +5945 -3951
  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 +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 +16 -5
  16. boto3-stubs/docs/waiter.pyi +33 -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 +17 -13
  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 +5971 -3955
  35. boto3-stubs/utils.pyi +10 -4
  36. {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/LICENSE +1 -1
  37. {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/METADATA +1062 -872
  38. boto3_stubs-1.36.1.dist-info/RECORD +45 -0
  39. {boto3_stubs-1.34.65.dist-info → boto3_stubs-1.36.1.dist-info}/WHEEL +1 -1
  40. boto3_stubs-1.34.65.dist-info/RECORD +0 -34
  41. {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
- 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: ...
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 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