mypy-boto3-dynamodb 1.28.55__py3-none-any.whl → 1.28.66__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/__init__.py +1 -0
- mypy_boto3_dynamodb/__init__.pyi +1 -0
- mypy_boto3_dynamodb/__main__.py +3 -2
- mypy_boto3_dynamodb/client.py +1 -0
- mypy_boto3_dynamodb/client.pyi +1 -0
- mypy_boto3_dynamodb/literals.py +4 -0
- mypy_boto3_dynamodb/literals.pyi +4 -0
- mypy_boto3_dynamodb/paginator.py +1 -0
- mypy_boto3_dynamodb/paginator.pyi +1 -0
- mypy_boto3_dynamodb/service_resource.py +1 -0
- mypy_boto3_dynamodb/service_resource.pyi +1 -0
- mypy_boto3_dynamodb/type_defs.py +1 -0
- mypy_boto3_dynamodb/type_defs.pyi +1 -0
- mypy_boto3_dynamodb/version.py +2 -1
- mypy_boto3_dynamodb/waiter.py +1 -0
- mypy_boto3_dynamodb/waiter.pyi +1 -0
- {mypy_boto3_dynamodb-1.28.55.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/METADATA +3 -3
- mypy_boto3_dynamodb-1.28.66.dist-info/RECORD +22 -0
- mypy_boto3_dynamodb-1.28.55.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.28.55.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.28.55.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/WHEEL +0 -0
- {mypy_boto3_dynamodb-1.28.55.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/__init__.py
CHANGED
mypy_boto3_dynamodb/__init__.pyi
CHANGED
mypy_boto3_dynamodb/__main__.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import sys
|
|
5
6
|
|
|
6
7
|
|
|
@@ -9,7 +10,7 @@ def print_info() -> None:
|
|
|
9
10
|
Print package info to stdout.
|
|
10
11
|
"""
|
|
11
12
|
print(
|
|
12
|
-
"Type annotations for boto3.DynamoDB 1.28.
|
|
13
|
+
"Type annotations for boto3.DynamoDB 1.28.66\nVersion: 1.28.66\nBuilder version:"
|
|
13
14
|
" 7.19.0\nDocs: "
|
|
14
15
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb//\nBoto3 docs: "
|
|
15
16
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB\nOther"
|
|
@@ -22,7 +23,7 @@ def print_version() -> None:
|
|
|
22
23
|
"""
|
|
23
24
|
Print package version to stdout.
|
|
24
25
|
"""
|
|
25
|
-
print("1.28.
|
|
26
|
+
print("1.28.66")
|
|
26
27
|
|
|
27
28
|
|
|
28
29
|
def main() -> None:
|
mypy_boto3_dynamodb/client.py
CHANGED
mypy_boto3_dynamodb/client.pyi
CHANGED
mypy_boto3_dynamodb/literals.py
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
data: AttributeActionType = "ADD"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
|
+
|
|
14
15
|
import sys
|
|
15
16
|
|
|
16
17
|
if sys.version_info >= (3, 12):
|
|
@@ -196,6 +197,8 @@ ServiceName = Literal[
|
|
|
196
197
|
"backup-gateway",
|
|
197
198
|
"backupstorage",
|
|
198
199
|
"batch",
|
|
200
|
+
"bedrock",
|
|
201
|
+
"bedrock-runtime",
|
|
199
202
|
"billingconductor",
|
|
200
203
|
"braket",
|
|
201
204
|
"budgets",
|
|
@@ -250,6 +253,7 @@ ServiceName = Literal[
|
|
|
250
253
|
"dataexchange",
|
|
251
254
|
"datapipeline",
|
|
252
255
|
"datasync",
|
|
256
|
+
"datazone",
|
|
253
257
|
"dax",
|
|
254
258
|
"detective",
|
|
255
259
|
"devicefarm",
|
mypy_boto3_dynamodb/literals.pyi
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
data: AttributeActionType = "ADD"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
|
+
|
|
14
15
|
import sys
|
|
15
16
|
|
|
16
17
|
if sys.version_info >= (3, 12):
|
|
@@ -194,6 +195,8 @@ ServiceName = Literal[
|
|
|
194
195
|
"backup-gateway",
|
|
195
196
|
"backupstorage",
|
|
196
197
|
"batch",
|
|
198
|
+
"bedrock",
|
|
199
|
+
"bedrock-runtime",
|
|
197
200
|
"billingconductor",
|
|
198
201
|
"braket",
|
|
199
202
|
"budgets",
|
|
@@ -248,6 +251,7 @@ ServiceName = Literal[
|
|
|
248
251
|
"dataexchange",
|
|
249
252
|
"datapipeline",
|
|
250
253
|
"datasync",
|
|
254
|
+
"datazone",
|
|
251
255
|
"dax",
|
|
252
256
|
"detective",
|
|
253
257
|
"devicefarm",
|
mypy_boto3_dynamodb/paginator.py
CHANGED
mypy_boto3_dynamodb/type_defs.py
CHANGED
mypy_boto3_dynamodb/version.py
CHANGED
mypy_boto3_dynamodb/waiter.py
CHANGED
mypy_boto3_dynamodb/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-dynamodb
|
|
3
|
-
Version: 1.28.
|
|
4
|
-
Summary: Type annotations for boto3.DynamoDB 1.28.
|
|
3
|
+
Version: 1.28.66
|
|
4
|
+
Summary: Type annotations for boto3.DynamoDB 1.28.66 service generated with mypy-boto3-builder 7.19.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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.DynamoDB 1.28.
|
|
46
|
+
[boto3.DynamoDB 1.28.66](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/),
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mypy_boto3_dynamodb/__init__.py,sha256=4MPLwUMrXggGSAuIregEB9OPgK5lS38eH4VLQTv3RMk,1859
|
|
2
|
+
mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
|
|
3
|
+
mypy_boto3_dynamodb/__main__.py,sha256=ZKdKbY_iRiUFiUqaxIArLU39RKtWh23n5yiGIF7Fwuo,912
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=jnCm1XqC1qyqdSZ7To7yeLC-RO_h80i1dx9zcUBdWxs,48402
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=LJvA9_suZPIEpr_FBihZUbjzXpXIa3DSg0rHLFGmshI,48398
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=eD-2iQC8OQ818Tw-fae5PJhQpE_j1kONtPNIMkOq2VY,13234
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=tDhHRf6dP6xEuHt3sszPBX5gtBclNQyUXf_DUEtlRh8,13232
|
|
8
|
+
mypy_boto3_dynamodb/paginator.py,sha256=sIOcU0qDjyoOZODT_Fp0MU0XKUVbKMK6OlI8v20gzUQ,7478
|
|
9
|
+
mypy_boto3_dynamodb/paginator.pyi,sha256=zBqCT6ylik87Y-h1rqERyhUIDV90Cud753dmyxpAaK8,7471
|
|
10
|
+
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_dynamodb/service_resource.py,sha256=o9RlTankhRSvWtY8E2IwUj13m09lmKmDgFTvJ7ZO5fc,22531
|
|
12
|
+
mypy_boto3_dynamodb/service_resource.pyi,sha256=L7p4OApkahgrBi04A2eZw_8NwGAD5Fkq8Dy3IKS9Y6A,22526
|
|
13
|
+
mypy_boto3_dynamodb/type_defs.py,sha256=fowb3OMrYYltlhOZvKzqgOWHLkxpL-ijSiFxQZbNy_U,98088
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=78uagOoVloSBIGPZ6diMILF1aIAp-I7-rSSQaiAeezw,98087
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=Iuv_ViTpSfYVjg_NyxksuCkBqaIEuPnbzg1LKa64C0Q,62
|
|
16
|
+
mypy_boto3_dynamodb/waiter.py,sha256=7xcR5DzbFgG6mwzPduSlv_EelwquNvRJRo7L8ye-ig4,2259
|
|
17
|
+
mypy_boto3_dynamodb/waiter.pyi,sha256=oRlb0atdfvM7XJBKZuoBxq-5JiGytB6bfjUzQcL5kY8,2257
|
|
18
|
+
mypy_boto3_dynamodb-1.28.66.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.28.66.dist-info/METADATA,sha256=kBkE_pSKNh3LCVFEdVGQNGfdKfXqlnARqBF7YZmQ4kI,16224
|
|
20
|
+
mypy_boto3_dynamodb-1.28.66.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
21
|
+
mypy_boto3_dynamodb-1.28.66.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.28.66.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=QWq1ek7vqX-y_GCkkmYjwnn8ZcQtGvmBgjVfJP_jqcY,911
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=C26DKzF__fVTtI008Nv_FTRAbJlfzN3UKCzyXBtZi_o,48401
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=GM1M6hbDIeq5DeTxKbLH2sV8q4QsZ1ZbB9bQsNNUvuk,48397
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=2AUBUgZ_WrmXUAzQCY6Cd1UVYb74AnoZMQk5y7bNxmQ,13179
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=ty8yaQXoViEsu4uE5URcvhZE6PRyr0z6fJ1ZRxJrtj8,13177
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=1By6y-5de_R7EsEHIMB1BY17OYJBPiZv6fYeclsLhPs,7477
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=C0QpgXeRPQ2gzxfT98xufdF6zO1QshtkwZoDuIBs-0o,7470
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=hW0rG2xGUTYxr4wMEfbE6xZ7HYcsKK1JVHbcd-hTeis,22530
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=mH7XgaWcUSRf02qzw8y8SZqU4dMFo1YP1_bEl6g-y7U,22525
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=xGqKBdgrVZ1Sx9xaLh4y-YiEc51MNW_gaGTIqwgT_aw,98087
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=jj46YYyMFVqN4DDs7C6j8r_SieuZFMToxH5CwCDNfQg,98086
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=LmAJ1Uzc0lXh4Y3iqO00B6Y0_S2___9iqCtsdHDnz8o,61
|
|
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.28.55.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.28.55.dist-info/METADATA,sha256=jvpMhaocaTPmukO2_1-zUNAUInzgR1QEtOO18Y9jIwU,16224
|
|
20
|
-
mypy_boto3_dynamodb-1.28.55.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
21
|
-
mypy_boto3_dynamodb-1.28.55.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.28.55.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_dynamodb-1.28.55.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/top_level.txt
RENAMED
|
File without changes
|