mypy-boto3-timestream-write 1.28.16__py3-none-any.whl → 1.29.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 +19 -14
- mypy_boto3_timestream_write/client.pyi +41 -14
- mypy_boto3_timestream_write/literals.py +8 -2
- mypy_boto3_timestream_write/literals.pyi +8 -2
- mypy_boto3_timestream_write/type_defs.py +152 -513
- mypy_boto3_timestream_write/type_defs.pyi +152 -477
- mypy_boto3_timestream_write/version.py +2 -1
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.29.0.dist-info}/METADATA +17 -97
- mypy_boto3_timestream_write-1.29.0.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.29.0.dist-info}/WHEEL +1 -1
- mypy_boto3_timestream_write-1.28.16.dist-info/RECORD +0 -16
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.29.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.29.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-timestream-write
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3.TimestreamWrite 1.
|
|
3
|
+
Version: 1.29.0
|
|
4
|
+
Summary: Type annotations for boto3.TimestreamWrite 1.29.0 service generated with mypy-boto3-builder 7.20.3
|
|
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
|
|
@@ -23,13 +23,14 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
27
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
27
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
29
|
Classifier: Typing :: Typed
|
|
29
30
|
Requires-Python: >=3.7
|
|
30
31
|
Description-Content-Type: text/markdown
|
|
31
32
|
License-File: LICENSE
|
|
32
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
33
34
|
|
|
34
35
|
<a id="mypy-boto3-timestream-write"></a>
|
|
35
36
|
|
|
@@ -43,7 +44,7 @@ Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
|
|
|
43
44
|

|
|
44
45
|
|
|
45
46
|
Type annotations for
|
|
46
|
-
[boto3.TimestreamWrite 1.
|
|
47
|
+
[boto3.TimestreamWrite 1.29.0](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite)
|
|
47
48
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
49
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
50
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +53,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
54
|
|
|
54
55
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.
|
|
56
|
+
[mypy-boto3-builder 7.20.3](https://github.com/youtype/mypy_boto3_builder).
|
|
56
57
|
|
|
57
58
|
More information can be found on
|
|
58
59
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -280,27 +281,14 @@ client: TimestreamWriteClient = Session().client("timestream-write")
|
|
|
280
281
|
`mypy_boto3_timestream_write.literals` module contains literals extracted from
|
|
281
282
|
shapes that can be used in user code for type checking.
|
|
282
283
|
|
|
284
|
+
Full list of `TimestreamWrite` Literals can be found in
|
|
285
|
+
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/literals/).
|
|
286
|
+
|
|
283
287
|
```python
|
|
284
|
-
from mypy_boto3_timestream_write.literals import
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
MeasureValueTypeType,
|
|
289
|
-
PartitionKeyEnforcementLevelType,
|
|
290
|
-
PartitionKeyTypeType,
|
|
291
|
-
S3EncryptionOptionType,
|
|
292
|
-
ScalarMeasureValueTypeType,
|
|
293
|
-
TableStatusType,
|
|
294
|
-
TimeUnitType,
|
|
295
|
-
TimestreamWriteServiceName,
|
|
296
|
-
ServiceName,
|
|
297
|
-
ResourceServiceName,
|
|
298
|
-
RegionName,
|
|
299
|
-
)
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
def check_value(value: BatchLoadDataFormatType) -> bool:
|
|
303
|
-
...
|
|
288
|
+
from mypy_boto3_timestream_write.literals import BatchLoadDataFormatType
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
def check_value(value: BatchLoadDataFormatType) -> bool: ...
|
|
304
292
|
```
|
|
305
293
|
|
|
306
294
|
<a id="type-definitions"></a>
|
|
@@ -310,79 +298,11 @@ def check_value(value: BatchLoadDataFormatType) -> bool:
|
|
|
310
298
|
`mypy_boto3_timestream_write.type_defs` module contains structures and shapes
|
|
311
299
|
assembled to typed dictionaries and unions for additional type checking.
|
|
312
300
|
|
|
301
|
+
Full list of `TimestreamWrite` TypeDefs can be found in
|
|
302
|
+
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/type_defs/).
|
|
303
|
+
|
|
313
304
|
```python
|
|
314
|
-
from mypy_boto3_timestream_write.type_defs import
|
|
315
|
-
BatchLoadProgressReportTypeDef,
|
|
316
|
-
BatchLoadTaskTypeDef,
|
|
317
|
-
ResponseMetadataTypeDef,
|
|
318
|
-
TagTypeDef,
|
|
319
|
-
DatabaseTypeDef,
|
|
320
|
-
RetentionPropertiesTypeDef,
|
|
321
|
-
CsvConfigurationTypeDef,
|
|
322
|
-
DataModelS3ConfigurationTypeDef,
|
|
323
|
-
DimensionMappingTypeDef,
|
|
324
|
-
DataSourceS3ConfigurationTypeDef,
|
|
325
|
-
DeleteDatabaseRequestRequestTypeDef,
|
|
326
|
-
DeleteTableRequestRequestTypeDef,
|
|
327
|
-
DescribeBatchLoadTaskRequestRequestTypeDef,
|
|
328
|
-
DescribeDatabaseRequestRequestTypeDef,
|
|
329
|
-
EndpointTypeDef,
|
|
330
|
-
DescribeTableRequestRequestTypeDef,
|
|
331
|
-
DimensionTypeDef,
|
|
332
|
-
ListBatchLoadTasksRequestRequestTypeDef,
|
|
333
|
-
ListDatabasesRequestRequestTypeDef,
|
|
334
|
-
ListTablesRequestRequestTypeDef,
|
|
335
|
-
ListTagsForResourceRequestRequestTypeDef,
|
|
336
|
-
S3ConfigurationTypeDef,
|
|
337
|
-
MeasureValueTypeDef,
|
|
338
|
-
MultiMeasureAttributeMappingTypeDef,
|
|
339
|
-
PartitionKeyTypeDef,
|
|
340
|
-
RecordsIngestedTypeDef,
|
|
341
|
-
ReportS3ConfigurationTypeDef,
|
|
342
|
-
ResumeBatchLoadTaskRequestRequestTypeDef,
|
|
343
|
-
UntagResourceRequestRequestTypeDef,
|
|
344
|
-
UpdateDatabaseRequestRequestTypeDef,
|
|
345
|
-
CreateBatchLoadTaskResponseTypeDef,
|
|
346
|
-
EmptyResponseMetadataTypeDef,
|
|
347
|
-
ListBatchLoadTasksResponseTypeDef,
|
|
348
|
-
CreateDatabaseRequestRequestTypeDef,
|
|
349
|
-
ListTagsForResourceResponseTypeDef,
|
|
350
|
-
TagResourceRequestRequestTypeDef,
|
|
351
|
-
CreateDatabaseResponseTypeDef,
|
|
352
|
-
DescribeDatabaseResponseTypeDef,
|
|
353
|
-
ListDatabasesResponseTypeDef,
|
|
354
|
-
UpdateDatabaseResponseTypeDef,
|
|
355
|
-
DataSourceConfigurationTypeDef,
|
|
356
|
-
DescribeEndpointsResponseTypeDef,
|
|
357
|
-
MagneticStoreRejectedDataLocationTypeDef,
|
|
358
|
-
RecordTypeDef,
|
|
359
|
-
MixedMeasureMappingOutputTypeDef,
|
|
360
|
-
MixedMeasureMappingTypeDef,
|
|
361
|
-
MultiMeasureMappingsOutputTypeDef,
|
|
362
|
-
MultiMeasureMappingsTypeDef,
|
|
363
|
-
SchemaOutputTypeDef,
|
|
364
|
-
SchemaTypeDef,
|
|
365
|
-
WriteRecordsResponseTypeDef,
|
|
366
|
-
ReportConfigurationTypeDef,
|
|
367
|
-
MagneticStoreWritePropertiesTypeDef,
|
|
368
|
-
WriteRecordsRequestRequestTypeDef,
|
|
369
|
-
DataModelOutputTypeDef,
|
|
370
|
-
DataModelTypeDef,
|
|
371
|
-
SchemaUnionTypeDef,
|
|
372
|
-
CreateTableRequestRequestTypeDef,
|
|
373
|
-
TableTypeDef,
|
|
374
|
-
UpdateTableRequestRequestTypeDef,
|
|
375
|
-
DataModelConfigurationOutputTypeDef,
|
|
376
|
-
DataModelConfigurationTypeDef,
|
|
377
|
-
CreateTableResponseTypeDef,
|
|
378
|
-
DescribeTableResponseTypeDef,
|
|
379
|
-
ListTablesResponseTypeDef,
|
|
380
|
-
UpdateTableResponseTypeDef,
|
|
381
|
-
BatchLoadTaskDescriptionTypeDef,
|
|
382
|
-
CreateBatchLoadTaskRequestRequestTypeDef,
|
|
383
|
-
DataModelConfigurationUnionTypeDef,
|
|
384
|
-
DescribeBatchLoadTaskResponseTypeDef,
|
|
385
|
-
)
|
|
305
|
+
from mypy_boto3_timestream_write.type_defs import BatchLoadProgressReportTypeDef
|
|
386
306
|
|
|
387
307
|
|
|
388
308
|
def get_value() -> BatchLoadProgressReportTypeDef:
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_timestream_write/__init__.py,sha256=mGgSBYQoaIMtLEjaiUW3njIs7f03PM50YNysyBgZ1rY,441
|
|
2
|
+
mypy_boto3_timestream_write/__init__.pyi,sha256=c8v0jdY10_BNx9DE-2biREGy2AVm2CwKZujBOwjjEbg,440
|
|
3
|
+
mypy_boto3_timestream_write/__main__.py,sha256=2UMUa0Cd8KAAtSzA9kQsYwF6VVCHtBD0leqOUh7CZCA,939
|
|
4
|
+
mypy_boto3_timestream_write/client.py,sha256=m12PJ_ijiPtmzMDvdhi4NK7jE3x8gjpcdA9fo1X3JBA,15384
|
|
5
|
+
mypy_boto3_timestream_write/client.pyi,sha256=opaacxKElS-Mo8XJgNVg1OmewUN3r4ttggccH3mPM5w,15381
|
|
6
|
+
mypy_boto3_timestream_write/literals.py,sha256=36Pl2siUiUmfaPg7Czy3pRURdYM0hs5plZRme8CXkyk,8933
|
|
7
|
+
mypy_boto3_timestream_write/literals.pyi,sha256=KrQaTaD9lFa8kIsBlAqCO3ThDkZFuZh5tyXKFhblK9o,8931
|
|
8
|
+
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_timestream_write/type_defs.py,sha256=CfRl5PGiUALEFpExqjuJtG4oZ8MOKRUtvfrw4T3Q2N4,18280
|
|
10
|
+
mypy_boto3_timestream_write/type_defs.pyi,sha256=rU_yqnIB80-ZcXhHDfoXjq8opCBNhWR30uHJ_6t8qcY,18279
|
|
11
|
+
mypy_boto3_timestream_write/version.py,sha256=mNcCytW-69sJJzx3XNhhsfbD50BPuV9MHF1qR-EBBZ0,61
|
|
12
|
+
mypy_boto3_timestream_write-1.29.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
+
mypy_boto3_timestream_write-1.29.0.dist-info/METADATA,sha256=HrenMuWIlofZfk4AKjNqAqfc8pz-Xr4EVDok8p5znh8,12603
|
|
14
|
+
mypy_boto3_timestream_write-1.29.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
15
|
+
mypy_boto3_timestream_write-1.29.0.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
+
mypy_boto3_timestream_write-1.29.0.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_timestream_write/__init__.py,sha256=N9SGzRolZV9ot6T15jG3VC_SHRpkawzE_26MV6PYZJI,440
|
|
2
|
-
mypy_boto3_timestream_write/__init__.pyi,sha256=BB7UaLyVCTem1OSGm6fYiWkYMEJG_NHAASw5Mjaa31I,439
|
|
3
|
-
mypy_boto3_timestream_write/__main__.py,sha256=zyG6U6tuSo5Ghy2IBZVMVOuDiEbdOdcW1Jg7dJsR_cw,941
|
|
4
|
-
mypy_boto3_timestream_write/client.py,sha256=6LDZR45Hu--scYm-Rf56MWjxoynW2SCBBnRpAcnLGSo,15381
|
|
5
|
-
mypy_boto3_timestream_write/client.pyi,sha256=ojjD6qEwPlrFjdET6i1Z8zlvwpgvLoHZ2auuamZvusY,15356
|
|
6
|
-
mypy_boto3_timestream_write/literals.py,sha256=cI48Oj-Lx1ioh2DocYOpJFCrIONmb4QXMmEwz1tfrw4,8831
|
|
7
|
-
mypy_boto3_timestream_write/literals.pyi,sha256=sPzGANi_UHd8xsKgNOzhanJTpnLz1AAVREPNQxOfUtA,8829
|
|
8
|
-
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_timestream_write/type_defs.py,sha256=955hg0WytfpvuV1y0h-zdvM7VCZmrXk5FAJu41X3cxw,23920
|
|
10
|
-
mypy_boto3_timestream_write/type_defs.pyi,sha256=pxwJnGsK9DM6A7qdn0JcZ6DWjRuvUA8_W-StsxRYuII,23883
|
|
11
|
-
mypy_boto3_timestream_write/version.py,sha256=U4Nyk6u0IVhAYJrhlcsuZD7DSN47rKXZPJeLZmksuE0,61
|
|
12
|
-
mypy_boto3_timestream_write-1.28.16.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
-
mypy_boto3_timestream_write-1.28.16.dist-info/METADATA,sha256=iGGPEWEAHO7x3c6OnwBaJX604pMTjh9MKQpO04CKp7E,14982
|
|
14
|
-
mypy_boto3_timestream_write-1.28.16.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
15
|
-
mypy_boto3_timestream_write-1.28.16.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
-
mypy_boto3_timestream_write-1.28.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|