mypy-boto3-timestream-write 1.28.15.post1__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 +4 -8
- mypy_boto3_timestream_write/client.pyi +4 -8
- mypy_boto3_timestream_write/literals.py +1 -1
- mypy_boto3_timestream_write/literals.pyi +1 -1
- mypy_boto3_timestream_write/type_defs.py +149 -443
- mypy_boto3_timestream_write/type_defs.pyi +149 -407
- mypy_boto3_timestream_write/version.py +1 -1
- {mypy_boto3_timestream_write-1.28.15.post1.dist-info → mypy_boto3_timestream_write-1.28.36.dist-info}/METADATA +21 -99
- mypy_boto3_timestream_write-1.28.36.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.28.15.post1.dist-info → mypy_boto3_timestream_write-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_timestream_write-1.28.15.post1.dist-info/RECORD +0 -16
- {mypy_boto3_timestream_write-1.28.15.post1.dist-info → mypy_boto3_timestream_write-1.28.36.dist-info}/LICENSE +0 -0
- {mypy_boto3_timestream_write-1.28.15.post1.dist-info → mypy_boto3_timestream_write-1.28.36.dist-info}/top_level.txt +0 -0
|
@@ -9,8 +9,8 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.TimestreamWrite 1.28.
|
|
13
|
-
"
|
|
12
|
+
"Type annotations for boto3.TimestreamWrite 1.28.36\nVersion: 1.28.36\nBuilder"
|
|
13
|
+
" version: 7.18.0\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite\nOther"
|
|
16
16
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.28.
|
|
25
|
+
print("1.28.36")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
|
@@ -13,7 +13,7 @@ Usage::
|
|
|
13
13
|
client: TimestreamWriteClient = session.client("timestream-write")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
-
from typing import Any, Dict, Mapping, Sequence, Type
|
|
16
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
17
|
|
|
18
18
|
from botocore.client import BaseClient, ClientMeta
|
|
19
19
|
|
|
@@ -22,7 +22,6 @@ from .type_defs import (
|
|
|
22
22
|
CreateBatchLoadTaskResponseTypeDef,
|
|
23
23
|
CreateDatabaseResponseTypeDef,
|
|
24
24
|
CreateTableResponseTypeDef,
|
|
25
|
-
DataModelConfigurationOutputTypeDef,
|
|
26
25
|
DataModelConfigurationTypeDef,
|
|
27
26
|
DataSourceConfigurationTypeDef,
|
|
28
27
|
DescribeBatchLoadTaskResponseTypeDef,
|
|
@@ -38,7 +37,6 @@ from .type_defs import (
|
|
|
38
37
|
RecordTypeDef,
|
|
39
38
|
ReportConfigurationTypeDef,
|
|
40
39
|
RetentionPropertiesTypeDef,
|
|
41
|
-
SchemaOutputTypeDef,
|
|
42
40
|
SchemaTypeDef,
|
|
43
41
|
TagTypeDef,
|
|
44
42
|
UpdateDatabaseResponseTypeDef,
|
|
@@ -111,9 +109,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
111
109
|
TargetDatabaseName: str,
|
|
112
110
|
TargetTableName: str,
|
|
113
111
|
ClientToken: str = ...,
|
|
114
|
-
DataModelConfiguration:
|
|
115
|
-
DataModelConfigurationTypeDef, DataModelConfigurationOutputTypeDef
|
|
116
|
-
] = ...,
|
|
112
|
+
DataModelConfiguration: DataModelConfigurationTypeDef = ...,
|
|
117
113
|
RecordVersion: int = ...
|
|
118
114
|
) -> CreateBatchLoadTaskResponseTypeDef:
|
|
119
115
|
"""
|
|
@@ -141,7 +137,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
141
137
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
142
138
|
Tags: Sequence[TagTypeDef] = ...,
|
|
143
139
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
144
|
-
Schema:
|
|
140
|
+
Schema: SchemaTypeDef = ...
|
|
145
141
|
) -> CreateTableResponseTypeDef:
|
|
146
142
|
"""
|
|
147
143
|
Adds a new table to an existing database in your account.
|
|
@@ -297,7 +293,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
297
293
|
TableName: str,
|
|
298
294
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
299
295
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
300
|
-
Schema:
|
|
296
|
+
Schema: SchemaTypeDef = ...
|
|
301
297
|
) -> UpdateTableResponseTypeDef:
|
|
302
298
|
"""
|
|
303
299
|
Modifies the retention duration of the memory store and magnetic store for your
|
|
@@ -13,7 +13,7 @@ Usage::
|
|
|
13
13
|
client: TimestreamWriteClient = session.client("timestream-write")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
-
from typing import Any, Dict, Mapping, Sequence, Type
|
|
16
|
+
from typing import Any, Dict, Mapping, Sequence, Type
|
|
17
17
|
|
|
18
18
|
from botocore.client import BaseClient, ClientMeta
|
|
19
19
|
|
|
@@ -22,7 +22,6 @@ from .type_defs import (
|
|
|
22
22
|
CreateBatchLoadTaskResponseTypeDef,
|
|
23
23
|
CreateDatabaseResponseTypeDef,
|
|
24
24
|
CreateTableResponseTypeDef,
|
|
25
|
-
DataModelConfigurationOutputTypeDef,
|
|
26
25
|
DataModelConfigurationTypeDef,
|
|
27
26
|
DataSourceConfigurationTypeDef,
|
|
28
27
|
DescribeBatchLoadTaskResponseTypeDef,
|
|
@@ -38,7 +37,6 @@ from .type_defs import (
|
|
|
38
37
|
RecordTypeDef,
|
|
39
38
|
ReportConfigurationTypeDef,
|
|
40
39
|
RetentionPropertiesTypeDef,
|
|
41
|
-
SchemaOutputTypeDef,
|
|
42
40
|
SchemaTypeDef,
|
|
43
41
|
TagTypeDef,
|
|
44
42
|
UpdateDatabaseResponseTypeDef,
|
|
@@ -105,9 +103,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
105
103
|
TargetDatabaseName: str,
|
|
106
104
|
TargetTableName: str,
|
|
107
105
|
ClientToken: str = ...,
|
|
108
|
-
DataModelConfiguration:
|
|
109
|
-
DataModelConfigurationTypeDef, DataModelConfigurationOutputTypeDef
|
|
110
|
-
] = ...,
|
|
106
|
+
DataModelConfiguration: DataModelConfigurationTypeDef = ...,
|
|
111
107
|
RecordVersion: int = ...
|
|
112
108
|
) -> CreateBatchLoadTaskResponseTypeDef:
|
|
113
109
|
"""
|
|
@@ -133,7 +129,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
133
129
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
134
130
|
Tags: Sequence[TagTypeDef] = ...,
|
|
135
131
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
136
|
-
Schema:
|
|
132
|
+
Schema: SchemaTypeDef = ...
|
|
137
133
|
) -> CreateTableResponseTypeDef:
|
|
138
134
|
"""
|
|
139
135
|
Adds a new table to an existing database in your account.
|
|
@@ -273,7 +269,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
273
269
|
TableName: str,
|
|
274
270
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
275
271
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
276
|
-
Schema:
|
|
272
|
+
Schema: SchemaTypeDef = ...
|
|
277
273
|
) -> UpdateTableResponseTypeDef:
|
|
278
274
|
"""
|
|
279
275
|
Modifies the retention duration of the memory store and magnetic store for your
|