boto3-stubs 1.35.10__py3-none-any.whl → 1.35.12__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 +2 -2
- boto3-stubs/docs/action.pyi +29 -0
- boto3-stubs/docs/attr.pyi +23 -0
- boto3-stubs/docs/base.pyi +13 -0
- boto3-stubs/docs/client.pyi +3 -0
- boto3-stubs/docs/collection.pyi +29 -0
- boto3-stubs/docs/docstring.pyi +12 -0
- boto3-stubs/docs/method.pyi +19 -0
- boto3-stubs/docs/resource.pyi +11 -0
- boto3-stubs/docs/service.pyi +11 -0
- boto3-stubs/docs/subresource.pyi +14 -0
- boto3-stubs/docs/waiter.pyi +25 -0
- boto3-stubs/resources/base.pyi +3 -2
- boto3-stubs/session.pyi +2 -2
- {boto3_stubs-1.35.10.dist-info → boto3_stubs-1.35.12.dist-info}/METADATA +10 -11
- {boto3_stubs-1.35.10.dist-info → boto3_stubs-1.35.12.dist-info}/RECORD +19 -8
- {boto3_stubs-1.35.10.dist-info → boto3_stubs-1.35.12.dist-info}/WHEEL +1 -1
- {boto3_stubs-1.35.10.dist-info → boto3_stubs-1.35.12.dist-info}/LICENSE +0 -0
- {boto3_stubs-1.35.10.dist-info → boto3_stubs-1.35.12.dist-info}/top_level.txt +0 -0
boto3-stubs/__init__.pyi
CHANGED
@@ -174,13 +174,13 @@ from mypy_boto3_iam.service_resource import IAMServiceResource
|
|
174
174
|
from mypy_boto3_identitystore.client import IdentityStoreClient
|
175
175
|
from mypy_boto3_imagebuilder.client import ImagebuilderClient
|
176
176
|
from mypy_boto3_importexport.client import ImportExportClient
|
177
|
-
from mypy_boto3_inspector2.client import Inspector2Client
|
178
177
|
from mypy_boto3_inspector.client import InspectorClient
|
178
|
+
from mypy_boto3_inspector2.client import Inspector2Client
|
179
179
|
from mypy_boto3_inspector_scan.client import InspectorscanClient
|
180
180
|
from mypy_boto3_internetmonitor.client import CloudWatchInternetMonitorClient
|
181
|
+
from mypy_boto3_iot.client import IoTClient
|
181
182
|
from mypy_boto3_iot1click_devices.client import IoT1ClickDevicesServiceClient
|
182
183
|
from mypy_boto3_iot1click_projects.client import IoT1ClickProjectsClient
|
183
|
-
from mypy_boto3_iot.client import IoTClient
|
184
184
|
from mypy_boto3_iot_data.client import IoTDataPlaneClient
|
185
185
|
from mypy_boto3_iot_jobs_data.client import IoTJobsDataPlaneClient
|
186
186
|
from mypy_boto3_iotanalytics.client import IoTAnalyticsClient
|
@@ -0,0 +1,29 @@
|
|
1
|
+
from typing import Any, Dict, List
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
|
6
|
+
PUT_DATA_WARNING_MESSAGE: str
|
7
|
+
WARNING_MESSAGES: Dict[str, Dict[str, str]]
|
8
|
+
IGNORE_PARAMS: Dict[str, Dict[str, List[str]]]
|
9
|
+
|
10
|
+
class ActionDocumenter(NestedDocumenter):
|
11
|
+
def document_actions(self, section: Any) -> None: ...
|
12
|
+
|
13
|
+
def document_action(
|
14
|
+
section: Any,
|
15
|
+
resource_name: str,
|
16
|
+
event_emitter: BaseEventHooks,
|
17
|
+
action_model: Any,
|
18
|
+
service_model: Any,
|
19
|
+
include_signature: bool = ...,
|
20
|
+
) -> None: ...
|
21
|
+
def document_load_reload_action(
|
22
|
+
section: Any,
|
23
|
+
action_name: str,
|
24
|
+
resource_name: str,
|
25
|
+
event_emitter: BaseEventHooks,
|
26
|
+
load_model: Any,
|
27
|
+
service_model: Any,
|
28
|
+
include_signature: bool = ...,
|
29
|
+
) -> None: ...
|
@@ -0,0 +1,23 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from botocore.docs.params import ResponseParamsDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
|
6
|
+
class ResourceShapeDocumenter(ResponseParamsDocumenter):
|
7
|
+
EVENT_NAME: str
|
8
|
+
|
9
|
+
def document_attribute(
|
10
|
+
section: Any,
|
11
|
+
service_name: str,
|
12
|
+
resource_name: str,
|
13
|
+
attr_name: str,
|
14
|
+
event_emitter: BaseEventHooks,
|
15
|
+
attr_model: Any,
|
16
|
+
include_signature: bool = True,
|
17
|
+
) -> None: ...
|
18
|
+
def document_identifier(
|
19
|
+
section: Any, resource_name: str, identifier_model: Any, include_signature: bool = ...
|
20
|
+
) -> None: ...
|
21
|
+
def document_reference(
|
22
|
+
section: Any, reference_model: Any, include_signature: bool = ...
|
23
|
+
) -> None: ...
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from typing import Any, Dict
|
2
|
+
|
3
|
+
class BaseDocumenter:
|
4
|
+
member_map: Dict[str, Any]
|
5
|
+
represents_service_resource: Any
|
6
|
+
def __init__(self, resource: Any) -> None: ...
|
7
|
+
@property
|
8
|
+
def class_name(self) -> str: ...
|
9
|
+
|
10
|
+
class NestedDocumenter(BaseDocumenter):
|
11
|
+
def __init__(self, resource: Any, root_docs_path: str) -> None: ...
|
12
|
+
@property
|
13
|
+
def class_name(self) -> str: ...
|
@@ -0,0 +1,29 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
|
6
|
+
class CollectionDocumenter(NestedDocumenter):
|
7
|
+
def document_collections(self, section: Any) -> None: ...
|
8
|
+
|
9
|
+
def document_collection_object(
|
10
|
+
section: Any, collection_model: Any, include_signature: bool = ...
|
11
|
+
) -> None: ...
|
12
|
+
def document_batch_action(
|
13
|
+
section: Any,
|
14
|
+
resource_name: str,
|
15
|
+
event_emitter: BaseEventHooks,
|
16
|
+
batch_action_model: Any,
|
17
|
+
service_model: Any,
|
18
|
+
collection_model: Any,
|
19
|
+
include_signature: bool = ...,
|
20
|
+
) -> None: ...
|
21
|
+
def document_collection_method(
|
22
|
+
section: Any,
|
23
|
+
resource_name: str,
|
24
|
+
action_name: str,
|
25
|
+
event_emitter: BaseEventHooks,
|
26
|
+
collection_model: Any,
|
27
|
+
service_model: Any,
|
28
|
+
include_signature: bool = ...,
|
29
|
+
) -> None: ...
|
@@ -0,0 +1,12 @@
|
|
1
|
+
from botocore.docs.docstring import LazyLoadedDocstring
|
2
|
+
|
3
|
+
class ActionDocstring(LazyLoadedDocstring): ...
|
4
|
+
class LoadReloadDocstring(LazyLoadedDocstring): ...
|
5
|
+
class SubResourceDocstring(LazyLoadedDocstring): ...
|
6
|
+
class AttributeDocstring(LazyLoadedDocstring): ...
|
7
|
+
class IdentifierDocstring(LazyLoadedDocstring): ...
|
8
|
+
class ReferenceDocstring(LazyLoadedDocstring): ...
|
9
|
+
class CollectionDocstring(LazyLoadedDocstring): ...
|
10
|
+
class CollectionMethodDocstring(LazyLoadedDocstring): ...
|
11
|
+
class BatchActionDocstring(LazyLoadedDocstring): ...
|
12
|
+
class ResourceWaiterDocstring(LazyLoadedDocstring): ...
|
@@ -0,0 +1,19 @@
|
|
1
|
+
from typing import Any, Optional
|
2
|
+
|
3
|
+
from botocore.hooks import BaseEventHooks
|
4
|
+
|
5
|
+
def document_model_driven_resource_method(
|
6
|
+
section: Any,
|
7
|
+
method_name: str,
|
8
|
+
operation_model: Any,
|
9
|
+
event_emitter: BaseEventHooks,
|
10
|
+
method_description: Optional[str] = ...,
|
11
|
+
example_prefix: Optional[str] = ...,
|
12
|
+
include_input: Optional[Any] = ...,
|
13
|
+
include_output: Optional[Any] = ...,
|
14
|
+
exclude_input: Optional[Any] = ...,
|
15
|
+
exclude_output: Optional[Any] = ...,
|
16
|
+
document_output: bool = ...,
|
17
|
+
resource_action_model: Optional[Any] = ...,
|
18
|
+
include_signature: bool = ...,
|
19
|
+
) -> None: ...
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import BaseDocumenter
|
4
|
+
|
5
|
+
class ResourceDocumenter(BaseDocumenter):
|
6
|
+
def __init__(self, resource: Any, botocore_session: Any, root_docs_path: str) -> None: ...
|
7
|
+
def document_resource(self, section: Any) -> None: ...
|
8
|
+
|
9
|
+
class ServiceResourceDocumenter(ResourceDocumenter):
|
10
|
+
@property
|
11
|
+
def class_name(self) -> str: ...
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from typing import Any, List
|
2
|
+
|
3
|
+
from botocore.docs.service import ServiceDocumenter as BaseServiceDocumenter
|
4
|
+
|
5
|
+
class ServiceDocumenter(BaseServiceDocumenter):
|
6
|
+
EXAMPLE_PATH: str
|
7
|
+
sections: List[str]
|
8
|
+
def __init__(self, service_name: str, session: Any, root_docs_path: str) -> None: ...
|
9
|
+
def document_service(self) -> bytes: ...
|
10
|
+
def client_api(self, section: Any) -> None: ...
|
11
|
+
def resource_section(self, section: Any) -> None: ...
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
|
5
|
+
class SubResourceDocumenter(NestedDocumenter):
|
6
|
+
def document_sub_resources(self, section: Any) -> None: ...
|
7
|
+
|
8
|
+
def document_sub_resource(
|
9
|
+
section: Any,
|
10
|
+
resource_name: str,
|
11
|
+
sub_resource_model: Any,
|
12
|
+
service_model: Any,
|
13
|
+
include_signature: bool = ...,
|
14
|
+
) -> None: ...
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from typing import Any
|
2
|
+
|
3
|
+
from boto3.docs.base import NestedDocumenter
|
4
|
+
from botocore.hooks import BaseEventHooks
|
5
|
+
from botocore.model import ServiceModel
|
6
|
+
from botocore.waiter import WaiterModel
|
7
|
+
|
8
|
+
class WaiterResourceDocumenter(NestedDocumenter):
|
9
|
+
def __init__(
|
10
|
+
self,
|
11
|
+
resource: Any,
|
12
|
+
service_waiter_model: WaiterModel,
|
13
|
+
root_docs_path: str,
|
14
|
+
) -> None: ...
|
15
|
+
def document_resource_waiters(self, section: Any) -> None: ...
|
16
|
+
|
17
|
+
def document_resource_waiter(
|
18
|
+
section: Any,
|
19
|
+
resource_name: str,
|
20
|
+
event_emitter: BaseEventHooks,
|
21
|
+
service_model: ServiceModel,
|
22
|
+
resource_waiter_model: Any,
|
23
|
+
service_waiter_model: WaiterModel,
|
24
|
+
include_signature: bool = ...,
|
25
|
+
) -> None: ...
|
boto3-stubs/resources/base.pyi
CHANGED
@@ -28,9 +28,10 @@ class ResourceMeta:
|
|
28
28
|
def copy(self: _ResourceMeta) -> _ResourceMeta: ...
|
29
29
|
|
30
30
|
class ServiceResource:
|
31
|
-
meta:
|
31
|
+
meta: None # type: ignore
|
32
32
|
|
33
|
-
def __init__(self, *args: Any, client: Optional[BaseClient] = ..., **kwargs: Any) -> None:
|
33
|
+
def __init__(self, *args: Any, client: Optional[BaseClient] = ..., **kwargs: Any) -> None:
|
34
|
+
self.meta: ResourceMeta
|
34
35
|
def __repr__(self) -> str: ...
|
35
36
|
def __eq__(self, other: Any) -> bool: ...
|
36
37
|
def __hash__(self) -> int: ...
|
boto3-stubs/session.pyi
CHANGED
@@ -180,13 +180,13 @@ from mypy_boto3_iam.service_resource import IAMServiceResource
|
|
180
180
|
from mypy_boto3_identitystore.client import IdentityStoreClient
|
181
181
|
from mypy_boto3_imagebuilder.client import ImagebuilderClient
|
182
182
|
from mypy_boto3_importexport.client import ImportExportClient
|
183
|
-
from mypy_boto3_inspector2.client import Inspector2Client
|
184
183
|
from mypy_boto3_inspector.client import InspectorClient
|
184
|
+
from mypy_boto3_inspector2.client import Inspector2Client
|
185
185
|
from mypy_boto3_inspector_scan.client import InspectorscanClient
|
186
186
|
from mypy_boto3_internetmonitor.client import CloudWatchInternetMonitorClient
|
187
|
+
from mypy_boto3_iot.client import IoTClient
|
187
188
|
from mypy_boto3_iot1click_devices.client import IoT1ClickDevicesServiceClient
|
188
189
|
from mypy_boto3_iot1click_projects.client import IoT1ClickProjectsClient
|
189
|
-
from mypy_boto3_iot.client import IoTClient
|
190
190
|
from mypy_boto3_iot_data.client import IoTDataPlaneClient
|
191
191
|
from mypy_boto3_iot_jobs_data.client import IoTJobsDataPlaneClient
|
192
192
|
from mypy_boto3_iotanalytics.client import IoTAnalyticsClient
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: boto3-stubs
|
3
|
-
Version: 1.35.
|
4
|
-
Summary: Type annotations for boto3 1.35.
|
3
|
+
Version: 1.35.12
|
4
|
+
Summary: Type annotations for boto3 1.35.12 generated with mypy-boto3-builder 8.0.1
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
6
6
|
Author: Vlad Emelianov
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
@@ -502,8 +502,8 @@ Requires-Dist: mypy-boto3-bedrock-runtime<1.36.0,>=1.35.0; extra == "bedrock-run
|
|
502
502
|
Provides-Extra: billingconductor
|
503
503
|
Requires-Dist: mypy-boto3-billingconductor<1.36.0,>=1.35.0; extra == "billingconductor"
|
504
504
|
Provides-Extra: boto3
|
505
|
-
Requires-Dist: boto3==1.35.
|
506
|
-
Requires-Dist: botocore==1.35.
|
505
|
+
Requires-Dist: boto3==1.35.12; extra == "boto3"
|
506
|
+
Requires-Dist: botocore==1.35.12; extra == "boto3"
|
507
507
|
Provides-Extra: braket
|
508
508
|
Requires-Dist: mypy-boto3-braket<1.36.0,>=1.35.0; extra == "braket"
|
509
509
|
Provides-Extra: budgets
|
@@ -1215,7 +1215,7 @@ Requires-Dist: mypy-boto3-xray<1.36.0,>=1.35.0; extra == "xray"
|
|
1215
1215
|

|
1216
1216
|
|
1217
1217
|
Type annotations for
|
1218
|
-
[boto3 1.35.
|
1218
|
+
[boto3 1.35.12](https://boto3.amazonaws.com/v1/documentation/api/1.35.12/index.html)
|
1219
1219
|
compatible with [VSCode](https://code.visualstudio.com/),
|
1220
1220
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
1221
1221
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -1224,7 +1224,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
1224
1224
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
1225
1225
|
|
1226
1226
|
Generated by
|
1227
|
-
[mypy-boto3-builder
|
1227
|
+
[mypy-boto3-builder 8.0.1](https://github.com/youtype/mypy_boto3_builder).
|
1228
1228
|
|
1229
1229
|
More information can be found in
|
1230
1230
|
[boto3-stubs docs](https://youtype.github.io/boto3_stubs_docs/).
|
@@ -1296,7 +1296,7 @@ python -m pip install 'boto3-stubs[boto3]'
|
|
1296
1296
|
|
1297
1297
|
|
1298
1298
|
# or install all-in-one annotations for all services at once
|
1299
|
-
python -m pip install
|
1299
|
+
python -m pip install boto3-stubs-full
|
1300
1300
|
|
1301
1301
|
|
1302
1302
|
|
@@ -1439,7 +1439,7 @@ should work.
|
|
1439
1439
|
- Install `boto3-stubs[essential]` in your environment:
|
1440
1440
|
|
1441
1441
|
```bash
|
1442
|
-
python -m pip install 'boto3-stubs[essential]'
|
1442
|
+
python -m pip install 'boto3-stubs[essential]'
|
1443
1443
|
```
|
1444
1444
|
|
1445
1445
|
Type checking should now work. No explicit type annotations required, write
|
@@ -1456,7 +1456,7 @@ your `boto3` code as usual.
|
|
1456
1456
|
python -m pip install 'boto3-stubs[essential]'
|
1457
1457
|
```
|
1458
1458
|
|
1459
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
1459
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
1460
1460
|
|
1461
1461
|
Type checking should now work. No explicit type annotations required, write
|
1462
1462
|
your `boto3` code as usual.
|
@@ -1527,8 +1527,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
1527
1527
|
annotations extracted from `botocore` schemas.
|
1528
1528
|
- Type annotations include up-to-date documentation.
|
1529
1529
|
- Link to documentation is provided for every method.
|
1530
|
-
- Code is processed by [
|
1531
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
1530
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
1532
1531
|
|
1533
1532
|
<a id="what's-new"></a>
|
1534
1533
|
|
@@ -1,12 +1,23 @@
|
|
1
|
-
boto3-stubs/__init__.pyi,sha256=
|
1
|
+
boto3-stubs/__init__.pyi,sha256=k8_5VLZjIWpsINOC4P4EmaLKjR8xs2Ng148czo9oIps,207450
|
2
2
|
boto3-stubs/compat.pyi,sha256=xa8V0D9EklCqKSzPAsOCRxSFn9o7ZsabgMB2NbezRU8,151
|
3
3
|
boto3-stubs/crt.pyi,sha256=I9HtByOVDaxLR8UI0IVRgEnd09-9nP7cz6aLchQGJy4,839
|
4
4
|
boto3-stubs/exceptions.pyi,sha256=5RiiwvZt6WJg4NmdBqiw_F3edX-hZCPft50s3YRd_Gg,1253
|
5
5
|
boto3-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
boto3-stubs/session.pyi,sha256=
|
6
|
+
boto3-stubs/session.pyi,sha256=94LLVmmKMLSz9n9sxvLcfEQo4z3T01DG1PqGvFIpWyk,234696
|
7
7
|
boto3-stubs/utils.pyi,sha256=aFM7Aoxm8HuplG367JDYs5-zZ_YQpKr7ONPs1x7f15Y,779
|
8
8
|
boto3-stubs/docs/__init__.pyi,sha256=wGWFUev9EDG-4NT4l-JUjzFUsypBQf2kwFBfdb1uJeU,99
|
9
|
+
boto3-stubs/docs/action.pyi,sha256=wdKrhAkNLcLZXu8F5vDvUPf7Kmiu4Evm5WgqvjQYeRc,769
|
10
|
+
boto3-stubs/docs/attr.pyi,sha256=dzWqyUDFjoExl-4d48mBM2-qDJZoUBRxPVTgHzfx1N0,659
|
11
|
+
boto3-stubs/docs/base.pyi,sha256=hYdyNgO31OXqtBAH3EqVaW1lxHHnaW64tAYOY6mnJoM,386
|
12
|
+
boto3-stubs/docs/client.pyi,sha256=LjD603Ya-woOwSpPDCIuR18Ncybf-7TpX_4USmwvpbg,102
|
13
|
+
boto3-stubs/docs/collection.pyi,sha256=6H4MB6Q68d5xx2k9SNb2DtHDnLc9e4tiDiENLJihx00,805
|
14
|
+
boto3-stubs/docs/docstring.pyi,sha256=B4SvarMezHVbItbOMYAWRhQf0SYwSgGZn8PD9ncWZ0w,583
|
15
|
+
boto3-stubs/docs/method.pyi,sha256=ah9NITaOpT6_YVqWk6NrA-yRLDeOwbvXsGJiTjGE820,600
|
16
|
+
boto3-stubs/docs/resource.pyi,sha256=oMtwG67C8adnP8R3v4fJ1gaoxvq6zif_yFIryfAc6vw,369
|
17
|
+
boto3-stubs/docs/service.pyi,sha256=0tqWb6Lbn29GXUesvXWllEQvP5VyAjPRWGwbjkmCyW0,447
|
18
|
+
boto3-stubs/docs/subresource.pyi,sha256=1L3iAJI-Rdfb_4sauh55VuUYxSIdqb4T7m7OwcRyVrQ,354
|
9
19
|
boto3-stubs/docs/utils.pyi,sha256=-TPT9ceptcx5Fx7PHeBt6u1jV-PuAudb5VYCtqf7SYg,934
|
20
|
+
boto3-stubs/docs/waiter.pyi,sha256=0JCr_T6Im6CKEDGW3VcEFL705BdkdSdRuYuhc2Rp4zM,717
|
10
21
|
boto3-stubs/dynamodb/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
22
|
boto3-stubs/dynamodb/conditions.pyi,sha256=J5gkps9ttGUMc8jqBJR2hdDBtWhfjtHqn_JtGMkZDpA,5463
|
12
23
|
boto3-stubs/dynamodb/table.pyi,sha256=V234sOSuGjpO56ry3-AVRM1ivhs4CDfTB4ebxVgL0AI,995
|
@@ -17,7 +28,7 @@ boto3-stubs/ec2/createtags.pyi,sha256=CcbwkLP_0j8wPMfNft72-_Sqd1-0SXjbvfkACxtpS3
|
|
17
28
|
boto3-stubs/ec2/deletetags.pyi,sha256=1jRFLP0hH_JMRW7wKf1YyH2yGS3MhclEZ999Fy5qJzs,204
|
18
29
|
boto3-stubs/resources/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
30
|
boto3-stubs/resources/action.pyi,sha256=Y3gDvwA1gj7MoejxnRrQYXy5znLHRIwWRym-3XPvK5o,1546
|
20
|
-
boto3-stubs/resources/base.pyi,sha256=
|
31
|
+
boto3-stubs/resources/base.pyi,sha256=myG7NBmm5Y5azjTUdpwziSozw79e0Ai-lyv8IoyI2Qg,1115
|
21
32
|
boto3-stubs/resources/collection.pyi,sha256=MurweTycZ2fdOO7PSgRalyKb_zz-GgKi3D2A0-rc_To,1922
|
22
33
|
boto3-stubs/resources/factory.pyi,sha256=9A0RHo8kRPE8xuzDCSHkxJCAsKk_oHmDiXwVj-i9_fk,496
|
23
34
|
boto3-stubs/resources/model.pyi,sha256=zopYjuENDzeUDsisNBrZlc2zc8_EIhVJmuL7FSd9wqk,3703
|
@@ -27,8 +38,8 @@ boto3-stubs/s3/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
38
|
boto3-stubs/s3/constants.pyi,sha256=9MYiVx6cRf9tcrxvpy0Ubi4HGyrmUj19WQA54lmfoR8,75
|
28
39
|
boto3-stubs/s3/inject.pyi,sha256=UxVi6tYfEYdvc8cKldt9StTEGFHWTdd-867frSfxF9w,4577
|
29
40
|
boto3-stubs/s3/transfer.pyi,sha256=zQ7pQpsCWWo9cdYrOoiuKyiLz_t1sG0_OOznd5DETTo,2508
|
30
|
-
boto3_stubs-1.35.
|
31
|
-
boto3_stubs-1.35.
|
32
|
-
boto3_stubs-1.35.
|
33
|
-
boto3_stubs-1.35.
|
34
|
-
boto3_stubs-1.35.
|
41
|
+
boto3_stubs-1.35.12.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
42
|
+
boto3_stubs-1.35.12.dist-info/METADATA,sha256=770u00das8yE-Y6IRoxjJwFxq2j3OBrapPP2ElH1C1E,141135
|
43
|
+
boto3_stubs-1.35.12.dist-info/WHEEL,sha256=uCRv0ZEik_232NlR4YDw4Pv3Ajt5bKvMH13NUU7hFuI,91
|
44
|
+
boto3_stubs-1.35.12.dist-info/top_level.txt,sha256=uB_lQ39lkJ_VYZ_88DxH_zFptJtIwQ_SzeMpW8tRmT4,12
|
45
|
+
boto3_stubs-1.35.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|