mypy-boto3-timestream-write 1.28.36__py3-none-any.whl → 1.33.0__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.
Potentially problematic release.
This version of mypy-boto3-timestream-write might be problematic. Click here for more details.
- mypy_boto3_timestream_write/__init__.py +1 -0
- mypy_boto3_timestream_write/__init__.pyi +1 -0
- mypy_boto3_timestream_write/__main__.py +4 -3
- mypy_boto3_timestream_write/client.py +14 -9
- mypy_boto3_timestream_write/client.pyi +36 -9
- mypy_boto3_timestream_write/literals.py +17 -2
- mypy_boto3_timestream_write/literals.pyi +17 -2
- mypy_boto3_timestream_write/type_defs.py +1 -62
- mypy_boto3_timestream_write/type_defs.pyi +1 -62
- mypy_boto3_timestream_write/version.py +2 -1
- {mypy_boto3_timestream_write-1.28.36.dist-info → mypy_boto3_timestream_write-1.33.0.dist-info}/METADATA +6 -6
- mypy_boto3_timestream_write-1.33.0.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.28.36.dist-info → mypy_boto3_timestream_write-1.33.0.dist-info}/WHEEL +1 -1
- mypy_boto3_timestream_write-1.28.36.dist-info/RECORD +0 -16
- {mypy_boto3_timestream_write-1.28.36.dist-info → mypy_boto3_timestream_write-1.33.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_timestream_write-1.28.36.dist-info → mypy_boto3_timestream_write-1.33.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import sys
|
|
5
6
|
|
|
6
7
|
|
|
@@ -9,8 +10,8 @@ def print_info() -> None:
|
|
|
9
10
|
Print package info to stdout.
|
|
10
11
|
"""
|
|
11
12
|
print(
|
|
12
|
-
"Type annotations for boto3.TimestreamWrite 1.
|
|
13
|
-
" version: 7.
|
|
13
|
+
"Type annotations for boto3.TimestreamWrite 1.33.0\nVersion: 1.33.0\nBuilder"
|
|
14
|
+
" version: 7.20.3\nDocs: "
|
|
14
15
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write//\nBoto3 docs: "
|
|
15
16
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite\nOther"
|
|
16
17
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +23,7 @@ def print_version() -> None:
|
|
|
22
23
|
"""
|
|
23
24
|
Print package version to stdout.
|
|
24
25
|
"""
|
|
25
|
-
print("1.
|
|
26
|
+
print("1.33.0")
|
|
26
27
|
|
|
27
28
|
|
|
28
29
|
def main() -> None:
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
client: TimestreamWriteClient = session.client("timestream-write")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
+
|
|
16
17
|
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
18
|
|
|
18
19
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -47,7 +48,7 @@ from .type_defs import (
|
|
|
47
48
|
__all__ = ("TimestreamWriteClient",)
|
|
48
49
|
|
|
49
50
|
|
|
50
|
-
class BotocoreClientError(
|
|
51
|
+
class BotocoreClientError(Exception):
|
|
51
52
|
MSG_TEMPLATE: str
|
|
52
53
|
|
|
53
54
|
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
@@ -165,7 +166,8 @@ class TimestreamWriteClient(BaseClient):
|
|
|
165
166
|
def describe_batch_load_task(self, *, TaskId: str) -> DescribeBatchLoadTaskResponseTypeDef:
|
|
166
167
|
"""
|
|
167
168
|
Returns information about the batch load task, including configurations,
|
|
168
|
-
mappings, progress, and other
|
|
169
|
+
mappings, progress, and other
|
|
170
|
+
details.
|
|
169
171
|
|
|
170
172
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.describe_batch_load_task)
|
|
171
173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_batch_load_task)
|
|
@@ -192,7 +194,8 @@ class TimestreamWriteClient(BaseClient):
|
|
|
192
194
|
def describe_table(self, *, DatabaseName: str, TableName: str) -> DescribeTableResponseTypeDef:
|
|
193
195
|
"""
|
|
194
196
|
Returns information about the table, including the table name, database name,
|
|
195
|
-
retention duration of the memory store and the magnetic
|
|
197
|
+
retention duration of the memory store and the magnetic
|
|
198
|
+
store.
|
|
196
199
|
|
|
197
200
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.describe_table)
|
|
198
201
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_table)
|
|
@@ -217,7 +220,8 @@ class TimestreamWriteClient(BaseClient):
|
|
|
217
220
|
) -> ListBatchLoadTasksResponseTypeDef:
|
|
218
221
|
"""
|
|
219
222
|
Provides a list of batch load tasks, along with the name, status, when the task
|
|
220
|
-
is resumable until, and other
|
|
223
|
+
is resumable until, and other
|
|
224
|
+
details.
|
|
221
225
|
|
|
222
226
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.list_batch_load_tasks)
|
|
223
227
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_batch_load_tasks)
|
|
@@ -237,8 +241,9 @@ class TimestreamWriteClient(BaseClient):
|
|
|
237
241
|
self, *, DatabaseName: str = ..., NextToken: str = ..., MaxResults: int = ...
|
|
238
242
|
) -> ListTablesResponseTypeDef:
|
|
239
243
|
"""
|
|
240
|
-
Provides a list of tables, along with the name, status, and retention
|
|
241
|
-
of each
|
|
244
|
+
Provides a list of tables, along with the name, status, and retention
|
|
245
|
+
properties of each
|
|
246
|
+
table.
|
|
242
247
|
|
|
243
248
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.list_tables)
|
|
244
249
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_tables)
|
|
@@ -255,8 +260,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
255
260
|
def resume_batch_load_task(self, *, TaskId: str) -> Dict[str, Any]:
|
|
256
261
|
"""
|
|
257
262
|
See also: [AWS API
|
|
258
|
-
Documentation](https://docs.aws.amazon.com/goto/WebAPI/timestream-
|
|
259
|
-
write-2018-11-01/ResumeBatchLoadTask).
|
|
263
|
+
Documentation](https://docs.aws.amazon.com/goto/WebAPI/timestream-write-2018-11-01/ResumeBatchLoadTask).
|
|
260
264
|
|
|
261
265
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.resume_batch_load_task)
|
|
262
266
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#resume_batch_load_task)
|
|
@@ -297,7 +301,8 @@ class TimestreamWriteClient(BaseClient):
|
|
|
297
301
|
) -> UpdateTableResponseTypeDef:
|
|
298
302
|
"""
|
|
299
303
|
Modifies the retention duration of the memory store and magnetic store for your
|
|
300
|
-
Timestream
|
|
304
|
+
Timestream
|
|
305
|
+
table.
|
|
301
306
|
|
|
302
307
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.update_table)
|
|
303
308
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#update_table)
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
client: TimestreamWriteClient = session.client("timestream-write")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
+
|
|
16
17
|
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
18
|
|
|
18
19
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -46,7 +47,7 @@ from .type_defs import (
|
|
|
46
47
|
|
|
47
48
|
__all__ = ("TimestreamWriteClient",)
|
|
48
49
|
|
|
49
|
-
class BotocoreClientError(
|
|
50
|
+
class BotocoreClientError(Exception):
|
|
50
51
|
MSG_TEMPLATE: str
|
|
51
52
|
|
|
52
53
|
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
@@ -81,6 +82,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
81
82
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.exceptions)
|
|
82
83
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#exceptions)
|
|
83
84
|
"""
|
|
85
|
+
|
|
84
86
|
def can_paginate(self, operation_name: str) -> bool:
|
|
85
87
|
"""
|
|
86
88
|
Check if an operation can be paginated.
|
|
@@ -88,6 +90,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
88
90
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.can_paginate)
|
|
89
91
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#can_paginate)
|
|
90
92
|
"""
|
|
93
|
+
|
|
91
94
|
def close(self) -> None:
|
|
92
95
|
"""
|
|
93
96
|
Closes underlying endpoint connections.
|
|
@@ -95,6 +98,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
95
98
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.close)
|
|
96
99
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#close)
|
|
97
100
|
"""
|
|
101
|
+
|
|
98
102
|
def create_batch_load_task(
|
|
99
103
|
self,
|
|
100
104
|
*,
|
|
@@ -112,6 +116,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
112
116
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.create_batch_load_task)
|
|
113
117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#create_batch_load_task)
|
|
114
118
|
"""
|
|
119
|
+
|
|
115
120
|
def create_database(
|
|
116
121
|
self, *, DatabaseName: str, KmsKeyId: str = ..., Tags: Sequence[TagTypeDef] = ...
|
|
117
122
|
) -> CreateDatabaseResponseTypeDef:
|
|
@@ -121,6 +126,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
121
126
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.create_database)
|
|
122
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#create_database)
|
|
123
128
|
"""
|
|
129
|
+
|
|
124
130
|
def create_table(
|
|
125
131
|
self,
|
|
126
132
|
*,
|
|
@@ -137,6 +143,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
137
143
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.create_table)
|
|
138
144
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#create_table)
|
|
139
145
|
"""
|
|
146
|
+
|
|
140
147
|
def delete_database(self, *, DatabaseName: str) -> EmptyResponseMetadataTypeDef:
|
|
141
148
|
"""
|
|
142
149
|
Deletes a given Timestream database.
|
|
@@ -144,6 +151,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
144
151
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.delete_database)
|
|
145
152
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#delete_database)
|
|
146
153
|
"""
|
|
154
|
+
|
|
147
155
|
def delete_table(self, *, DatabaseName: str, TableName: str) -> EmptyResponseMetadataTypeDef:
|
|
148
156
|
"""
|
|
149
157
|
Deletes a given Timestream table.
|
|
@@ -151,14 +159,17 @@ class TimestreamWriteClient(BaseClient):
|
|
|
151
159
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.delete_table)
|
|
152
160
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#delete_table)
|
|
153
161
|
"""
|
|
162
|
+
|
|
154
163
|
def describe_batch_load_task(self, *, TaskId: str) -> DescribeBatchLoadTaskResponseTypeDef:
|
|
155
164
|
"""
|
|
156
165
|
Returns information about the batch load task, including configurations,
|
|
157
|
-
mappings, progress, and other
|
|
166
|
+
mappings, progress, and other
|
|
167
|
+
details.
|
|
158
168
|
|
|
159
169
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.describe_batch_load_task)
|
|
160
170
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_batch_load_task)
|
|
161
171
|
"""
|
|
172
|
+
|
|
162
173
|
def describe_database(self, *, DatabaseName: str) -> DescribeDatabaseResponseTypeDef:
|
|
163
174
|
"""
|
|
164
175
|
Returns information about the database, including the database name, time that
|
|
@@ -168,6 +179,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
168
179
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.describe_database)
|
|
169
180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_database)
|
|
170
181
|
"""
|
|
182
|
+
|
|
171
183
|
def describe_endpoints(self) -> DescribeEndpointsResponseTypeDef:
|
|
172
184
|
"""
|
|
173
185
|
Returns a list of available endpoints to make Timestream API calls against.
|
|
@@ -175,14 +187,17 @@ class TimestreamWriteClient(BaseClient):
|
|
|
175
187
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.describe_endpoints)
|
|
176
188
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_endpoints)
|
|
177
189
|
"""
|
|
190
|
+
|
|
178
191
|
def describe_table(self, *, DatabaseName: str, TableName: str) -> DescribeTableResponseTypeDef:
|
|
179
192
|
"""
|
|
180
193
|
Returns information about the table, including the table name, database name,
|
|
181
|
-
retention duration of the memory store and the magnetic
|
|
194
|
+
retention duration of the memory store and the magnetic
|
|
195
|
+
store.
|
|
182
196
|
|
|
183
197
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.describe_table)
|
|
184
198
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_table)
|
|
185
199
|
"""
|
|
200
|
+
|
|
186
201
|
def generate_presigned_url(
|
|
187
202
|
self,
|
|
188
203
|
ClientMethod: str,
|
|
@@ -196,16 +211,19 @@ class TimestreamWriteClient(BaseClient):
|
|
|
196
211
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.generate_presigned_url)
|
|
197
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#generate_presigned_url)
|
|
198
213
|
"""
|
|
214
|
+
|
|
199
215
|
def list_batch_load_tasks(
|
|
200
216
|
self, *, NextToken: str = ..., MaxResults: int = ..., TaskStatus: BatchLoadStatusType = ...
|
|
201
217
|
) -> ListBatchLoadTasksResponseTypeDef:
|
|
202
218
|
"""
|
|
203
219
|
Provides a list of batch load tasks, along with the name, status, when the task
|
|
204
|
-
is resumable until, and other
|
|
220
|
+
is resumable until, and other
|
|
221
|
+
details.
|
|
205
222
|
|
|
206
223
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.list_batch_load_tasks)
|
|
207
224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_batch_load_tasks)
|
|
208
225
|
"""
|
|
226
|
+
|
|
209
227
|
def list_databases(
|
|
210
228
|
self, *, NextToken: str = ..., MaxResults: int = ...
|
|
211
229
|
) -> ListDatabasesResponseTypeDef:
|
|
@@ -215,16 +233,19 @@ class TimestreamWriteClient(BaseClient):
|
|
|
215
233
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.list_databases)
|
|
216
234
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_databases)
|
|
217
235
|
"""
|
|
236
|
+
|
|
218
237
|
def list_tables(
|
|
219
238
|
self, *, DatabaseName: str = ..., NextToken: str = ..., MaxResults: int = ...
|
|
220
239
|
) -> ListTablesResponseTypeDef:
|
|
221
240
|
"""
|
|
222
|
-
Provides a list of tables, along with the name, status, and retention
|
|
223
|
-
of each
|
|
241
|
+
Provides a list of tables, along with the name, status, and retention
|
|
242
|
+
properties of each
|
|
243
|
+
table.
|
|
224
244
|
|
|
225
245
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.list_tables)
|
|
226
246
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_tables)
|
|
227
247
|
"""
|
|
248
|
+
|
|
228
249
|
def list_tags_for_resource(self, *, ResourceARN: str) -> ListTagsForResourceResponseTypeDef:
|
|
229
250
|
"""
|
|
230
251
|
Lists all tags on a Timestream resource.
|
|
@@ -232,15 +253,16 @@ class TimestreamWriteClient(BaseClient):
|
|
|
232
253
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.list_tags_for_resource)
|
|
233
254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_tags_for_resource)
|
|
234
255
|
"""
|
|
256
|
+
|
|
235
257
|
def resume_batch_load_task(self, *, TaskId: str) -> Dict[str, Any]:
|
|
236
258
|
"""
|
|
237
259
|
See also: [AWS API
|
|
238
|
-
Documentation](https://docs.aws.amazon.com/goto/WebAPI/timestream-
|
|
239
|
-
write-2018-11-01/ResumeBatchLoadTask).
|
|
260
|
+
Documentation](https://docs.aws.amazon.com/goto/WebAPI/timestream-write-2018-11-01/ResumeBatchLoadTask).
|
|
240
261
|
|
|
241
262
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.resume_batch_load_task)
|
|
242
263
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#resume_batch_load_task)
|
|
243
264
|
"""
|
|
265
|
+
|
|
244
266
|
def tag_resource(self, *, ResourceARN: str, Tags: Sequence[TagTypeDef]) -> Dict[str, Any]:
|
|
245
267
|
"""
|
|
246
268
|
Associates a set of tags with a Timestream resource.
|
|
@@ -248,6 +270,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
248
270
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.tag_resource)
|
|
249
271
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#tag_resource)
|
|
250
272
|
"""
|
|
273
|
+
|
|
251
274
|
def untag_resource(self, *, ResourceARN: str, TagKeys: Sequence[str]) -> Dict[str, Any]:
|
|
252
275
|
"""
|
|
253
276
|
Removes the association of tags from a Timestream resource.
|
|
@@ -255,6 +278,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
255
278
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.untag_resource)
|
|
256
279
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#untag_resource)
|
|
257
280
|
"""
|
|
281
|
+
|
|
258
282
|
def update_database(self, *, DatabaseName: str, KmsKeyId: str) -> UpdateDatabaseResponseTypeDef:
|
|
259
283
|
"""
|
|
260
284
|
Modifies the KMS key for an existing database.
|
|
@@ -262,6 +286,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
262
286
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.update_database)
|
|
263
287
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#update_database)
|
|
264
288
|
"""
|
|
289
|
+
|
|
265
290
|
def update_table(
|
|
266
291
|
self,
|
|
267
292
|
*,
|
|
@@ -273,11 +298,13 @@ class TimestreamWriteClient(BaseClient):
|
|
|
273
298
|
) -> UpdateTableResponseTypeDef:
|
|
274
299
|
"""
|
|
275
300
|
Modifies the retention duration of the memory store and magnetic store for your
|
|
276
|
-
Timestream
|
|
301
|
+
Timestream
|
|
302
|
+
table.
|
|
277
303
|
|
|
278
304
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client.update_table)
|
|
279
305
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#update_table)
|
|
280
306
|
"""
|
|
307
|
+
|
|
281
308
|
def write_records(
|
|
282
309
|
self,
|
|
283
310
|
*,
|
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
data: BatchLoadDataFormatType = "CSV"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
|
+
|
|
14
15
|
import sys
|
|
15
16
|
|
|
16
17
|
if sys.version_info >= (3, 12):
|
|
@@ -80,10 +81,14 @@ ServiceName = Literal[
|
|
|
80
81
|
"auditmanager",
|
|
81
82
|
"autoscaling",
|
|
82
83
|
"autoscaling-plans",
|
|
84
|
+
"b2bi",
|
|
83
85
|
"backup",
|
|
84
86
|
"backup-gateway",
|
|
85
87
|
"backupstorage",
|
|
86
88
|
"batch",
|
|
89
|
+
"bcm-data-exports",
|
|
90
|
+
"bedrock",
|
|
91
|
+
"bedrock-runtime",
|
|
87
92
|
"billingconductor",
|
|
88
93
|
"braket",
|
|
89
94
|
"budgets",
|
|
@@ -100,6 +105,7 @@ ServiceName = Literal[
|
|
|
100
105
|
"clouddirectory",
|
|
101
106
|
"cloudformation",
|
|
102
107
|
"cloudfront",
|
|
108
|
+
"cloudfront-keyvaluestore",
|
|
103
109
|
"cloudhsm",
|
|
104
110
|
"cloudhsmv2",
|
|
105
111
|
"cloudsearch",
|
|
@@ -132,12 +138,14 @@ ServiceName = Literal[
|
|
|
132
138
|
"connectcases",
|
|
133
139
|
"connectparticipant",
|
|
134
140
|
"controltower",
|
|
141
|
+
"cost-optimization-hub",
|
|
135
142
|
"cur",
|
|
136
143
|
"customer-profiles",
|
|
137
144
|
"databrew",
|
|
138
145
|
"dataexchange",
|
|
139
146
|
"datapipeline",
|
|
140
147
|
"datasync",
|
|
148
|
+
"datazone",
|
|
141
149
|
"dax",
|
|
142
150
|
"detective",
|
|
143
151
|
"devicefarm",
|
|
@@ -160,6 +168,7 @@ ServiceName = Literal[
|
|
|
160
168
|
"ecs",
|
|
161
169
|
"efs",
|
|
162
170
|
"eks",
|
|
171
|
+
"eks-auth",
|
|
163
172
|
"elastic-inference",
|
|
164
173
|
"elasticache",
|
|
165
174
|
"elasticbeanstalk",
|
|
@@ -181,9 +190,9 @@ ServiceName = Literal[
|
|
|
181
190
|
"forecast",
|
|
182
191
|
"forecastquery",
|
|
183
192
|
"frauddetector",
|
|
193
|
+
"freetier",
|
|
184
194
|
"fsx",
|
|
185
195
|
"gamelift",
|
|
186
|
-
"gamesparks",
|
|
187
196
|
"glacier",
|
|
188
197
|
"globalaccelerator",
|
|
189
198
|
"glue",
|
|
@@ -200,6 +209,7 @@ ServiceName = Literal[
|
|
|
200
209
|
"imagebuilder",
|
|
201
210
|
"importexport",
|
|
202
211
|
"inspector",
|
|
212
|
+
"inspector-scan",
|
|
203
213
|
"inspector2",
|
|
204
214
|
"internetmonitor",
|
|
205
215
|
"iot",
|
|
@@ -238,6 +248,7 @@ ServiceName = Literal[
|
|
|
238
248
|
"kms",
|
|
239
249
|
"lakeformation",
|
|
240
250
|
"lambda",
|
|
251
|
+
"launch-wizard",
|
|
241
252
|
"lex-models",
|
|
242
253
|
"lex-runtime",
|
|
243
254
|
"lexv2-models",
|
|
@@ -253,7 +264,6 @@ ServiceName = Literal[
|
|
|
253
264
|
"lookoutvision",
|
|
254
265
|
"m2",
|
|
255
266
|
"machinelearning",
|
|
256
|
-
"macie",
|
|
257
267
|
"macie2",
|
|
258
268
|
"managedblockchain",
|
|
259
269
|
"managedblockchain-query",
|
|
@@ -283,6 +293,7 @@ ServiceName = Literal[
|
|
|
283
293
|
"mturk",
|
|
284
294
|
"mwaa",
|
|
285
295
|
"neptune",
|
|
296
|
+
"neptunedata",
|
|
286
297
|
"network-firewall",
|
|
287
298
|
"networkmanager",
|
|
288
299
|
"nimble",
|
|
@@ -298,6 +309,7 @@ ServiceName = Literal[
|
|
|
298
309
|
"panorama",
|
|
299
310
|
"payment-cryptography",
|
|
300
311
|
"payment-cryptography-data",
|
|
312
|
+
"pca-connector-ad",
|
|
301
313
|
"personalize",
|
|
302
314
|
"personalize-events",
|
|
303
315
|
"personalize-runtime",
|
|
@@ -322,6 +334,7 @@ ServiceName = Literal[
|
|
|
322
334
|
"redshift-data",
|
|
323
335
|
"redshift-serverless",
|
|
324
336
|
"rekognition",
|
|
337
|
+
"repostspace",
|
|
325
338
|
"resiliencehub",
|
|
326
339
|
"resource-explorer-2",
|
|
327
340
|
"resource-groups",
|
|
@@ -389,6 +402,7 @@ ServiceName = Literal[
|
|
|
389
402
|
"transcribe",
|
|
390
403
|
"transfer",
|
|
391
404
|
"translate",
|
|
405
|
+
"trustedadvisor",
|
|
392
406
|
"verifiedpermissions",
|
|
393
407
|
"voice-id",
|
|
394
408
|
"vpc-lattice",
|
|
@@ -402,6 +416,7 @@ ServiceName = Literal[
|
|
|
402
416
|
"workmail",
|
|
403
417
|
"workmailmessageflow",
|
|
404
418
|
"workspaces",
|
|
419
|
+
"workspaces-thin-client",
|
|
405
420
|
"workspaces-web",
|
|
406
421
|
"xray",
|
|
407
422
|
]
|
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
data: BatchLoadDataFormatType = "CSV"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
|
+
|
|
14
15
|
import sys
|
|
15
16
|
|
|
16
17
|
if sys.version_info >= (3, 12):
|
|
@@ -78,10 +79,14 @@ ServiceName = Literal[
|
|
|
78
79
|
"auditmanager",
|
|
79
80
|
"autoscaling",
|
|
80
81
|
"autoscaling-plans",
|
|
82
|
+
"b2bi",
|
|
81
83
|
"backup",
|
|
82
84
|
"backup-gateway",
|
|
83
85
|
"backupstorage",
|
|
84
86
|
"batch",
|
|
87
|
+
"bcm-data-exports",
|
|
88
|
+
"bedrock",
|
|
89
|
+
"bedrock-runtime",
|
|
85
90
|
"billingconductor",
|
|
86
91
|
"braket",
|
|
87
92
|
"budgets",
|
|
@@ -98,6 +103,7 @@ ServiceName = Literal[
|
|
|
98
103
|
"clouddirectory",
|
|
99
104
|
"cloudformation",
|
|
100
105
|
"cloudfront",
|
|
106
|
+
"cloudfront-keyvaluestore",
|
|
101
107
|
"cloudhsm",
|
|
102
108
|
"cloudhsmv2",
|
|
103
109
|
"cloudsearch",
|
|
@@ -130,12 +136,14 @@ ServiceName = Literal[
|
|
|
130
136
|
"connectcases",
|
|
131
137
|
"connectparticipant",
|
|
132
138
|
"controltower",
|
|
139
|
+
"cost-optimization-hub",
|
|
133
140
|
"cur",
|
|
134
141
|
"customer-profiles",
|
|
135
142
|
"databrew",
|
|
136
143
|
"dataexchange",
|
|
137
144
|
"datapipeline",
|
|
138
145
|
"datasync",
|
|
146
|
+
"datazone",
|
|
139
147
|
"dax",
|
|
140
148
|
"detective",
|
|
141
149
|
"devicefarm",
|
|
@@ -158,6 +166,7 @@ ServiceName = Literal[
|
|
|
158
166
|
"ecs",
|
|
159
167
|
"efs",
|
|
160
168
|
"eks",
|
|
169
|
+
"eks-auth",
|
|
161
170
|
"elastic-inference",
|
|
162
171
|
"elasticache",
|
|
163
172
|
"elasticbeanstalk",
|
|
@@ -179,9 +188,9 @@ ServiceName = Literal[
|
|
|
179
188
|
"forecast",
|
|
180
189
|
"forecastquery",
|
|
181
190
|
"frauddetector",
|
|
191
|
+
"freetier",
|
|
182
192
|
"fsx",
|
|
183
193
|
"gamelift",
|
|
184
|
-
"gamesparks",
|
|
185
194
|
"glacier",
|
|
186
195
|
"globalaccelerator",
|
|
187
196
|
"glue",
|
|
@@ -198,6 +207,7 @@ ServiceName = Literal[
|
|
|
198
207
|
"imagebuilder",
|
|
199
208
|
"importexport",
|
|
200
209
|
"inspector",
|
|
210
|
+
"inspector-scan",
|
|
201
211
|
"inspector2",
|
|
202
212
|
"internetmonitor",
|
|
203
213
|
"iot",
|
|
@@ -236,6 +246,7 @@ ServiceName = Literal[
|
|
|
236
246
|
"kms",
|
|
237
247
|
"lakeformation",
|
|
238
248
|
"lambda",
|
|
249
|
+
"launch-wizard",
|
|
239
250
|
"lex-models",
|
|
240
251
|
"lex-runtime",
|
|
241
252
|
"lexv2-models",
|
|
@@ -251,7 +262,6 @@ ServiceName = Literal[
|
|
|
251
262
|
"lookoutvision",
|
|
252
263
|
"m2",
|
|
253
264
|
"machinelearning",
|
|
254
|
-
"macie",
|
|
255
265
|
"macie2",
|
|
256
266
|
"managedblockchain",
|
|
257
267
|
"managedblockchain-query",
|
|
@@ -281,6 +291,7 @@ ServiceName = Literal[
|
|
|
281
291
|
"mturk",
|
|
282
292
|
"mwaa",
|
|
283
293
|
"neptune",
|
|
294
|
+
"neptunedata",
|
|
284
295
|
"network-firewall",
|
|
285
296
|
"networkmanager",
|
|
286
297
|
"nimble",
|
|
@@ -296,6 +307,7 @@ ServiceName = Literal[
|
|
|
296
307
|
"panorama",
|
|
297
308
|
"payment-cryptography",
|
|
298
309
|
"payment-cryptography-data",
|
|
310
|
+
"pca-connector-ad",
|
|
299
311
|
"personalize",
|
|
300
312
|
"personalize-events",
|
|
301
313
|
"personalize-runtime",
|
|
@@ -320,6 +332,7 @@ ServiceName = Literal[
|
|
|
320
332
|
"redshift-data",
|
|
321
333
|
"redshift-serverless",
|
|
322
334
|
"rekognition",
|
|
335
|
+
"repostspace",
|
|
323
336
|
"resiliencehub",
|
|
324
337
|
"resource-explorer-2",
|
|
325
338
|
"resource-groups",
|
|
@@ -387,6 +400,7 @@ ServiceName = Literal[
|
|
|
387
400
|
"transcribe",
|
|
388
401
|
"transfer",
|
|
389
402
|
"translate",
|
|
403
|
+
"trustedadvisor",
|
|
390
404
|
"verifiedpermissions",
|
|
391
405
|
"voice-id",
|
|
392
406
|
"vpc-lattice",
|
|
@@ -400,6 +414,7 @@ ServiceName = Literal[
|
|
|
400
414
|
"workmail",
|
|
401
415
|
"workmailmessageflow",
|
|
402
416
|
"workspaces",
|
|
417
|
+
"workspaces-thin-client",
|
|
403
418
|
"workspaces-web",
|
|
404
419
|
"xray",
|
|
405
420
|
]
|