mypy-boto3-timestream-write 1.28.16__py3-none-any.whl → 1.28.36__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/__main__.py +3 -3
- mypy_boto3_timestream_write/client.py +5 -5
- mypy_boto3_timestream_write/client.pyi +5 -5
- mypy_boto3_timestream_write/literals.py +1 -1
- mypy_boto3_timestream_write/literals.pyi +1 -1
- mypy_boto3_timestream_write/type_defs.py +149 -449
- mypy_boto3_timestream_write/type_defs.pyi +149 -413
- mypy_boto3_timestream_write/version.py +1 -1
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.28.36.dist-info}/METADATA +13 -93
- mypy_boto3_timestream_write-1.28.36.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.28.36.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.28.36.dist-info}/LICENSE +0 -0
- {mypy_boto3_timestream_write-1.28.16.dist-info → mypy_boto3_timestream_write-1.28.36.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.28.
|
|
4
|
-
Summary: Type annotations for boto3.TimestreamWrite 1.28.
|
|
3
|
+
Version: 1.28.36
|
|
4
|
+
Summary: Type annotations for boto3.TimestreamWrite 1.28.36 service generated with mypy-boto3-builder 7.18.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
|
|
@@ -29,7 +29,7 @@ Classifier: Typing :: Typed
|
|
|
29
29
|
Requires-Python: >=3.7
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
31
31
|
License-File: LICENSE
|
|
32
|
-
Requires-Dist: typing-extensions
|
|
32
|
+
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
33
33
|
|
|
34
34
|
<a id="mypy-boto3-timestream-write"></a>
|
|
35
35
|
|
|
@@ -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.TimestreamWrite 1.28.
|
|
46
|
+
[boto3.TimestreamWrite 1.28.36](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite)
|
|
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/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.18.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -280,23 +280,11 @@ client: TimestreamWriteClient = Session().client("timestream-write")
|
|
|
280
280
|
`mypy_boto3_timestream_write.literals` module contains literals extracted from
|
|
281
281
|
shapes that can be used in user code for type checking.
|
|
282
282
|
|
|
283
|
+
Full list of `TimestreamWrite` Literals can be found in
|
|
284
|
+
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/literals/).
|
|
285
|
+
|
|
283
286
|
```python
|
|
284
|
-
from mypy_boto3_timestream_write.literals import
|
|
285
|
-
BatchLoadDataFormatType,
|
|
286
|
-
BatchLoadStatusType,
|
|
287
|
-
DimensionValueTypeType,
|
|
288
|
-
MeasureValueTypeType,
|
|
289
|
-
PartitionKeyEnforcementLevelType,
|
|
290
|
-
PartitionKeyTypeType,
|
|
291
|
-
S3EncryptionOptionType,
|
|
292
|
-
ScalarMeasureValueTypeType,
|
|
293
|
-
TableStatusType,
|
|
294
|
-
TimeUnitType,
|
|
295
|
-
TimestreamWriteServiceName,
|
|
296
|
-
ServiceName,
|
|
297
|
-
ResourceServiceName,
|
|
298
|
-
RegionName,
|
|
299
|
-
)
|
|
287
|
+
from mypy_boto3_timestream_write.literals import BatchLoadDataFormatType
|
|
300
288
|
|
|
301
289
|
|
|
302
290
|
def check_value(value: BatchLoadDataFormatType) -> bool:
|
|
@@ -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=N9SGzRolZV9ot6T15jG3VC_SHRpkawzE_26MV6PYZJI,440
|
|
2
|
+
mypy_boto3_timestream_write/__init__.pyi,sha256=BB7UaLyVCTem1OSGm6fYiWkYMEJG_NHAASw5Mjaa31I,439
|
|
3
|
+
mypy_boto3_timestream_write/__main__.py,sha256=JLHbJ0cUxRmh_cu8ku2y99MAkBuqkuot669Lz1qT7l4,941
|
|
4
|
+
mypy_boto3_timestream_write/client.py,sha256=_63ZC3S3L6inOnlSUgWidmsLPjcyGLUSPuL2QCoPHh8,15356
|
|
5
|
+
mypy_boto3_timestream_write/client.pyi,sha256=MqLrRV_g-cAdUxOKMaJm-d2JOh4DX_WnPRpP3U1Ye8A,15331
|
|
6
|
+
mypy_boto3_timestream_write/literals.py,sha256=rckyFGpN9k0an4zbZoMv4p6aKJUzlgx06rNn95XFG3Q,8832
|
|
7
|
+
mypy_boto3_timestream_write/literals.pyi,sha256=8oB0ligMx8FHwfexVR-S82hFDFilteatlsCeRTuwOlw,8830
|
|
8
|
+
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_timestream_write/type_defs.py,sha256=4qbI74k19CLv4aN5hEgcSnKreW4UPQLqS5q37nxZvdI,18341
|
|
10
|
+
mypy_boto3_timestream_write/type_defs.pyi,sha256=WxBosnD9Qn97DNEjJsJsJEpuuWKsaCMiMCrC0p-QTBs,18340
|
|
11
|
+
mypy_boto3_timestream_write/version.py,sha256=TdNWFUlWkV5vJyEpme0YDjjJMYoshLhRdAlC_WfMfAo,61
|
|
12
|
+
mypy_boto3_timestream_write-1.28.36.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
+
mypy_boto3_timestream_write-1.28.36.dist-info/METADATA,sha256=avVH_WVf-PZNi0d_VKZKqBqMHxcn4_iKOWhTrGPbjrA,12559
|
|
14
|
+
mypy_boto3_timestream_write-1.28.36.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
15
|
+
mypy_boto3_timestream_write-1.28.36.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
+
mypy_boto3_timestream_write-1.28.36.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
|