types-boto3-dynamodb 1.35.71__py3-none-any.whl → 1.35.74__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.
- types_boto3_dynamodb/__main__.py +4 -4
- types_boto3_dynamodb/client.py +1 -0
- types_boto3_dynamodb/client.pyi +1 -0
- types_boto3_dynamodb/literals.py +7 -0
- types_boto3_dynamodb/literals.pyi +7 -0
- types_boto3_dynamodb/service_resource.py +2 -1
- types_boto3_dynamodb/service_resource.pyi +2 -1
- types_boto3_dynamodb/type_defs.py +4 -0
- types_boto3_dynamodb/type_defs.pyi +4 -0
- types_boto3_dynamodb/version.py +1 -1
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.74.dist-info}/METADATA +32 -6
- types_boto3_dynamodb-1.35.74.dist-info/RECORD +22 -0
- types_boto3_dynamodb-1.35.71.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.74.dist-info}/LICENSE +0 -0
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.74.dist-info}/WHEEL +0 -0
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.74.dist-info}/top_level.txt +0 -0
types_boto3_dynamodb/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
print(
|
|
15
|
-
"Type annotations for boto3 DynamoDB 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 DynamoDB 1.35.74\n"
|
|
16
|
+
"Version: 1.35.74\n"
|
|
17
|
+
"Builder version: 8.5.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#dynamodb\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
print("1.35.
|
|
29
|
+
print("1.35.74")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_dynamodb/client.py
CHANGED
|
@@ -183,6 +183,7 @@ class Exceptions:
|
|
|
183
183
|
ProvisionedThroughputExceededException: Type[BotocoreClientError]
|
|
184
184
|
ReplicaAlreadyExistsException: Type[BotocoreClientError]
|
|
185
185
|
ReplicaNotFoundException: Type[BotocoreClientError]
|
|
186
|
+
ReplicatedWriteConflictException: Type[BotocoreClientError]
|
|
186
187
|
RequestLimitExceeded: Type[BotocoreClientError]
|
|
187
188
|
ResourceInUseException: Type[BotocoreClientError]
|
|
188
189
|
ResourceNotFoundException: Type[BotocoreClientError]
|
types_boto3_dynamodb/client.pyi
CHANGED
|
@@ -180,6 +180,7 @@ class Exceptions:
|
|
|
180
180
|
ProvisionedThroughputExceededException: Type[BotocoreClientError]
|
|
181
181
|
ReplicaAlreadyExistsException: Type[BotocoreClientError]
|
|
182
182
|
ReplicaNotFoundException: Type[BotocoreClientError]
|
|
183
|
+
ReplicatedWriteConflictException: Type[BotocoreClientError]
|
|
183
184
|
RequestLimitExceeded: Type[BotocoreClientError]
|
|
184
185
|
ResourceInUseException: Type[BotocoreClientError]
|
|
185
186
|
ResourceNotFoundException: Type[BotocoreClientError]
|
types_boto3_dynamodb/literals.py
CHANGED
|
@@ -50,6 +50,7 @@ __all__ = (
|
|
|
50
50
|
"ListBackupsPaginatorName",
|
|
51
51
|
"ListTablesPaginatorName",
|
|
52
52
|
"ListTagsOfResourcePaginatorName",
|
|
53
|
+
"MultiRegionConsistencyType",
|
|
53
54
|
"PaginatorName",
|
|
54
55
|
"PointInTimeRecoveryStatusType",
|
|
55
56
|
"ProjectionTypeType",
|
|
@@ -132,6 +133,7 @@ KeyTypeType = Literal["HASH", "RANGE"]
|
|
|
132
133
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
133
134
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
134
135
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
136
|
+
MultiRegionConsistencyType = Literal["EVENTUAL", "STRONG"]
|
|
135
137
|
PointInTimeRecoveryStatusType = Literal["DISABLED", "ENABLED"]
|
|
136
138
|
ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
|
|
137
139
|
QueryPaginatorName = Literal["query"]
|
|
@@ -287,6 +289,7 @@ ServiceName = Literal[
|
|
|
287
289
|
"drs",
|
|
288
290
|
"ds",
|
|
289
291
|
"ds-data",
|
|
292
|
+
"dsql",
|
|
290
293
|
"dynamodb",
|
|
291
294
|
"dynamodbstreams",
|
|
292
295
|
"ebs",
|
|
@@ -343,6 +346,7 @@ ServiceName = Literal[
|
|
|
343
346
|
"inspector-scan",
|
|
344
347
|
"inspector2",
|
|
345
348
|
"internetmonitor",
|
|
349
|
+
"invoicing",
|
|
346
350
|
"iot",
|
|
347
351
|
"iot-data",
|
|
348
352
|
"iot-jobs-data",
|
|
@@ -429,6 +433,7 @@ ServiceName = Literal[
|
|
|
429
433
|
"neptune-graph",
|
|
430
434
|
"neptunedata",
|
|
431
435
|
"network-firewall",
|
|
436
|
+
"networkflowmonitor",
|
|
432
437
|
"networkmanager",
|
|
433
438
|
"networkmonitor",
|
|
434
439
|
"notifications",
|
|
@@ -495,6 +500,7 @@ ServiceName = Literal[
|
|
|
495
500
|
"s3",
|
|
496
501
|
"s3control",
|
|
497
502
|
"s3outposts",
|
|
503
|
+
"s3tables",
|
|
498
504
|
"sagemaker",
|
|
499
505
|
"sagemaker-a2i-runtime",
|
|
500
506
|
"sagemaker-edge",
|
|
@@ -507,6 +513,7 @@ ServiceName = Literal[
|
|
|
507
513
|
"schemas",
|
|
508
514
|
"sdb",
|
|
509
515
|
"secretsmanager",
|
|
516
|
+
"security-ir",
|
|
510
517
|
"securityhub",
|
|
511
518
|
"securitylake",
|
|
512
519
|
"serverlessrepo",
|
|
@@ -49,6 +49,7 @@ __all__ = (
|
|
|
49
49
|
"ListBackupsPaginatorName",
|
|
50
50
|
"ListTablesPaginatorName",
|
|
51
51
|
"ListTagsOfResourcePaginatorName",
|
|
52
|
+
"MultiRegionConsistencyType",
|
|
52
53
|
"PaginatorName",
|
|
53
54
|
"PointInTimeRecoveryStatusType",
|
|
54
55
|
"ProjectionTypeType",
|
|
@@ -130,6 +131,7 @@ KeyTypeType = Literal["HASH", "RANGE"]
|
|
|
130
131
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
131
132
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
132
133
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
134
|
+
MultiRegionConsistencyType = Literal["EVENTUAL", "STRONG"]
|
|
133
135
|
PointInTimeRecoveryStatusType = Literal["DISABLED", "ENABLED"]
|
|
134
136
|
ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
|
|
135
137
|
QueryPaginatorName = Literal["query"]
|
|
@@ -285,6 +287,7 @@ ServiceName = Literal[
|
|
|
285
287
|
"drs",
|
|
286
288
|
"ds",
|
|
287
289
|
"ds-data",
|
|
290
|
+
"dsql",
|
|
288
291
|
"dynamodb",
|
|
289
292
|
"dynamodbstreams",
|
|
290
293
|
"ebs",
|
|
@@ -341,6 +344,7 @@ ServiceName = Literal[
|
|
|
341
344
|
"inspector-scan",
|
|
342
345
|
"inspector2",
|
|
343
346
|
"internetmonitor",
|
|
347
|
+
"invoicing",
|
|
344
348
|
"iot",
|
|
345
349
|
"iot-data",
|
|
346
350
|
"iot-jobs-data",
|
|
@@ -427,6 +431,7 @@ ServiceName = Literal[
|
|
|
427
431
|
"neptune-graph",
|
|
428
432
|
"neptunedata",
|
|
429
433
|
"network-firewall",
|
|
434
|
+
"networkflowmonitor",
|
|
430
435
|
"networkmanager",
|
|
431
436
|
"networkmonitor",
|
|
432
437
|
"notifications",
|
|
@@ -493,6 +498,7 @@ ServiceName = Literal[
|
|
|
493
498
|
"s3",
|
|
494
499
|
"s3control",
|
|
495
500
|
"s3outposts",
|
|
501
|
+
"s3tables",
|
|
496
502
|
"sagemaker",
|
|
497
503
|
"sagemaker-a2i-runtime",
|
|
498
504
|
"sagemaker-edge",
|
|
@@ -505,6 +511,7 @@ ServiceName = Literal[
|
|
|
505
511
|
"schemas",
|
|
506
512
|
"sdb",
|
|
507
513
|
"secretsmanager",
|
|
514
|
+
"security-ir",
|
|
508
515
|
"securityhub",
|
|
509
516
|
"securitylake",
|
|
510
517
|
"serverlessrepo",
|
|
@@ -29,7 +29,7 @@ from boto3.resources.base import ResourceMeta, ServiceResource
|
|
|
29
29
|
from boto3.resources.collection import ResourceCollection
|
|
30
30
|
|
|
31
31
|
from .client import DynamoDBClient
|
|
32
|
-
from .literals import TableStatusType
|
|
32
|
+
from .literals import MultiRegionConsistencyType, TableStatusType
|
|
33
33
|
from .type_defs import (
|
|
34
34
|
ArchivalSummaryTypeDef,
|
|
35
35
|
AttributeDefinitionTypeDef,
|
|
@@ -167,6 +167,7 @@ class Table(ServiceResource):
|
|
|
167
167
|
deletion_protection_enabled: bool
|
|
168
168
|
on_demand_throughput: OnDemandThroughputTypeDef
|
|
169
169
|
warm_throughput: TableWarmThroughputDescriptionTypeDef
|
|
170
|
+
multi_region_consistency: MultiRegionConsistencyType
|
|
170
171
|
meta: "DynamoDBResourceMeta" # type: ignore
|
|
171
172
|
|
|
172
173
|
def get_available_subresources(self) -> Sequence[str]:
|
|
@@ -29,7 +29,7 @@ from boto3.resources.base import ResourceMeta, ServiceResource
|
|
|
29
29
|
from boto3.resources.collection import ResourceCollection
|
|
30
30
|
|
|
31
31
|
from .client import DynamoDBClient
|
|
32
|
-
from .literals import TableStatusType
|
|
32
|
+
from .literals import MultiRegionConsistencyType, TableStatusType
|
|
33
33
|
from .type_defs import (
|
|
34
34
|
ArchivalSummaryTypeDef,
|
|
35
35
|
AttributeDefinitionTypeDef,
|
|
@@ -163,6 +163,7 @@ class Table(ServiceResource):
|
|
|
163
163
|
deletion_protection_enabled: bool
|
|
164
164
|
on_demand_throughput: OnDemandThroughputTypeDef
|
|
165
165
|
warm_throughput: TableWarmThroughputDescriptionTypeDef
|
|
166
|
+
multi_region_consistency: MultiRegionConsistencyType
|
|
166
167
|
meta: "DynamoDBResourceMeta" # type: ignore
|
|
167
168
|
|
|
168
169
|
def get_available_subresources(self) -> Sequence[str]:
|
|
@@ -45,6 +45,7 @@ from .literals import (
|
|
|
45
45
|
InputCompressionTypeType,
|
|
46
46
|
InputFormatType,
|
|
47
47
|
KeyTypeType,
|
|
48
|
+
MultiRegionConsistencyType,
|
|
48
49
|
PointInTimeRecoveryStatusType,
|
|
49
50
|
ProjectionTypeType,
|
|
50
51
|
ReplicaStatusType,
|
|
@@ -2044,6 +2045,7 @@ class TableDescriptionTypeDef(TypedDict):
|
|
|
2044
2045
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2045
2046
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2046
2047
|
WarmThroughput: NotRequired[TableWarmThroughputDescriptionTypeDef]
|
|
2048
|
+
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2047
2049
|
|
|
2048
2050
|
|
|
2049
2051
|
class ImportTableDescriptionTypeDef(TypedDict):
|
|
@@ -2326,6 +2328,7 @@ class UpdateTableInputRequestTypeDef(TypedDict):
|
|
|
2326
2328
|
ReplicaUpdates: NotRequired[Sequence[ReplicationGroupUpdateTypeDef]]
|
|
2327
2329
|
TableClass: NotRequired[TableClassType]
|
|
2328
2330
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2331
|
+
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2329
2332
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2330
2333
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2331
2334
|
|
|
@@ -2340,6 +2343,7 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
|
2340
2343
|
ReplicaUpdates: NotRequired[Sequence[ReplicationGroupUpdateTypeDef]]
|
|
2341
2344
|
TableClass: NotRequired[TableClassType]
|
|
2342
2345
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2346
|
+
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2343
2347
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2344
2348
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2345
2349
|
|
|
@@ -45,6 +45,7 @@ from .literals import (
|
|
|
45
45
|
InputCompressionTypeType,
|
|
46
46
|
InputFormatType,
|
|
47
47
|
KeyTypeType,
|
|
48
|
+
MultiRegionConsistencyType,
|
|
48
49
|
PointInTimeRecoveryStatusType,
|
|
49
50
|
ProjectionTypeType,
|
|
50
51
|
ReplicaStatusType,
|
|
@@ -1805,6 +1806,7 @@ class TableDescriptionTypeDef(TypedDict):
|
|
|
1805
1806
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
1806
1807
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
1807
1808
|
WarmThroughput: NotRequired[TableWarmThroughputDescriptionTypeDef]
|
|
1809
|
+
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
1808
1810
|
|
|
1809
1811
|
class ImportTableDescriptionTypeDef(TypedDict):
|
|
1810
1812
|
ImportArn: NotRequired[str]
|
|
@@ -2059,6 +2061,7 @@ class UpdateTableInputRequestTypeDef(TypedDict):
|
|
|
2059
2061
|
ReplicaUpdates: NotRequired[Sequence[ReplicationGroupUpdateTypeDef]]
|
|
2060
2062
|
TableClass: NotRequired[TableClassType]
|
|
2061
2063
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2064
|
+
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2062
2065
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2063
2066
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2064
2067
|
|
|
@@ -2072,6 +2075,7 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
|
2072
2075
|
ReplicaUpdates: NotRequired[Sequence[ReplicationGroupUpdateTypeDef]]
|
|
2073
2076
|
TableClass: NotRequired[TableClassType]
|
|
2074
2077
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2078
|
+
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2075
2079
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2076
2080
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2077
2081
|
|
types_boto3_dynamodb/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-boto3-dynamodb
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 DynamoDB 1.35.
|
|
3
|
+
Version: 1.35.74
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.35.74 service generated with mypy-boto3-builder 8.5.0
|
|
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
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/
|
|
10
10
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
11
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3 dynamodb type-annotations
|
|
12
|
+
Keywords: boto3 dynamodb boto3-stubs type-annotations mypy typeshed autocomplete
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 DynamoDB 1.35.
|
|
46
|
+
Type annotations for [boto3 DynamoDB 1.35.74](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.5.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -60,7 +60,7 @@ More information can be found on
|
|
|
60
60
|
|
|
61
61
|
See how it helps you find and fix potential bugs:
|
|
62
62
|
|
|
63
|
-

|
|
64
64
|
|
|
65
65
|
- [types-boto3-dynamodb](#types-boto3-dynamodb)
|
|
66
66
|
- [How to install](#how-to-install)
|
|
@@ -75,6 +75,7 @@ See how it helps you find and fix potential bugs:
|
|
|
75
75
|
- [Other IDEs](#other-ides)
|
|
76
76
|
- [mypy](#mypy)
|
|
77
77
|
- [pyright](#pyright)
|
|
78
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
78
79
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
79
80
|
- [Client annotations](#client-annotations)
|
|
80
81
|
- [Paginators annotations](#paginators-annotations)
|
|
@@ -271,6 +272,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
|
|
|
271
272
|
Type checking should now work. No explicit type annotations required, write
|
|
272
273
|
your `boto3` code as usual.
|
|
273
274
|
|
|
275
|
+
<a id="pylint-compatibility"></a>
|
|
276
|
+
|
|
277
|
+
### Pylint compatibility
|
|
278
|
+
|
|
279
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
280
|
+
`types-boto3-dynamodb` dependency in production. However, there is an issue in
|
|
281
|
+
`pylint` that it complains about undefined variables. To fix it, set all types
|
|
282
|
+
to `object` in non-`TYPE_CHECKING` mode.
|
|
283
|
+
|
|
284
|
+
```python
|
|
285
|
+
from typing import TYPE_CHECKING
|
|
286
|
+
|
|
287
|
+
if TYPE_CHECKING:
|
|
288
|
+
from types_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
289
|
+
from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
290
|
+
from types_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
291
|
+
else:
|
|
292
|
+
EC2Client = object
|
|
293
|
+
EC2ServiceResource = object
|
|
294
|
+
BundleTaskCompleteWaiter = object
|
|
295
|
+
DescribeVolumesPaginator = object
|
|
296
|
+
|
|
297
|
+
...
|
|
298
|
+
```
|
|
299
|
+
|
|
274
300
|
<a id="explicit-type-annotations"></a>
|
|
275
301
|
|
|
276
302
|
## Explicit type annotations
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
types_boto3_dynamodb/__init__.py,sha256=cxAM03dGq3WmH2lshOuhmrIxu2sx7hRkYr8c1cC6NC4,1891
|
|
2
|
+
types_boto3_dynamodb/__init__.pyi,sha256=0bLc7qg8xn1Q9IXOm46FNNKrCbFyBoLsySfz6i53J3k,1889
|
|
3
|
+
types_boto3_dynamodb/__main__.py,sha256=0ZHI_mV_Godp7eyhwsf0UAKvLDZY00cdMThXYFtocV8,954
|
|
4
|
+
types_boto3_dynamodb/client.py,sha256=O35cfWZmiTLarDKUcjdE7WbNYojZRrLP7lKJD-aUsjo,43381
|
|
5
|
+
types_boto3_dynamodb/client.pyi,sha256=YVfdbxyiyPpjGQyt5ZcmVynXI3QeV2LoXwndUMWOpqg,43377
|
|
6
|
+
types_boto3_dynamodb/literals.py,sha256=R42KbnA91pLmH8HP4BMCJApoIifMSKh7hRWuajD-MWE,14568
|
|
7
|
+
types_boto3_dynamodb/literals.pyi,sha256=gvb5IvMMgvKRs25TfvtJ--d-DxWKVxot_2jHB-DMdso,14566
|
|
8
|
+
types_boto3_dynamodb/paginator.py,sha256=tSmJSyrol6n8KYvxyUhyd1jRBBHhKJkY6BtzwJ92Th0,6250
|
|
9
|
+
types_boto3_dynamodb/paginator.pyi,sha256=4OZFjEVD0SMR9BWb9rQvL58K8B_DglaNt7X1MeCrOUA,6237
|
|
10
|
+
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_dynamodb/service_resource.py,sha256=LQOenjh2_LAp4ETJkFkV99NLGct7WlR7HJlH7aPruaA,17068
|
|
12
|
+
types_boto3_dynamodb/service_resource.pyi,sha256=VPf5Qos5SYBVF702sdHs-5SnHOnMZmsAOV7sfukD5FM,17061
|
|
13
|
+
types_boto3_dynamodb/type_defs.py,sha256=turhaTPjisLc654SAdOFLqsPio1PRPjBR3xIrccrAh4,85025
|
|
14
|
+
types_boto3_dynamodb/type_defs.pyi,sha256=FcyrCvOmYHGj_5kbRuZ2GRlkX7ZBqSaCKRElx9My1k0,84747
|
|
15
|
+
types_boto3_dynamodb/version.py,sha256=B0P5JUO-cREkwttMqs7oU9i3UOmgK6CWkZC0OK5p5h4,93
|
|
16
|
+
types_boto3_dynamodb/waiter.py,sha256=TwX1GF5pQAUIVcPWggpi7m-AHPxho6vRJJjiSK-zdb4,2584
|
|
17
|
+
types_boto3_dynamodb/waiter.pyi,sha256=f-3Eu0L-ysv0jbrrJNKkuJbmSguRZW3TfwLvAHspHPY,2579
|
|
18
|
+
types_boto3_dynamodb-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
+
types_boto3_dynamodb-1.35.74.dist-info/METADATA,sha256=B5zogjiY1GpzYofAcCij6nYW--K4ZZPRG6X0hTYQBFU,16957
|
|
20
|
+
types_boto3_dynamodb-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
21
|
+
types_boto3_dynamodb-1.35.74.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
+
types_boto3_dynamodb-1.35.74.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
types_boto3_dynamodb/__init__.py,sha256=cxAM03dGq3WmH2lshOuhmrIxu2sx7hRkYr8c1cC6NC4,1891
|
|
2
|
-
types_boto3_dynamodb/__init__.pyi,sha256=0bLc7qg8xn1Q9IXOm46FNNKrCbFyBoLsySfz6i53J3k,1889
|
|
3
|
-
types_boto3_dynamodb/__main__.py,sha256=sbnR8zYQXVGP9HZtA0oeVMbTkzLg5x5eGTRRHaU9zGs,954
|
|
4
|
-
types_boto3_dynamodb/client.py,sha256=ZR3A4gHzFwJF8DrX4mLgb8Myr0KJjFys6t7jgduNc3c,43317
|
|
5
|
-
types_boto3_dynamodb/client.pyi,sha256=rzsDcrfvzWtdQoSmaVOyxIEkza8UG0KNTS1RHIU5SAQ,43313
|
|
6
|
-
types_boto3_dynamodb/literals.py,sha256=HY6UMH8Zwd2zpZfJT3zdnnWH8xT2rDdEHCBHVO9uesI,14385
|
|
7
|
-
types_boto3_dynamodb/literals.pyi,sha256=c3ELaDGW9MkcooowRAH7lOO_bPc_jkoWfUmEiG1WHNI,14383
|
|
8
|
-
types_boto3_dynamodb/paginator.py,sha256=tSmJSyrol6n8KYvxyUhyd1jRBBHhKJkY6BtzwJ92Th0,6250
|
|
9
|
-
types_boto3_dynamodb/paginator.pyi,sha256=4OZFjEVD0SMR9BWb9rQvL58K8B_DglaNt7X1MeCrOUA,6237
|
|
10
|
-
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_dynamodb/service_resource.py,sha256=yrwBmG8Z7jHw0BIJsTzak0jlb9GRnon0FiKtPzRPTEo,16983
|
|
12
|
-
types_boto3_dynamodb/service_resource.pyi,sha256=XRVHHnAYBb6LdgZfMaLMvVZNyjZ4TxCxPi_WK2_Cns0,16976
|
|
13
|
-
types_boto3_dynamodb/type_defs.py,sha256=J5esN5rZTaQzzDSj5rDO7gYdzMp_HsX2EXNHiQP0Qk0,84789
|
|
14
|
-
types_boto3_dynamodb/type_defs.pyi,sha256=ZKhwWfo8BhqDMBdqac8uyCO4e3uWSNN8gVvJmAnM5_w,84511
|
|
15
|
-
types_boto3_dynamodb/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
|
|
16
|
-
types_boto3_dynamodb/waiter.py,sha256=TwX1GF5pQAUIVcPWggpi7m-AHPxho6vRJJjiSK-zdb4,2584
|
|
17
|
-
types_boto3_dynamodb/waiter.pyi,sha256=f-3Eu0L-ysv0jbrrJNKkuJbmSguRZW3TfwLvAHspHPY,2579
|
|
18
|
-
types_boto3_dynamodb-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
19
|
-
types_boto3_dynamodb-1.35.71.dist-info/METADATA,sha256=DiFxmAjb5kMBVndfKVE876l5Cw3PPhKiVbXjjgM_iXQ,16172
|
|
20
|
-
types_boto3_dynamodb-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
21
|
-
types_boto3_dynamodb-1.35.71.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
-
types_boto3_dynamodb-1.35.71.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.74.dist-info}/top_level.txt
RENAMED
|
File without changes
|