mypy-boto3-dynamodb 1.26.158__py3-none-any.whl → 1.26.164__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.
- mypy_boto3_dynamodb/__main__.py +2 -2
- mypy_boto3_dynamodb/client.py +9 -4
- mypy_boto3_dynamodb/client.pyi +9 -4
- mypy_boto3_dynamodb/literals.py +1 -0
- mypy_boto3_dynamodb/literals.pyi +1 -0
- mypy_boto3_dynamodb/service_resource.py +7 -3
- mypy_boto3_dynamodb/service_resource.pyi +7 -3
- mypy_boto3_dynamodb/type_defs.py +41 -31
- mypy_boto3_dynamodb/type_defs.pyi +41 -31
- mypy_boto3_dynamodb/version.py +1 -1
- {mypy_boto3_dynamodb-1.26.158.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/METADATA +6 -6
- mypy_boto3_dynamodb-1.26.164.dist-info/RECORD +22 -0
- mypy_boto3_dynamodb-1.26.158.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.26.158.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.26.158.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/WHEEL +0 -0
- {mypy_boto3_dynamodb-1.26.158.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/__main__.py
CHANGED
|
@@ -9,7 +9,7 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.DynamoDB 1.26.
|
|
12
|
+
"Type annotations for boto3.DynamoDB 1.26.164\nVersion: 1.26.164\nBuilder version:"
|
|
13
13
|
" 7.14.5\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB\nOther"
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.26.
|
|
25
|
+
print("1.26.164")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
mypy_boto3_dynamodb/client.py
CHANGED
|
@@ -30,6 +30,7 @@ from .literals import (
|
|
|
30
30
|
InputFormatType,
|
|
31
31
|
ReturnConsumedCapacityType,
|
|
32
32
|
ReturnItemCollectionMetricsType,
|
|
33
|
+
ReturnValuesOnConditionCheckFailureType,
|
|
33
34
|
ReturnValueType,
|
|
34
35
|
S3SseAlgorithmType,
|
|
35
36
|
SelectType,
|
|
@@ -360,7 +361,8 @@ class DynamoDBClient(BaseClient):
|
|
|
360
361
|
None,
|
|
361
362
|
],
|
|
362
363
|
],
|
|
363
|
-
] =
|
|
364
|
+
] = ...,
|
|
365
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
364
366
|
) -> DeleteItemOutputTypeDef:
|
|
365
367
|
"""
|
|
366
368
|
Deletes a single item in a table by primary key.
|
|
@@ -545,7 +547,8 @@ class DynamoDBClient(BaseClient):
|
|
|
545
547
|
ConsistentRead: bool = ...,
|
|
546
548
|
NextToken: str = ...,
|
|
547
549
|
ReturnConsumedCapacity: ReturnConsumedCapacityType = ...,
|
|
548
|
-
Limit: int =
|
|
550
|
+
Limit: int = ...,
|
|
551
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
549
552
|
) -> ExecuteStatementOutputTypeDef:
|
|
550
553
|
"""
|
|
551
554
|
This operation allows you to perform reads and singleton writes on data stored
|
|
@@ -794,7 +797,8 @@ class DynamoDBClient(BaseClient):
|
|
|
794
797
|
None,
|
|
795
798
|
],
|
|
796
799
|
],
|
|
797
|
-
] =
|
|
800
|
+
] = ...,
|
|
801
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
798
802
|
) -> PutItemOutputTypeDef:
|
|
799
803
|
"""
|
|
800
804
|
Creates a new item, or replaces an old item with a new item.
|
|
@@ -1148,7 +1152,8 @@ class DynamoDBClient(BaseClient):
|
|
|
1148
1152
|
None,
|
|
1149
1153
|
],
|
|
1150
1154
|
],
|
|
1151
|
-
] =
|
|
1155
|
+
] = ...,
|
|
1156
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
1152
1157
|
) -> UpdateItemOutputTypeDef:
|
|
1153
1158
|
"""
|
|
1154
1159
|
Edits an existing item's attributes, or adds a new item to the table if it does
|
mypy_boto3_dynamodb/client.pyi
CHANGED
|
@@ -30,6 +30,7 @@ from .literals import (
|
|
|
30
30
|
InputFormatType,
|
|
31
31
|
ReturnConsumedCapacityType,
|
|
32
32
|
ReturnItemCollectionMetricsType,
|
|
33
|
+
ReturnValuesOnConditionCheckFailureType,
|
|
33
34
|
ReturnValueType,
|
|
34
35
|
S3SseAlgorithmType,
|
|
35
36
|
SelectType,
|
|
@@ -346,7 +347,8 @@ class DynamoDBClient(BaseClient):
|
|
|
346
347
|
None,
|
|
347
348
|
],
|
|
348
349
|
],
|
|
349
|
-
] =
|
|
350
|
+
] = ...,
|
|
351
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
350
352
|
) -> DeleteItemOutputTypeDef:
|
|
351
353
|
"""
|
|
352
354
|
Deletes a single item in a table by primary key.
|
|
@@ -514,7 +516,8 @@ class DynamoDBClient(BaseClient):
|
|
|
514
516
|
ConsistentRead: bool = ...,
|
|
515
517
|
NextToken: str = ...,
|
|
516
518
|
ReturnConsumedCapacity: ReturnConsumedCapacityType = ...,
|
|
517
|
-
Limit: int =
|
|
519
|
+
Limit: int = ...,
|
|
520
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
518
521
|
) -> ExecuteStatementOutputTypeDef:
|
|
519
522
|
"""
|
|
520
523
|
This operation allows you to perform reads and singleton writes on data stored
|
|
@@ -750,7 +753,8 @@ class DynamoDBClient(BaseClient):
|
|
|
750
753
|
None,
|
|
751
754
|
],
|
|
752
755
|
],
|
|
753
|
-
] =
|
|
756
|
+
] = ...,
|
|
757
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
754
758
|
) -> PutItemOutputTypeDef:
|
|
755
759
|
"""
|
|
756
760
|
Creates a new item, or replaces an old item with a new item.
|
|
@@ -1091,7 +1095,8 @@ class DynamoDBClient(BaseClient):
|
|
|
1091
1095
|
None,
|
|
1092
1096
|
],
|
|
1093
1097
|
],
|
|
1094
|
-
] =
|
|
1098
|
+
] = ...,
|
|
1099
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
1095
1100
|
) -> UpdateItemOutputTypeDef:
|
|
1096
1101
|
"""
|
|
1097
1102
|
Edits an existing item's attributes, or adds a new item to the table if it does
|
mypy_boto3_dynamodb/literals.py
CHANGED
mypy_boto3_dynamodb/literals.pyi
CHANGED
|
@@ -32,6 +32,7 @@ from .literals import (
|
|
|
32
32
|
ConditionalOperatorType,
|
|
33
33
|
ReturnConsumedCapacityType,
|
|
34
34
|
ReturnItemCollectionMetricsType,
|
|
35
|
+
ReturnValuesOnConditionCheckFailureType,
|
|
35
36
|
ReturnValueType,
|
|
36
37
|
SelectType,
|
|
37
38
|
TableClassType,
|
|
@@ -233,7 +234,8 @@ class Table(ServiceResource):
|
|
|
233
234
|
Mapping[str, Any],
|
|
234
235
|
None,
|
|
235
236
|
],
|
|
236
|
-
] =
|
|
237
|
+
] = ...,
|
|
238
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
237
239
|
) -> DeleteItemOutputTableTypeDef:
|
|
238
240
|
"""
|
|
239
241
|
Deletes a single item in a table by primary key.
|
|
@@ -342,7 +344,8 @@ class Table(ServiceResource):
|
|
|
342
344
|
Mapping[str, Any],
|
|
343
345
|
None,
|
|
344
346
|
],
|
|
345
|
-
] =
|
|
347
|
+
] = ...,
|
|
348
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
346
349
|
) -> PutItemOutputTableTypeDef:
|
|
347
350
|
"""
|
|
348
351
|
Creates a new item, or replaces an old item with a new item.
|
|
@@ -557,7 +560,8 @@ class Table(ServiceResource):
|
|
|
557
560
|
Mapping[str, Any],
|
|
558
561
|
None,
|
|
559
562
|
],
|
|
560
|
-
] =
|
|
563
|
+
] = ...,
|
|
564
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
561
565
|
) -> UpdateItemOutputTableTypeDef:
|
|
562
566
|
"""
|
|
563
567
|
Edits an existing item's attributes, or adds a new item to the table if it does
|
|
@@ -32,6 +32,7 @@ from .literals import (
|
|
|
32
32
|
ConditionalOperatorType,
|
|
33
33
|
ReturnConsumedCapacityType,
|
|
34
34
|
ReturnItemCollectionMetricsType,
|
|
35
|
+
ReturnValuesOnConditionCheckFailureType,
|
|
35
36
|
ReturnValueType,
|
|
36
37
|
SelectType,
|
|
37
38
|
TableClassType,
|
|
@@ -224,7 +225,8 @@ class Table(ServiceResource):
|
|
|
224
225
|
Mapping[str, Any],
|
|
225
226
|
None,
|
|
226
227
|
],
|
|
227
|
-
] =
|
|
228
|
+
] = ...,
|
|
229
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
228
230
|
) -> DeleteItemOutputTableTypeDef:
|
|
229
231
|
"""
|
|
230
232
|
Deletes a single item in a table by primary key.
|
|
@@ -329,7 +331,8 @@ class Table(ServiceResource):
|
|
|
329
331
|
Mapping[str, Any],
|
|
330
332
|
None,
|
|
331
333
|
],
|
|
332
|
-
] =
|
|
334
|
+
] = ...,
|
|
335
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
333
336
|
) -> PutItemOutputTableTypeDef:
|
|
334
337
|
"""
|
|
335
338
|
Creates a new item, or replaces an old item with a new item.
|
|
@@ -539,7 +542,8 @@ class Table(ServiceResource):
|
|
|
539
542
|
Mapping[str, Any],
|
|
540
543
|
None,
|
|
541
544
|
],
|
|
542
|
-
] =
|
|
545
|
+
] = ...,
|
|
546
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailureType = ...
|
|
543
547
|
) -> UpdateItemOutputTableTypeDef:
|
|
544
548
|
"""
|
|
545
549
|
Edits an existing item's attributes, or adds a new item to the table if it does
|
mypy_boto3_dynamodb/type_defs.py
CHANGED
|
@@ -78,7 +78,6 @@ __all__ = (
|
|
|
78
78
|
"BackupSummaryTableTypeDef",
|
|
79
79
|
"BackupSummaryTypeDef",
|
|
80
80
|
"KeysAndAttributesServiceResourceTypeDef",
|
|
81
|
-
"BatchStatementErrorTypeDef",
|
|
82
81
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
83
82
|
"BillingModeSummaryTableTypeDef",
|
|
84
83
|
"BillingModeSummaryTypeDef",
|
|
@@ -180,6 +179,7 @@ __all__ = (
|
|
|
180
179
|
"TableClassSummaryResponseMetadataTypeDef",
|
|
181
180
|
"UpdateContributorInsightsOutputTypeDef",
|
|
182
181
|
"AttributeValueUpdateTypeDef",
|
|
182
|
+
"BatchStatementErrorTypeDef",
|
|
183
183
|
"BatchStatementRequestTypeDef",
|
|
184
184
|
"ConditionCheckTypeDef",
|
|
185
185
|
"ConditionTypeDef",
|
|
@@ -202,7 +202,6 @@ __all__ = (
|
|
|
202
202
|
"ListBackupsOutputTableTypeDef",
|
|
203
203
|
"ListBackupsOutputTypeDef",
|
|
204
204
|
"BatchGetItemInputServiceResourceBatchGetItemTypeDef",
|
|
205
|
-
"BatchStatementResponseTypeDef",
|
|
206
205
|
"ConsumedCapacityServiceResourceTypeDef",
|
|
207
206
|
"ConsumedCapacityTableTypeDef",
|
|
208
207
|
"ConsumedCapacityTypeDef",
|
|
@@ -258,6 +257,7 @@ __all__ = (
|
|
|
258
257
|
"WriteRequestServiceResourceTypeDef",
|
|
259
258
|
"UpdateTimeToLiveInputRequestTypeDef",
|
|
260
259
|
"UpdateTimeToLiveOutputTypeDef",
|
|
260
|
+
"BatchStatementResponseTypeDef",
|
|
261
261
|
"BatchExecuteStatementInputRequestTypeDef",
|
|
262
262
|
"QueryInputRequestTypeDef",
|
|
263
263
|
"ScanInputRequestTypeDef",
|
|
@@ -278,7 +278,6 @@ __all__ = (
|
|
|
278
278
|
"QueryOutputTableTypeDef",
|
|
279
279
|
"ScanOutputTableTypeDef",
|
|
280
280
|
"UpdateItemOutputTableTypeDef",
|
|
281
|
-
"BatchExecuteStatementOutputTypeDef",
|
|
282
281
|
"BatchGetItemOutputTypeDef",
|
|
283
282
|
"DeleteItemOutputTypeDef",
|
|
284
283
|
"ExecuteStatementOutputTypeDef",
|
|
@@ -311,6 +310,7 @@ __all__ = (
|
|
|
311
310
|
"ListImportsOutputTypeDef",
|
|
312
311
|
"BatchWriteItemInputServiceResourceBatchWriteItemTypeDef",
|
|
313
312
|
"BatchWriteItemOutputServiceResourceTypeDef",
|
|
313
|
+
"BatchExecuteStatementOutputTypeDef",
|
|
314
314
|
"TransactGetItemsInputRequestTypeDef",
|
|
315
315
|
"BatchWriteItemInputRequestTypeDef",
|
|
316
316
|
"BatchWriteItemOutputTypeDef",
|
|
@@ -605,15 +605,6 @@ class KeysAndAttributesServiceResourceTypeDef(
|
|
|
605
605
|
pass
|
|
606
606
|
|
|
607
607
|
|
|
608
|
-
BatchStatementErrorTypeDef = TypedDict(
|
|
609
|
-
"BatchStatementErrorTypeDef",
|
|
610
|
-
{
|
|
611
|
-
"Code": BatchStatementErrorCodeEnumType,
|
|
612
|
-
"Message": str,
|
|
613
|
-
},
|
|
614
|
-
total=False,
|
|
615
|
-
)
|
|
616
|
-
|
|
617
608
|
ItemCollectionMetricsServiceResourceTypeDef = TypedDict(
|
|
618
609
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
619
610
|
{
|
|
@@ -1836,6 +1827,16 @@ AttributeValueUpdateTypeDef = TypedDict(
|
|
|
1836
1827
|
total=False,
|
|
1837
1828
|
)
|
|
1838
1829
|
|
|
1830
|
+
BatchStatementErrorTypeDef = TypedDict(
|
|
1831
|
+
"BatchStatementErrorTypeDef",
|
|
1832
|
+
{
|
|
1833
|
+
"Code": BatchStatementErrorCodeEnumType,
|
|
1834
|
+
"Message": str,
|
|
1835
|
+
"Item": Dict[str, AttributeValueTypeDef],
|
|
1836
|
+
},
|
|
1837
|
+
total=False,
|
|
1838
|
+
)
|
|
1839
|
+
|
|
1839
1840
|
_RequiredBatchStatementRequestTypeDef = TypedDict(
|
|
1840
1841
|
"_RequiredBatchStatementRequestTypeDef",
|
|
1841
1842
|
{
|
|
@@ -1867,6 +1868,7 @@ _OptionalBatchStatementRequestTypeDef = TypedDict(
|
|
|
1867
1868
|
]
|
|
1868
1869
|
],
|
|
1869
1870
|
"ConsistentRead": bool,
|
|
1871
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
1870
1872
|
},
|
|
1871
1873
|
total=False,
|
|
1872
1874
|
)
|
|
@@ -2109,6 +2111,7 @@ _OptionalExecuteStatementInputRequestTypeDef = TypedDict(
|
|
|
2109
2111
|
"NextToken": str,
|
|
2110
2112
|
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
2111
2113
|
"Limit": int,
|
|
2114
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
2112
2115
|
},
|
|
2113
2116
|
total=False,
|
|
2114
2117
|
)
|
|
@@ -2352,6 +2355,7 @@ _OptionalParameterizedStatementTypeDef = TypedDict(
|
|
|
2352
2355
|
],
|
|
2353
2356
|
]
|
|
2354
2357
|
],
|
|
2358
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
2355
2359
|
},
|
|
2356
2360
|
total=False,
|
|
2357
2361
|
)
|
|
@@ -2604,16 +2608,6 @@ class BatchGetItemInputServiceResourceBatchGetItemTypeDef(
|
|
|
2604
2608
|
pass
|
|
2605
2609
|
|
|
2606
2610
|
|
|
2607
|
-
BatchStatementResponseTypeDef = TypedDict(
|
|
2608
|
-
"BatchStatementResponseTypeDef",
|
|
2609
|
-
{
|
|
2610
|
-
"Error": BatchStatementErrorTypeDef,
|
|
2611
|
-
"TableName": str,
|
|
2612
|
-
"Item": Dict[str, AttributeValueTypeDef],
|
|
2613
|
-
},
|
|
2614
|
-
total=False,
|
|
2615
|
-
)
|
|
2616
|
-
|
|
2617
2611
|
ConsumedCapacityServiceResourceTypeDef = TypedDict(
|
|
2618
2612
|
"ConsumedCapacityServiceResourceTypeDef",
|
|
2619
2613
|
{
|
|
@@ -3130,6 +3124,7 @@ _OptionalDeleteItemInputTableDeleteItemTypeDef = TypedDict(
|
|
|
3130
3124
|
None,
|
|
3131
3125
|
],
|
|
3132
3126
|
],
|
|
3127
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3133
3128
|
},
|
|
3134
3129
|
total=False,
|
|
3135
3130
|
)
|
|
@@ -3194,6 +3189,7 @@ _OptionalPutItemInputTablePutItemTypeDef = TypedDict(
|
|
|
3194
3189
|
None,
|
|
3195
3190
|
],
|
|
3196
3191
|
],
|
|
3192
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3197
3193
|
},
|
|
3198
3194
|
total=False,
|
|
3199
3195
|
)
|
|
@@ -3260,6 +3256,7 @@ _OptionalUpdateItemInputTableUpdateItemTypeDef = TypedDict(
|
|
|
3260
3256
|
None,
|
|
3261
3257
|
],
|
|
3262
3258
|
],
|
|
3259
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3263
3260
|
},
|
|
3264
3261
|
total=False,
|
|
3265
3262
|
)
|
|
@@ -3656,6 +3653,16 @@ UpdateTimeToLiveOutputTypeDef = TypedDict(
|
|
|
3656
3653
|
},
|
|
3657
3654
|
)
|
|
3658
3655
|
|
|
3656
|
+
BatchStatementResponseTypeDef = TypedDict(
|
|
3657
|
+
"BatchStatementResponseTypeDef",
|
|
3658
|
+
{
|
|
3659
|
+
"Error": BatchStatementErrorTypeDef,
|
|
3660
|
+
"TableName": str,
|
|
3661
|
+
"Item": Dict[str, AttributeValueTypeDef],
|
|
3662
|
+
},
|
|
3663
|
+
total=False,
|
|
3664
|
+
)
|
|
3665
|
+
|
|
3659
3666
|
_RequiredBatchExecuteStatementInputRequestTypeDef = TypedDict(
|
|
3660
3667
|
"_RequiredBatchExecuteStatementInputRequestTypeDef",
|
|
3661
3668
|
{
|
|
@@ -3891,6 +3898,7 @@ _OptionalDeleteItemInputRequestTypeDef = TypedDict(
|
|
|
3891
3898
|
],
|
|
3892
3899
|
],
|
|
3893
3900
|
],
|
|
3901
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3894
3902
|
},
|
|
3895
3903
|
total=False,
|
|
3896
3904
|
)
|
|
@@ -3962,6 +3970,7 @@ _OptionalPutItemInputRequestTypeDef = TypedDict(
|
|
|
3962
3970
|
],
|
|
3963
3971
|
],
|
|
3964
3972
|
],
|
|
3973
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3965
3974
|
},
|
|
3966
3975
|
total=False,
|
|
3967
3976
|
)
|
|
@@ -4035,6 +4044,7 @@ _OptionalUpdateItemInputRequestTypeDef = TypedDict(
|
|
|
4035
4044
|
],
|
|
4036
4045
|
],
|
|
4037
4046
|
],
|
|
4047
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
4038
4048
|
},
|
|
4039
4049
|
total=False,
|
|
4040
4050
|
)
|
|
@@ -4384,15 +4394,6 @@ UpdateItemOutputTableTypeDef = TypedDict(
|
|
|
4384
4394
|
},
|
|
4385
4395
|
)
|
|
4386
4396
|
|
|
4387
|
-
BatchExecuteStatementOutputTypeDef = TypedDict(
|
|
4388
|
-
"BatchExecuteStatementOutputTypeDef",
|
|
4389
|
-
{
|
|
4390
|
-
"Responses": List[BatchStatementResponseTypeDef],
|
|
4391
|
-
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4392
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4393
|
-
},
|
|
4394
|
-
)
|
|
4395
|
-
|
|
4396
4397
|
BatchGetItemOutputTypeDef = TypedDict(
|
|
4397
4398
|
"BatchGetItemOutputTypeDef",
|
|
4398
4399
|
{
|
|
@@ -4889,6 +4890,15 @@ BatchWriteItemOutputServiceResourceTypeDef = TypedDict(
|
|
|
4889
4890
|
},
|
|
4890
4891
|
)
|
|
4891
4892
|
|
|
4893
|
+
BatchExecuteStatementOutputTypeDef = TypedDict(
|
|
4894
|
+
"BatchExecuteStatementOutputTypeDef",
|
|
4895
|
+
{
|
|
4896
|
+
"Responses": List[BatchStatementResponseTypeDef],
|
|
4897
|
+
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4898
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4899
|
+
},
|
|
4900
|
+
)
|
|
4901
|
+
|
|
4892
4902
|
_RequiredTransactGetItemsInputRequestTypeDef = TypedDict(
|
|
4893
4903
|
"_RequiredTransactGetItemsInputRequestTypeDef",
|
|
4894
4904
|
{
|
|
@@ -77,7 +77,6 @@ __all__ = (
|
|
|
77
77
|
"BackupSummaryTableTypeDef",
|
|
78
78
|
"BackupSummaryTypeDef",
|
|
79
79
|
"KeysAndAttributesServiceResourceTypeDef",
|
|
80
|
-
"BatchStatementErrorTypeDef",
|
|
81
80
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
82
81
|
"BillingModeSummaryTableTypeDef",
|
|
83
82
|
"BillingModeSummaryTypeDef",
|
|
@@ -179,6 +178,7 @@ __all__ = (
|
|
|
179
178
|
"TableClassSummaryResponseMetadataTypeDef",
|
|
180
179
|
"UpdateContributorInsightsOutputTypeDef",
|
|
181
180
|
"AttributeValueUpdateTypeDef",
|
|
181
|
+
"BatchStatementErrorTypeDef",
|
|
182
182
|
"BatchStatementRequestTypeDef",
|
|
183
183
|
"ConditionCheckTypeDef",
|
|
184
184
|
"ConditionTypeDef",
|
|
@@ -201,7 +201,6 @@ __all__ = (
|
|
|
201
201
|
"ListBackupsOutputTableTypeDef",
|
|
202
202
|
"ListBackupsOutputTypeDef",
|
|
203
203
|
"BatchGetItemInputServiceResourceBatchGetItemTypeDef",
|
|
204
|
-
"BatchStatementResponseTypeDef",
|
|
205
204
|
"ConsumedCapacityServiceResourceTypeDef",
|
|
206
205
|
"ConsumedCapacityTableTypeDef",
|
|
207
206
|
"ConsumedCapacityTypeDef",
|
|
@@ -257,6 +256,7 @@ __all__ = (
|
|
|
257
256
|
"WriteRequestServiceResourceTypeDef",
|
|
258
257
|
"UpdateTimeToLiveInputRequestTypeDef",
|
|
259
258
|
"UpdateTimeToLiveOutputTypeDef",
|
|
259
|
+
"BatchStatementResponseTypeDef",
|
|
260
260
|
"BatchExecuteStatementInputRequestTypeDef",
|
|
261
261
|
"QueryInputRequestTypeDef",
|
|
262
262
|
"ScanInputRequestTypeDef",
|
|
@@ -277,7 +277,6 @@ __all__ = (
|
|
|
277
277
|
"QueryOutputTableTypeDef",
|
|
278
278
|
"ScanOutputTableTypeDef",
|
|
279
279
|
"UpdateItemOutputTableTypeDef",
|
|
280
|
-
"BatchExecuteStatementOutputTypeDef",
|
|
281
280
|
"BatchGetItemOutputTypeDef",
|
|
282
281
|
"DeleteItemOutputTypeDef",
|
|
283
282
|
"ExecuteStatementOutputTypeDef",
|
|
@@ -310,6 +309,7 @@ __all__ = (
|
|
|
310
309
|
"ListImportsOutputTypeDef",
|
|
311
310
|
"BatchWriteItemInputServiceResourceBatchWriteItemTypeDef",
|
|
312
311
|
"BatchWriteItemOutputServiceResourceTypeDef",
|
|
312
|
+
"BatchExecuteStatementOutputTypeDef",
|
|
313
313
|
"TransactGetItemsInputRequestTypeDef",
|
|
314
314
|
"BatchWriteItemInputRequestTypeDef",
|
|
315
315
|
"BatchWriteItemOutputTypeDef",
|
|
@@ -596,15 +596,6 @@ class KeysAndAttributesServiceResourceTypeDef(
|
|
|
596
596
|
):
|
|
597
597
|
pass
|
|
598
598
|
|
|
599
|
-
BatchStatementErrorTypeDef = TypedDict(
|
|
600
|
-
"BatchStatementErrorTypeDef",
|
|
601
|
-
{
|
|
602
|
-
"Code": BatchStatementErrorCodeEnumType,
|
|
603
|
-
"Message": str,
|
|
604
|
-
},
|
|
605
|
-
total=False,
|
|
606
|
-
)
|
|
607
|
-
|
|
608
599
|
ItemCollectionMetricsServiceResourceTypeDef = TypedDict(
|
|
609
600
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
610
601
|
{
|
|
@@ -1803,6 +1794,16 @@ AttributeValueUpdateTypeDef = TypedDict(
|
|
|
1803
1794
|
total=False,
|
|
1804
1795
|
)
|
|
1805
1796
|
|
|
1797
|
+
BatchStatementErrorTypeDef = TypedDict(
|
|
1798
|
+
"BatchStatementErrorTypeDef",
|
|
1799
|
+
{
|
|
1800
|
+
"Code": BatchStatementErrorCodeEnumType,
|
|
1801
|
+
"Message": str,
|
|
1802
|
+
"Item": Dict[str, AttributeValueTypeDef],
|
|
1803
|
+
},
|
|
1804
|
+
total=False,
|
|
1805
|
+
)
|
|
1806
|
+
|
|
1806
1807
|
_RequiredBatchStatementRequestTypeDef = TypedDict(
|
|
1807
1808
|
"_RequiredBatchStatementRequestTypeDef",
|
|
1808
1809
|
{
|
|
@@ -1834,6 +1835,7 @@ _OptionalBatchStatementRequestTypeDef = TypedDict(
|
|
|
1834
1835
|
]
|
|
1835
1836
|
],
|
|
1836
1837
|
"ConsistentRead": bool,
|
|
1838
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
1837
1839
|
},
|
|
1838
1840
|
total=False,
|
|
1839
1841
|
)
|
|
@@ -2068,6 +2070,7 @@ _OptionalExecuteStatementInputRequestTypeDef = TypedDict(
|
|
|
2068
2070
|
"NextToken": str,
|
|
2069
2071
|
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
2070
2072
|
"Limit": int,
|
|
2073
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
2071
2074
|
},
|
|
2072
2075
|
total=False,
|
|
2073
2076
|
)
|
|
@@ -2303,6 +2306,7 @@ _OptionalParameterizedStatementTypeDef = TypedDict(
|
|
|
2303
2306
|
],
|
|
2304
2307
|
]
|
|
2305
2308
|
],
|
|
2309
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
2306
2310
|
},
|
|
2307
2311
|
total=False,
|
|
2308
2312
|
)
|
|
@@ -2545,16 +2549,6 @@ class BatchGetItemInputServiceResourceBatchGetItemTypeDef(
|
|
|
2545
2549
|
):
|
|
2546
2550
|
pass
|
|
2547
2551
|
|
|
2548
|
-
BatchStatementResponseTypeDef = TypedDict(
|
|
2549
|
-
"BatchStatementResponseTypeDef",
|
|
2550
|
-
{
|
|
2551
|
-
"Error": BatchStatementErrorTypeDef,
|
|
2552
|
-
"TableName": str,
|
|
2553
|
-
"Item": Dict[str, AttributeValueTypeDef],
|
|
2554
|
-
},
|
|
2555
|
-
total=False,
|
|
2556
|
-
)
|
|
2557
|
-
|
|
2558
2552
|
ConsumedCapacityServiceResourceTypeDef = TypedDict(
|
|
2559
2553
|
"ConsumedCapacityServiceResourceTypeDef",
|
|
2560
2554
|
{
|
|
@@ -3057,6 +3051,7 @@ _OptionalDeleteItemInputTableDeleteItemTypeDef = TypedDict(
|
|
|
3057
3051
|
None,
|
|
3058
3052
|
],
|
|
3059
3053
|
],
|
|
3054
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3060
3055
|
},
|
|
3061
3056
|
total=False,
|
|
3062
3057
|
)
|
|
@@ -3119,6 +3114,7 @@ _OptionalPutItemInputTablePutItemTypeDef = TypedDict(
|
|
|
3119
3114
|
None,
|
|
3120
3115
|
],
|
|
3121
3116
|
],
|
|
3117
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3122
3118
|
},
|
|
3123
3119
|
total=False,
|
|
3124
3120
|
)
|
|
@@ -3183,6 +3179,7 @@ _OptionalUpdateItemInputTableUpdateItemTypeDef = TypedDict(
|
|
|
3183
3179
|
None,
|
|
3184
3180
|
],
|
|
3185
3181
|
],
|
|
3182
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3186
3183
|
},
|
|
3187
3184
|
total=False,
|
|
3188
3185
|
)
|
|
@@ -3565,6 +3562,16 @@ UpdateTimeToLiveOutputTypeDef = TypedDict(
|
|
|
3565
3562
|
},
|
|
3566
3563
|
)
|
|
3567
3564
|
|
|
3565
|
+
BatchStatementResponseTypeDef = TypedDict(
|
|
3566
|
+
"BatchStatementResponseTypeDef",
|
|
3567
|
+
{
|
|
3568
|
+
"Error": BatchStatementErrorTypeDef,
|
|
3569
|
+
"TableName": str,
|
|
3570
|
+
"Item": Dict[str, AttributeValueTypeDef],
|
|
3571
|
+
},
|
|
3572
|
+
total=False,
|
|
3573
|
+
)
|
|
3574
|
+
|
|
3568
3575
|
_RequiredBatchExecuteStatementInputRequestTypeDef = TypedDict(
|
|
3569
3576
|
"_RequiredBatchExecuteStatementInputRequestTypeDef",
|
|
3570
3577
|
{
|
|
@@ -3794,6 +3801,7 @@ _OptionalDeleteItemInputRequestTypeDef = TypedDict(
|
|
|
3794
3801
|
],
|
|
3795
3802
|
],
|
|
3796
3803
|
],
|
|
3804
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3797
3805
|
},
|
|
3798
3806
|
total=False,
|
|
3799
3807
|
)
|
|
@@ -3863,6 +3871,7 @@ _OptionalPutItemInputRequestTypeDef = TypedDict(
|
|
|
3863
3871
|
],
|
|
3864
3872
|
],
|
|
3865
3873
|
],
|
|
3874
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3866
3875
|
},
|
|
3867
3876
|
total=False,
|
|
3868
3877
|
)
|
|
@@ -3934,6 +3943,7 @@ _OptionalUpdateItemInputRequestTypeDef = TypedDict(
|
|
|
3934
3943
|
],
|
|
3935
3944
|
],
|
|
3936
3945
|
],
|
|
3946
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3937
3947
|
},
|
|
3938
3948
|
total=False,
|
|
3939
3949
|
)
|
|
@@ -4277,15 +4287,6 @@ UpdateItemOutputTableTypeDef = TypedDict(
|
|
|
4277
4287
|
},
|
|
4278
4288
|
)
|
|
4279
4289
|
|
|
4280
|
-
BatchExecuteStatementOutputTypeDef = TypedDict(
|
|
4281
|
-
"BatchExecuteStatementOutputTypeDef",
|
|
4282
|
-
{
|
|
4283
|
-
"Responses": List[BatchStatementResponseTypeDef],
|
|
4284
|
-
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4285
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4286
|
-
},
|
|
4287
|
-
)
|
|
4288
|
-
|
|
4289
4290
|
BatchGetItemOutputTypeDef = TypedDict(
|
|
4290
4291
|
"BatchGetItemOutputTypeDef",
|
|
4291
4292
|
{
|
|
@@ -4762,6 +4763,15 @@ BatchWriteItemOutputServiceResourceTypeDef = TypedDict(
|
|
|
4762
4763
|
},
|
|
4763
4764
|
)
|
|
4764
4765
|
|
|
4766
|
+
BatchExecuteStatementOutputTypeDef = TypedDict(
|
|
4767
|
+
"BatchExecuteStatementOutputTypeDef",
|
|
4768
|
+
{
|
|
4769
|
+
"Responses": List[BatchStatementResponseTypeDef],
|
|
4770
|
+
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4771
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4772
|
+
},
|
|
4773
|
+
)
|
|
4774
|
+
|
|
4765
4775
|
_RequiredTransactGetItemsInputRequestTypeDef = TypedDict(
|
|
4766
4776
|
"_RequiredTransactGetItemsInputRequestTypeDef",
|
|
4767
4777
|
{
|
mypy_boto3_dynamodb/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-dynamodb
|
|
3
|
-
Version: 1.26.
|
|
4
|
-
Summary: Type annotations for boto3.DynamoDB 1.26.
|
|
3
|
+
Version: 1.26.164
|
|
4
|
+
Summary: Type annotations for boto3.DynamoDB 1.26.164 service generated with mypy-boto3-builder 7.14.5
|
|
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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.DynamoDB 1.26.
|
|
46
|
+
[boto3.DynamoDB 1.26.164](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -500,7 +500,6 @@ from mypy_boto3_dynamodb.type_defs import (
|
|
|
500
500
|
BackupSummaryTableTypeDef,
|
|
501
501
|
BackupSummaryTypeDef,
|
|
502
502
|
KeysAndAttributesServiceResourceTypeDef,
|
|
503
|
-
BatchStatementErrorTypeDef,
|
|
504
503
|
ItemCollectionMetricsServiceResourceTypeDef,
|
|
505
504
|
BillingModeSummaryTableTypeDef,
|
|
506
505
|
BillingModeSummaryTypeDef,
|
|
@@ -602,6 +601,7 @@ from mypy_boto3_dynamodb.type_defs import (
|
|
|
602
601
|
TableClassSummaryResponseMetadataTypeDef,
|
|
603
602
|
UpdateContributorInsightsOutputTypeDef,
|
|
604
603
|
AttributeValueUpdateTypeDef,
|
|
604
|
+
BatchStatementErrorTypeDef,
|
|
605
605
|
BatchStatementRequestTypeDef,
|
|
606
606
|
ConditionCheckTypeDef,
|
|
607
607
|
ConditionTypeDef,
|
|
@@ -624,7 +624,6 @@ from mypy_boto3_dynamodb.type_defs import (
|
|
|
624
624
|
ListBackupsOutputTableTypeDef,
|
|
625
625
|
ListBackupsOutputTypeDef,
|
|
626
626
|
BatchGetItemInputServiceResourceBatchGetItemTypeDef,
|
|
627
|
-
BatchStatementResponseTypeDef,
|
|
628
627
|
ConsumedCapacityServiceResourceTypeDef,
|
|
629
628
|
ConsumedCapacityTableTypeDef,
|
|
630
629
|
ConsumedCapacityTypeDef,
|
|
@@ -680,6 +679,7 @@ from mypy_boto3_dynamodb.type_defs import (
|
|
|
680
679
|
WriteRequestServiceResourceTypeDef,
|
|
681
680
|
UpdateTimeToLiveInputRequestTypeDef,
|
|
682
681
|
UpdateTimeToLiveOutputTypeDef,
|
|
682
|
+
BatchStatementResponseTypeDef,
|
|
683
683
|
BatchExecuteStatementInputRequestTypeDef,
|
|
684
684
|
QueryInputRequestTypeDef,
|
|
685
685
|
ScanInputRequestTypeDef,
|
|
@@ -700,7 +700,6 @@ from mypy_boto3_dynamodb.type_defs import (
|
|
|
700
700
|
QueryOutputTableTypeDef,
|
|
701
701
|
ScanOutputTableTypeDef,
|
|
702
702
|
UpdateItemOutputTableTypeDef,
|
|
703
|
-
BatchExecuteStatementOutputTypeDef,
|
|
704
703
|
BatchGetItemOutputTypeDef,
|
|
705
704
|
DeleteItemOutputTypeDef,
|
|
706
705
|
ExecuteStatementOutputTypeDef,
|
|
@@ -733,6 +732,7 @@ from mypy_boto3_dynamodb.type_defs import (
|
|
|
733
732
|
ListImportsOutputTypeDef,
|
|
734
733
|
BatchWriteItemInputServiceResourceBatchWriteItemTypeDef,
|
|
735
734
|
BatchWriteItemOutputServiceResourceTypeDef,
|
|
735
|
+
BatchExecuteStatementOutputTypeDef,
|
|
736
736
|
TransactGetItemsInputRequestTypeDef,
|
|
737
737
|
BatchWriteItemInputRequestTypeDef,
|
|
738
738
|
BatchWriteItemOutputTypeDef,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mypy_boto3_dynamodb/__init__.py,sha256=MqkQHSL7HZrwHOth1N8qUU_W6QzZgptAYFvyX5PZ898,1858
|
|
2
|
+
mypy_boto3_dynamodb/__init__.pyi,sha256=OXYWs8hdRkQ_OZh244Cqc_KyEsNXX6yonMASGKrm9cQ,1856
|
|
3
|
+
mypy_boto3_dynamodb/__main__.py,sha256=c1yDydU73rwt9UWNJScF9wCK3vsFiBU8xu9QvZbZ8nk,914
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=b976PR5e27G9O-QRoAOggAEcoo_zBpS-TBgeHBoxM88,54381
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=wWtlhQYdNIfxic3dv841d5ATRH9m0KOBJe1UF35Xfz0,54314
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=as3tf2ei8r0ROldLS5Fhi0Md-y4ELHApwbFmOEYeQpE,12863
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=fB-ECQ9fv7Av9k-qWY0R45tulI9jH0G012JeRqcVqps,12861
|
|
8
|
+
mypy_boto3_dynamodb/paginator.py,sha256=lniP02quE49uhzrvI8tanPSif-ZMza1JDUlShuqKQ0c,8360
|
|
9
|
+
mypy_boto3_dynamodb/paginator.pyi,sha256=diNqfj_4cJaOMh-El2koEv19NINREJpyRP0L24qSAvo,8353
|
|
10
|
+
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_dynamodb/service_resource.py,sha256=U0msZZGarfn5aiBp-cr9RMwEO8l4uoTsxx3tzKdHJYA,27454
|
|
12
|
+
mypy_boto3_dynamodb/service_resource.pyi,sha256=cpjZsluZrHTRel5rhkqLXdBZpejNOCMBDWqyoSuVnPY,27427
|
|
13
|
+
mypy_boto3_dynamodb/type_defs.py,sha256=uWOp7kahVkUbKw52QY2fe94Jnj-BmBOH0Q4ZPme047I,152746
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=ec6eNm1hQZEbPlCoGbMHPL8u_Rqs05w62xmqIgWfRI4,152593
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=E0_VDfmFoWg2DxST0YyPd0hkRZsg32ylySbhT86vHs8,62
|
|
16
|
+
mypy_boto3_dynamodb/waiter.py,sha256=tkG-N51VJGQd8hhItuTRQzvHUjw1UFQBnEdimdQAsus,2258
|
|
17
|
+
mypy_boto3_dynamodb/waiter.pyi,sha256=gZnEmkkAswkT3_2uIBq6oDEt4BtKjhPoXJ_HWmzEACo,2256
|
|
18
|
+
mypy_boto3_dynamodb-1.26.164.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.26.164.dist-info/METADATA,sha256=WJuCofkWPVZffUV37IDGOioFVH3acMrC_obt7xLb7jw,28320
|
|
20
|
+
mypy_boto3_dynamodb-1.26.164.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
21
|
+
mypy_boto3_dynamodb-1.26.164.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.26.164.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
mypy_boto3_dynamodb/__init__.py,sha256=MqkQHSL7HZrwHOth1N8qUU_W6QzZgptAYFvyX5PZ898,1858
|
|
2
|
-
mypy_boto3_dynamodb/__init__.pyi,sha256=OXYWs8hdRkQ_OZh244Cqc_KyEsNXX6yonMASGKrm9cQ,1856
|
|
3
|
-
mypy_boto3_dynamodb/__main__.py,sha256=6GdmmK8gi4VapPOKP3mDmZUBwI8mCy9YB-bg8r3xT_o,914
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=7wDuZ7oMGBDFZ0XvaKXIrYOf3qt_47kVu-_gnCYm0_g,53968
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=xojdUiORa8BAgT6TFgFZk7EBz9iUvUTLstpXgZHozHw,53901
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=nKto9mIKHhArwbSGV_Ro_xrIe-5Az39_fjtvqrZVgng,12846
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=vmZxyeVlLhR7oriEUt2X6C24sbr_o6ZQxucx1HxO778,12844
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=lniP02quE49uhzrvI8tanPSif-ZMza1JDUlShuqKQ0c,8360
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=diNqfj_4cJaOMh-El2koEv19NINREJpyRP0L24qSAvo,8353
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=SUYLa6XfwpgUo85pqfEF1GMI4z-NpjQ5wYO3DmrcxuA,27133
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=jePTeUufnC2OBU9ukv-6CieVXZvvK241g15MWnT7-3g,27106
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=Tn-smbVXVSPMT7lUorDR3F7iiJIOOcHoTgjcxzLxK-o,151904
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=UfiAN4ZortEitwUDZ26ygFOADOFgxcm53A_jQut6-yk,151751
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=lKgpj_GjbKqr3p5NUFLxXcm1sHozL8DPLPjr0iA2xTA,62
|
|
16
|
-
mypy_boto3_dynamodb/waiter.py,sha256=tkG-N51VJGQd8hhItuTRQzvHUjw1UFQBnEdimdQAsus,2258
|
|
17
|
-
mypy_boto3_dynamodb/waiter.pyi,sha256=gZnEmkkAswkT3_2uIBq6oDEt4BtKjhPoXJ_HWmzEACo,2256
|
|
18
|
-
mypy_boto3_dynamodb-1.26.158.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.26.158.dist-info/METADATA,sha256=3rD6nJ0pWZxibhr9_sgWa-BqFvMXRamq2Ph3JHqB81E,28320
|
|
20
|
-
mypy_boto3_dynamodb-1.26.158.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
21
|
-
mypy_boto3_dynamodb-1.26.158.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.26.158.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_dynamodb-1.26.158.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/top_level.txt
RENAMED
|
File without changes
|