mypy-boto3-dynamodb 1.26.152__py3-none-any.whl → 1.26.158__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/literals.py +2 -0
- mypy_boto3_dynamodb/literals.pyi +2 -0
- mypy_boto3_dynamodb/paginator.py +5 -5
- mypy_boto3_dynamodb/paginator.pyi +5 -5
- mypy_boto3_dynamodb/type_defs.py +364 -364
- mypy_boto3_dynamodb/type_defs.pyi +358 -358
- mypy_boto3_dynamodb/version.py +1 -1
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.158.dist-info}/METADATA +23 -23
- mypy_boto3_dynamodb-1.26.158.dist-info/RECORD +22 -0
- mypy_boto3_dynamodb-1.26.152.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.158.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.158.dist-info}/WHEEL +0 -0
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.158.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.158\nVersion: 1.26.158\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.158")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
mypy_boto3_dynamodb/literals.py
CHANGED
|
@@ -220,6 +220,7 @@ ServiceName = Literal[
|
|
|
220
220
|
"codecommit",
|
|
221
221
|
"codedeploy",
|
|
222
222
|
"codeguru-reviewer",
|
|
223
|
+
"codeguru-security",
|
|
223
224
|
"codeguruprofiler",
|
|
224
225
|
"codepipeline",
|
|
225
226
|
"codestar",
|
|
@@ -492,6 +493,7 @@ ServiceName = Literal[
|
|
|
492
493
|
"transcribe",
|
|
493
494
|
"transfer",
|
|
494
495
|
"translate",
|
|
496
|
+
"verifiedpermissions",
|
|
495
497
|
"voice-id",
|
|
496
498
|
"vpc-lattice",
|
|
497
499
|
"waf",
|
mypy_boto3_dynamodb/literals.pyi
CHANGED
|
@@ -218,6 +218,7 @@ ServiceName = Literal[
|
|
|
218
218
|
"codecommit",
|
|
219
219
|
"codedeploy",
|
|
220
220
|
"codeguru-reviewer",
|
|
221
|
+
"codeguru-security",
|
|
221
222
|
"codeguruprofiler",
|
|
222
223
|
"codepipeline",
|
|
223
224
|
"codestar",
|
|
@@ -490,6 +491,7 @@ ServiceName = Literal[
|
|
|
490
491
|
"transcribe",
|
|
491
492
|
"transfer",
|
|
492
493
|
"translate",
|
|
494
|
+
"verifiedpermissions",
|
|
493
495
|
"voice-id",
|
|
494
496
|
"vpc-lattice",
|
|
495
497
|
"waf",
|
mypy_boto3_dynamodb/paginator.py
CHANGED
|
@@ -81,7 +81,7 @@ class ListBackupsPaginator(Paginator):
|
|
|
81
81
|
TimeRangeLowerBound: Union[datetime, str] = ...,
|
|
82
82
|
TimeRangeUpperBound: Union[datetime, str] = ...,
|
|
83
83
|
BackupType: BackupTypeFilterType = ...,
|
|
84
|
-
PaginationConfig:
|
|
84
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
85
85
|
) -> _PageIterator[ListBackupsOutputTableTypeDef]:
|
|
86
86
|
"""
|
|
87
87
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.ListBackups.paginate)
|
|
@@ -96,7 +96,7 @@ class ListTablesPaginator(Paginator):
|
|
|
96
96
|
"""
|
|
97
97
|
|
|
98
98
|
def paginate(
|
|
99
|
-
self, *, PaginationConfig:
|
|
99
|
+
self, *, PaginationConfig: PaginatorConfigTypeDef = ...
|
|
100
100
|
) -> _PageIterator[ListTablesOutputTableTypeDef]:
|
|
101
101
|
"""
|
|
102
102
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.ListTables.paginate)
|
|
@@ -111,7 +111,7 @@ class ListTagsOfResourcePaginator(Paginator):
|
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
113
|
def paginate(
|
|
114
|
-
self, *, ResourceArn: str, PaginationConfig:
|
|
114
|
+
self, *, ResourceArn: str, PaginationConfig: PaginatorConfigTypeDef = ...
|
|
115
115
|
) -> _PageIterator[ListTagsOfResourceOutputTableTypeDef]:
|
|
116
116
|
"""
|
|
117
117
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.ListTagsOfResource.paginate)
|
|
@@ -161,7 +161,7 @@ class QueryPaginator(Paginator):
|
|
|
161
161
|
None,
|
|
162
162
|
],
|
|
163
163
|
] = ...,
|
|
164
|
-
PaginationConfig:
|
|
164
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
165
165
|
) -> _PageIterator[QueryOutputTableTypeDef]:
|
|
166
166
|
"""
|
|
167
167
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.Query.paginate)
|
|
@@ -210,7 +210,7 @@ class ScanPaginator(Paginator):
|
|
|
210
210
|
],
|
|
211
211
|
] = ...,
|
|
212
212
|
ConsistentRead: bool = ...,
|
|
213
|
-
PaginationConfig:
|
|
213
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
214
214
|
) -> _PageIterator[ScanOutputTableTypeDef]:
|
|
215
215
|
"""
|
|
216
216
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.Scan.paginate)
|
|
@@ -78,7 +78,7 @@ class ListBackupsPaginator(Paginator):
|
|
|
78
78
|
TimeRangeLowerBound: Union[datetime, str] = ...,
|
|
79
79
|
TimeRangeUpperBound: Union[datetime, str] = ...,
|
|
80
80
|
BackupType: BackupTypeFilterType = ...,
|
|
81
|
-
PaginationConfig:
|
|
81
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
82
82
|
) -> _PageIterator[ListBackupsOutputTableTypeDef]:
|
|
83
83
|
"""
|
|
84
84
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.ListBackups.paginate)
|
|
@@ -92,7 +92,7 @@ class ListTablesPaginator(Paginator):
|
|
|
92
92
|
"""
|
|
93
93
|
|
|
94
94
|
def paginate(
|
|
95
|
-
self, *, PaginationConfig:
|
|
95
|
+
self, *, PaginationConfig: PaginatorConfigTypeDef = ...
|
|
96
96
|
) -> _PageIterator[ListTablesOutputTableTypeDef]:
|
|
97
97
|
"""
|
|
98
98
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.ListTables.paginate)
|
|
@@ -106,7 +106,7 @@ class ListTagsOfResourcePaginator(Paginator):
|
|
|
106
106
|
"""
|
|
107
107
|
|
|
108
108
|
def paginate(
|
|
109
|
-
self, *, ResourceArn: str, PaginationConfig:
|
|
109
|
+
self, *, ResourceArn: str, PaginationConfig: PaginatorConfigTypeDef = ...
|
|
110
110
|
) -> _PageIterator[ListTagsOfResourceOutputTableTypeDef]:
|
|
111
111
|
"""
|
|
112
112
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.ListTagsOfResource.paginate)
|
|
@@ -155,7 +155,7 @@ class QueryPaginator(Paginator):
|
|
|
155
155
|
None,
|
|
156
156
|
],
|
|
157
157
|
] = ...,
|
|
158
|
-
PaginationConfig:
|
|
158
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
159
159
|
) -> _PageIterator[QueryOutputTableTypeDef]:
|
|
160
160
|
"""
|
|
161
161
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.Query.paginate)
|
|
@@ -203,7 +203,7 @@ class ScanPaginator(Paginator):
|
|
|
203
203
|
],
|
|
204
204
|
] = ...,
|
|
205
205
|
ConsistentRead: bool = ...,
|
|
206
|
-
PaginationConfig:
|
|
206
|
+
PaginationConfig: PaginatorConfigTypeDef = ...
|
|
207
207
|
) -> _PageIterator[ScanOutputTableTypeDef]:
|
|
208
208
|
"""
|
|
209
209
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Paginator.Scan.paginate)
|