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
|
@@ -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
|
-
" version: 7.
|
|
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:
|
|
@@ -22,7 +22,7 @@ from .type_defs import (
|
|
|
22
22
|
CreateBatchLoadTaskResponseTypeDef,
|
|
23
23
|
CreateDatabaseResponseTypeDef,
|
|
24
24
|
CreateTableResponseTypeDef,
|
|
25
|
-
|
|
25
|
+
DataModelConfigurationTypeDef,
|
|
26
26
|
DataSourceConfigurationTypeDef,
|
|
27
27
|
DescribeBatchLoadTaskResponseTypeDef,
|
|
28
28
|
DescribeDatabaseResponseTypeDef,
|
|
@@ -37,7 +37,7 @@ from .type_defs import (
|
|
|
37
37
|
RecordTypeDef,
|
|
38
38
|
ReportConfigurationTypeDef,
|
|
39
39
|
RetentionPropertiesTypeDef,
|
|
40
|
-
|
|
40
|
+
SchemaTypeDef,
|
|
41
41
|
TagTypeDef,
|
|
42
42
|
UpdateDatabaseResponseTypeDef,
|
|
43
43
|
UpdateTableResponseTypeDef,
|
|
@@ -109,7 +109,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
109
109
|
TargetDatabaseName: str,
|
|
110
110
|
TargetTableName: str,
|
|
111
111
|
ClientToken: str = ...,
|
|
112
|
-
DataModelConfiguration:
|
|
112
|
+
DataModelConfiguration: DataModelConfigurationTypeDef = ...,
|
|
113
113
|
RecordVersion: int = ...
|
|
114
114
|
) -> CreateBatchLoadTaskResponseTypeDef:
|
|
115
115
|
"""
|
|
@@ -137,7 +137,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
137
137
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
138
138
|
Tags: Sequence[TagTypeDef] = ...,
|
|
139
139
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
140
|
-
Schema:
|
|
140
|
+
Schema: SchemaTypeDef = ...
|
|
141
141
|
) -> CreateTableResponseTypeDef:
|
|
142
142
|
"""
|
|
143
143
|
Adds a new table to an existing database in your account.
|
|
@@ -293,7 +293,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
293
293
|
TableName: str,
|
|
294
294
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
295
295
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
296
|
-
Schema:
|
|
296
|
+
Schema: SchemaTypeDef = ...
|
|
297
297
|
) -> UpdateTableResponseTypeDef:
|
|
298
298
|
"""
|
|
299
299
|
Modifies the retention duration of the memory store and magnetic store for your
|
|
@@ -22,7 +22,7 @@ from .type_defs import (
|
|
|
22
22
|
CreateBatchLoadTaskResponseTypeDef,
|
|
23
23
|
CreateDatabaseResponseTypeDef,
|
|
24
24
|
CreateTableResponseTypeDef,
|
|
25
|
-
|
|
25
|
+
DataModelConfigurationTypeDef,
|
|
26
26
|
DataSourceConfigurationTypeDef,
|
|
27
27
|
DescribeBatchLoadTaskResponseTypeDef,
|
|
28
28
|
DescribeDatabaseResponseTypeDef,
|
|
@@ -37,7 +37,7 @@ from .type_defs import (
|
|
|
37
37
|
RecordTypeDef,
|
|
38
38
|
ReportConfigurationTypeDef,
|
|
39
39
|
RetentionPropertiesTypeDef,
|
|
40
|
-
|
|
40
|
+
SchemaTypeDef,
|
|
41
41
|
TagTypeDef,
|
|
42
42
|
UpdateDatabaseResponseTypeDef,
|
|
43
43
|
UpdateTableResponseTypeDef,
|
|
@@ -103,7 +103,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
103
103
|
TargetDatabaseName: str,
|
|
104
104
|
TargetTableName: str,
|
|
105
105
|
ClientToken: str = ...,
|
|
106
|
-
DataModelConfiguration:
|
|
106
|
+
DataModelConfiguration: DataModelConfigurationTypeDef = ...,
|
|
107
107
|
RecordVersion: int = ...
|
|
108
108
|
) -> CreateBatchLoadTaskResponseTypeDef:
|
|
109
109
|
"""
|
|
@@ -129,7 +129,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
129
129
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
130
130
|
Tags: Sequence[TagTypeDef] = ...,
|
|
131
131
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
132
|
-
Schema:
|
|
132
|
+
Schema: SchemaTypeDef = ...
|
|
133
133
|
) -> CreateTableResponseTypeDef:
|
|
134
134
|
"""
|
|
135
135
|
Adds a new table to an existing database in your account.
|
|
@@ -269,7 +269,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
269
269
|
TableName: str,
|
|
270
270
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
271
271
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
272
|
-
Schema:
|
|
272
|
+
Schema: SchemaTypeDef = ...
|
|
273
273
|
) -> UpdateTableResponseTypeDef:
|
|
274
274
|
"""
|
|
275
275
|
Modifies the retention duration of the memory store and magnetic store for your
|