types-boto3-timestream-influxdb 1.36.8__py3-none-any.whl → 1.37.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 types-boto3-timestream-influxdb might be problematic. Click here for more details.
- types_boto3_timestream_influxdb/__init__.py +16 -3
- types_boto3_timestream_influxdb/__init__.pyi +16 -3
- types_boto3_timestream_influxdb/__main__.py +4 -4
- types_boto3_timestream_influxdb/client.py +124 -25
- types_boto3_timestream_influxdb/client.pyi +124 -25
- types_boto3_timestream_influxdb/literals.py +22 -6
- types_boto3_timestream_influxdb/literals.pyi +22 -6
- types_boto3_timestream_influxdb/paginator.py +58 -3
- types_boto3_timestream_influxdb/paginator.pyi +52 -3
- types_boto3_timestream_influxdb/type_defs.py +198 -26
- types_boto3_timestream_influxdb/type_defs.pyi +185 -26
- types_boto3_timestream_influxdb/version.py +1 -1
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.37.0.dist-info}/METADATA +20 -11
- types_boto3_timestream_influxdb-1.37.0.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.36.8.dist-info/RECORD +0 -18
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.37.0.dist-info}/WHEEL +0 -0
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.37.0.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for timestream-influxdb service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
7
11
|
from boto3.session import Session
|
|
8
12
|
from types_boto3_timestream_influxdb import (
|
|
9
13
|
Client,
|
|
14
|
+
ListDbClustersPaginator,
|
|
15
|
+
ListDbInstancesForClusterPaginator,
|
|
10
16
|
ListDbInstancesPaginator,
|
|
11
17
|
ListDbParameterGroupsPaginator,
|
|
12
18
|
TimestreamInfluxDBClient,
|
|
@@ -15,21 +21,28 @@ Usage::
|
|
|
15
21
|
session = Session()
|
|
16
22
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
17
23
|
|
|
24
|
+
list_db_clusters_paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters")
|
|
25
|
+
list_db_instances_for_cluster_paginator: ListDbInstancesForClusterPaginator = client.get_paginator("list_db_instances_for_cluster")
|
|
18
26
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
19
27
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
20
28
|
```
|
|
21
|
-
|
|
22
|
-
Copyright 2025 Vlad Emelianov
|
|
23
29
|
"""
|
|
24
30
|
|
|
25
31
|
from .client import TimestreamInfluxDBClient
|
|
26
|
-
from .paginator import
|
|
32
|
+
from .paginator import (
|
|
33
|
+
ListDbClustersPaginator,
|
|
34
|
+
ListDbInstancesForClusterPaginator,
|
|
35
|
+
ListDbInstancesPaginator,
|
|
36
|
+
ListDbParameterGroupsPaginator,
|
|
37
|
+
)
|
|
27
38
|
|
|
28
39
|
Client = TimestreamInfluxDBClient
|
|
29
40
|
|
|
30
41
|
|
|
31
42
|
__all__ = (
|
|
32
43
|
"Client",
|
|
44
|
+
"ListDbClustersPaginator",
|
|
45
|
+
"ListDbInstancesForClusterPaginator",
|
|
33
46
|
"ListDbInstancesPaginator",
|
|
34
47
|
"ListDbParameterGroupsPaginator",
|
|
35
48
|
"TimestreamInfluxDBClient",
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for timestream-influxdb service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
7
11
|
from boto3.session import Session
|
|
8
12
|
from types_boto3_timestream_influxdb import (
|
|
9
13
|
Client,
|
|
14
|
+
ListDbClustersPaginator,
|
|
15
|
+
ListDbInstancesForClusterPaginator,
|
|
10
16
|
ListDbInstancesPaginator,
|
|
11
17
|
ListDbParameterGroupsPaginator,
|
|
12
18
|
TimestreamInfluxDBClient,
|
|
@@ -15,20 +21,27 @@ Usage::
|
|
|
15
21
|
session = Session()
|
|
16
22
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
17
23
|
|
|
24
|
+
list_db_clusters_paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters")
|
|
25
|
+
list_db_instances_for_cluster_paginator: ListDbInstancesForClusterPaginator = client.get_paginator("list_db_instances_for_cluster")
|
|
18
26
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
19
27
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
20
28
|
```
|
|
21
|
-
|
|
22
|
-
Copyright 2025 Vlad Emelianov
|
|
23
29
|
"""
|
|
24
30
|
|
|
25
31
|
from .client import TimestreamInfluxDBClient
|
|
26
|
-
from .paginator import
|
|
32
|
+
from .paginator import (
|
|
33
|
+
ListDbClustersPaginator,
|
|
34
|
+
ListDbInstancesForClusterPaginator,
|
|
35
|
+
ListDbInstancesPaginator,
|
|
36
|
+
ListDbParameterGroupsPaginator,
|
|
37
|
+
)
|
|
27
38
|
|
|
28
39
|
Client = TimestreamInfluxDBClient
|
|
29
40
|
|
|
30
41
|
__all__ = (
|
|
31
42
|
"Client",
|
|
43
|
+
"ListDbClustersPaginator",
|
|
44
|
+
"ListDbInstancesForClusterPaginator",
|
|
32
45
|
"ListDbInstancesPaginator",
|
|
33
46
|
"ListDbParameterGroupsPaginator",
|
|
34
47
|
"TimestreamInfluxDBClient",
|
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 TimestreamInfluxDB 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 TimestreamInfluxDB 1.37.0\n"
|
|
16
|
+
"Version: 1.37.0\n"
|
|
17
|
+
"Builder version: 8.9.2\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb.html#timestreaminfluxdb\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.37.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -3,6 +3,8 @@ Type annotations for timestream-influxdb service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -12,8 +14,6 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -25,28 +25,45 @@ from botocore.client import BaseClient, ClientMeta
|
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
|
-
from .paginator import
|
|
28
|
+
from .paginator import (
|
|
29
|
+
ListDbClustersPaginator,
|
|
30
|
+
ListDbInstancesForClusterPaginator,
|
|
31
|
+
ListDbInstancesPaginator,
|
|
32
|
+
ListDbParameterGroupsPaginator,
|
|
33
|
+
)
|
|
29
34
|
from .type_defs import (
|
|
30
|
-
|
|
35
|
+
CreateDbClusterInputTypeDef,
|
|
36
|
+
CreateDbClusterOutputTypeDef,
|
|
37
|
+
CreateDbInstanceInputTypeDef,
|
|
31
38
|
CreateDbInstanceOutputTypeDef,
|
|
32
|
-
|
|
39
|
+
CreateDbParameterGroupInputTypeDef,
|
|
33
40
|
CreateDbParameterGroupOutputTypeDef,
|
|
34
|
-
|
|
41
|
+
DeleteDbClusterInputTypeDef,
|
|
42
|
+
DeleteDbClusterOutputTypeDef,
|
|
43
|
+
DeleteDbInstanceInputTypeDef,
|
|
35
44
|
DeleteDbInstanceOutputTypeDef,
|
|
36
45
|
EmptyResponseMetadataTypeDef,
|
|
37
|
-
|
|
46
|
+
GetDbClusterInputTypeDef,
|
|
47
|
+
GetDbClusterOutputTypeDef,
|
|
48
|
+
GetDbInstanceInputTypeDef,
|
|
38
49
|
GetDbInstanceOutputTypeDef,
|
|
39
|
-
|
|
50
|
+
GetDbParameterGroupInputTypeDef,
|
|
40
51
|
GetDbParameterGroupOutputTypeDef,
|
|
41
|
-
|
|
52
|
+
ListDbClustersInputTypeDef,
|
|
53
|
+
ListDbClustersOutputTypeDef,
|
|
54
|
+
ListDbInstancesForClusterInputTypeDef,
|
|
55
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
56
|
+
ListDbInstancesInputTypeDef,
|
|
42
57
|
ListDbInstancesOutputTypeDef,
|
|
43
|
-
|
|
58
|
+
ListDbParameterGroupsInputTypeDef,
|
|
44
59
|
ListDbParameterGroupsOutputTypeDef,
|
|
45
|
-
|
|
60
|
+
ListTagsForResourceRequestTypeDef,
|
|
46
61
|
ListTagsForResourceResponseTypeDef,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
62
|
+
TagResourceRequestTypeDef,
|
|
63
|
+
UntagResourceRequestTypeDef,
|
|
64
|
+
UpdateDbClusterInputTypeDef,
|
|
65
|
+
UpdateDbClusterOutputTypeDef,
|
|
66
|
+
UpdateDbInstanceInputTypeDef,
|
|
50
67
|
UpdateDbInstanceOutputTypeDef,
|
|
51
68
|
)
|
|
52
69
|
|
|
@@ -110,8 +127,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
110
127
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#generate_presigned_url)
|
|
111
128
|
"""
|
|
112
129
|
|
|
130
|
+
def create_db_cluster(
|
|
131
|
+
self, **kwargs: Unpack[CreateDbClusterInputTypeDef]
|
|
132
|
+
) -> CreateDbClusterOutputTypeDef:
|
|
133
|
+
"""
|
|
134
|
+
Creates a new Timestream for InfluxDB cluster.
|
|
135
|
+
|
|
136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/create_db_cluster.html)
|
|
137
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#create_db_cluster)
|
|
138
|
+
"""
|
|
139
|
+
|
|
113
140
|
def create_db_instance(
|
|
114
|
-
self, **kwargs: Unpack[
|
|
141
|
+
self, **kwargs: Unpack[CreateDbInstanceInputTypeDef]
|
|
115
142
|
) -> CreateDbInstanceOutputTypeDef:
|
|
116
143
|
"""
|
|
117
144
|
Creates a new Timestream for InfluxDB DB instance.
|
|
@@ -121,7 +148,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
121
148
|
"""
|
|
122
149
|
|
|
123
150
|
def create_db_parameter_group(
|
|
124
|
-
self, **kwargs: Unpack[
|
|
151
|
+
self, **kwargs: Unpack[CreateDbParameterGroupInputTypeDef]
|
|
125
152
|
) -> CreateDbParameterGroupOutputTypeDef:
|
|
126
153
|
"""
|
|
127
154
|
Creates a new Timestream for InfluxDB DB parameter group to associate with DB
|
|
@@ -131,8 +158,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
131
158
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#create_db_parameter_group)
|
|
132
159
|
"""
|
|
133
160
|
|
|
161
|
+
def delete_db_cluster(
|
|
162
|
+
self, **kwargs: Unpack[DeleteDbClusterInputTypeDef]
|
|
163
|
+
) -> DeleteDbClusterOutputTypeDef:
|
|
164
|
+
"""
|
|
165
|
+
Deletes a Timestream for InfluxDB cluster.
|
|
166
|
+
|
|
167
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/delete_db_cluster.html)
|
|
168
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#delete_db_cluster)
|
|
169
|
+
"""
|
|
170
|
+
|
|
134
171
|
def delete_db_instance(
|
|
135
|
-
self, **kwargs: Unpack[
|
|
172
|
+
self, **kwargs: Unpack[DeleteDbInstanceInputTypeDef]
|
|
136
173
|
) -> DeleteDbInstanceOutputTypeDef:
|
|
137
174
|
"""
|
|
138
175
|
Deletes a Timestream for InfluxDB DB instance.
|
|
@@ -141,8 +178,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
141
178
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#delete_db_instance)
|
|
142
179
|
"""
|
|
143
180
|
|
|
181
|
+
def get_db_cluster(
|
|
182
|
+
self, **kwargs: Unpack[GetDbClusterInputTypeDef]
|
|
183
|
+
) -> GetDbClusterOutputTypeDef:
|
|
184
|
+
"""
|
|
185
|
+
Retrieves information about a Timestream for InfluxDB cluster.
|
|
186
|
+
|
|
187
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/get_db_cluster.html)
|
|
188
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_db_cluster)
|
|
189
|
+
"""
|
|
190
|
+
|
|
144
191
|
def get_db_instance(
|
|
145
|
-
self, **kwargs: Unpack[
|
|
192
|
+
self, **kwargs: Unpack[GetDbInstanceInputTypeDef]
|
|
146
193
|
) -> GetDbInstanceOutputTypeDef:
|
|
147
194
|
"""
|
|
148
195
|
Returns a Timestream for InfluxDB DB instance.
|
|
@@ -152,7 +199,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
152
199
|
"""
|
|
153
200
|
|
|
154
201
|
def get_db_parameter_group(
|
|
155
|
-
self, **kwargs: Unpack[
|
|
202
|
+
self, **kwargs: Unpack[GetDbParameterGroupInputTypeDef]
|
|
156
203
|
) -> GetDbParameterGroupOutputTypeDef:
|
|
157
204
|
"""
|
|
158
205
|
Returns a Timestream for InfluxDB DB parameter group.
|
|
@@ -161,8 +208,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
161
208
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_db_parameter_group)
|
|
162
209
|
"""
|
|
163
210
|
|
|
211
|
+
def list_db_clusters(
|
|
212
|
+
self, **kwargs: Unpack[ListDbClustersInputTypeDef]
|
|
213
|
+
) -> ListDbClustersOutputTypeDef:
|
|
214
|
+
"""
|
|
215
|
+
Returns a list of Timestream for InfluxDB DB clusters.
|
|
216
|
+
|
|
217
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/list_db_clusters.html)
|
|
218
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#list_db_clusters)
|
|
219
|
+
"""
|
|
220
|
+
|
|
164
221
|
def list_db_instances(
|
|
165
|
-
self, **kwargs: Unpack[
|
|
222
|
+
self, **kwargs: Unpack[ListDbInstancesInputTypeDef]
|
|
166
223
|
) -> ListDbInstancesOutputTypeDef:
|
|
167
224
|
"""
|
|
168
225
|
Returns a list of Timestream for InfluxDB DB instances.
|
|
@@ -171,8 +228,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
171
228
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#list_db_instances)
|
|
172
229
|
"""
|
|
173
230
|
|
|
231
|
+
def list_db_instances_for_cluster(
|
|
232
|
+
self, **kwargs: Unpack[ListDbInstancesForClusterInputTypeDef]
|
|
233
|
+
) -> ListDbInstancesForClusterOutputTypeDef:
|
|
234
|
+
"""
|
|
235
|
+
Returns a list of Timestream for InfluxDB clusters.
|
|
236
|
+
|
|
237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/list_db_instances_for_cluster.html)
|
|
238
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#list_db_instances_for_cluster)
|
|
239
|
+
"""
|
|
240
|
+
|
|
174
241
|
def list_db_parameter_groups(
|
|
175
|
-
self, **kwargs: Unpack[
|
|
242
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputTypeDef]
|
|
176
243
|
) -> ListDbParameterGroupsOutputTypeDef:
|
|
177
244
|
"""
|
|
178
245
|
Returns a list of Timestream for InfluxDB DB parameter groups.
|
|
@@ -182,7 +249,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
182
249
|
"""
|
|
183
250
|
|
|
184
251
|
def list_tags_for_resource(
|
|
185
|
-
self, **kwargs: Unpack[
|
|
252
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
186
253
|
) -> ListTagsForResourceResponseTypeDef:
|
|
187
254
|
"""
|
|
188
255
|
A list of tags applied to the resource.
|
|
@@ -192,7 +259,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
192
259
|
"""
|
|
193
260
|
|
|
194
261
|
def tag_resource(
|
|
195
|
-
self, **kwargs: Unpack[
|
|
262
|
+
self, **kwargs: Unpack[TagResourceRequestTypeDef]
|
|
196
263
|
) -> EmptyResponseMetadataTypeDef:
|
|
197
264
|
"""
|
|
198
265
|
Tags are composed of a Key/Value pairs.
|
|
@@ -202,7 +269,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
202
269
|
"""
|
|
203
270
|
|
|
204
271
|
def untag_resource(
|
|
205
|
-
self, **kwargs: Unpack[
|
|
272
|
+
self, **kwargs: Unpack[UntagResourceRequestTypeDef]
|
|
206
273
|
) -> EmptyResponseMetadataTypeDef:
|
|
207
274
|
"""
|
|
208
275
|
Removes the tag from the specified resource.
|
|
@@ -211,8 +278,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
211
278
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#untag_resource)
|
|
212
279
|
"""
|
|
213
280
|
|
|
281
|
+
def update_db_cluster(
|
|
282
|
+
self, **kwargs: Unpack[UpdateDbClusterInputTypeDef]
|
|
283
|
+
) -> UpdateDbClusterOutputTypeDef:
|
|
284
|
+
"""
|
|
285
|
+
Updates a Timestream for InfluxDB cluster.
|
|
286
|
+
|
|
287
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/update_db_cluster.html)
|
|
288
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#update_db_cluster)
|
|
289
|
+
"""
|
|
290
|
+
|
|
214
291
|
def update_db_instance(
|
|
215
|
-
self, **kwargs: Unpack[
|
|
292
|
+
self, **kwargs: Unpack[UpdateDbInstanceInputTypeDef]
|
|
216
293
|
) -> UpdateDbInstanceOutputTypeDef:
|
|
217
294
|
"""
|
|
218
295
|
Updates a Timestream for InfluxDB DB instance.
|
|
@@ -221,6 +298,28 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
221
298
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#update_db_instance)
|
|
222
299
|
"""
|
|
223
300
|
|
|
301
|
+
@overload # type: ignore[override]
|
|
302
|
+
def get_paginator( # type: ignore[override]
|
|
303
|
+
self, operation_name: Literal["list_db_clusters"]
|
|
304
|
+
) -> ListDbClustersPaginator:
|
|
305
|
+
"""
|
|
306
|
+
Create a paginator for an operation.
|
|
307
|
+
|
|
308
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/get_paginator.html)
|
|
309
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_paginator)
|
|
310
|
+
"""
|
|
311
|
+
|
|
312
|
+
@overload # type: ignore[override]
|
|
313
|
+
def get_paginator( # type: ignore[override]
|
|
314
|
+
self, operation_name: Literal["list_db_instances_for_cluster"]
|
|
315
|
+
) -> ListDbInstancesForClusterPaginator:
|
|
316
|
+
"""
|
|
317
|
+
Create a paginator for an operation.
|
|
318
|
+
|
|
319
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/get_paginator.html)
|
|
320
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_paginator)
|
|
321
|
+
"""
|
|
322
|
+
|
|
224
323
|
@overload # type: ignore[override]
|
|
225
324
|
def get_paginator( # type: ignore[override]
|
|
226
325
|
self, operation_name: Literal["list_db_instances"]
|
|
@@ -3,6 +3,8 @@ Type annotations for timestream-influxdb service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -12,8 +14,6 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -25,28 +25,45 @@ from botocore.client import BaseClient, ClientMeta
|
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
|
-
from .paginator import
|
|
28
|
+
from .paginator import (
|
|
29
|
+
ListDbClustersPaginator,
|
|
30
|
+
ListDbInstancesForClusterPaginator,
|
|
31
|
+
ListDbInstancesPaginator,
|
|
32
|
+
ListDbParameterGroupsPaginator,
|
|
33
|
+
)
|
|
29
34
|
from .type_defs import (
|
|
30
|
-
|
|
35
|
+
CreateDbClusterInputTypeDef,
|
|
36
|
+
CreateDbClusterOutputTypeDef,
|
|
37
|
+
CreateDbInstanceInputTypeDef,
|
|
31
38
|
CreateDbInstanceOutputTypeDef,
|
|
32
|
-
|
|
39
|
+
CreateDbParameterGroupInputTypeDef,
|
|
33
40
|
CreateDbParameterGroupOutputTypeDef,
|
|
34
|
-
|
|
41
|
+
DeleteDbClusterInputTypeDef,
|
|
42
|
+
DeleteDbClusterOutputTypeDef,
|
|
43
|
+
DeleteDbInstanceInputTypeDef,
|
|
35
44
|
DeleteDbInstanceOutputTypeDef,
|
|
36
45
|
EmptyResponseMetadataTypeDef,
|
|
37
|
-
|
|
46
|
+
GetDbClusterInputTypeDef,
|
|
47
|
+
GetDbClusterOutputTypeDef,
|
|
48
|
+
GetDbInstanceInputTypeDef,
|
|
38
49
|
GetDbInstanceOutputTypeDef,
|
|
39
|
-
|
|
50
|
+
GetDbParameterGroupInputTypeDef,
|
|
40
51
|
GetDbParameterGroupOutputTypeDef,
|
|
41
|
-
|
|
52
|
+
ListDbClustersInputTypeDef,
|
|
53
|
+
ListDbClustersOutputTypeDef,
|
|
54
|
+
ListDbInstancesForClusterInputTypeDef,
|
|
55
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
56
|
+
ListDbInstancesInputTypeDef,
|
|
42
57
|
ListDbInstancesOutputTypeDef,
|
|
43
|
-
|
|
58
|
+
ListDbParameterGroupsInputTypeDef,
|
|
44
59
|
ListDbParameterGroupsOutputTypeDef,
|
|
45
|
-
|
|
60
|
+
ListTagsForResourceRequestTypeDef,
|
|
46
61
|
ListTagsForResourceResponseTypeDef,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
62
|
+
TagResourceRequestTypeDef,
|
|
63
|
+
UntagResourceRequestTypeDef,
|
|
64
|
+
UpdateDbClusterInputTypeDef,
|
|
65
|
+
UpdateDbClusterOutputTypeDef,
|
|
66
|
+
UpdateDbInstanceInputTypeDef,
|
|
50
67
|
UpdateDbInstanceOutputTypeDef,
|
|
51
68
|
)
|
|
52
69
|
|
|
@@ -107,8 +124,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
107
124
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#generate_presigned_url)
|
|
108
125
|
"""
|
|
109
126
|
|
|
127
|
+
def create_db_cluster(
|
|
128
|
+
self, **kwargs: Unpack[CreateDbClusterInputTypeDef]
|
|
129
|
+
) -> CreateDbClusterOutputTypeDef:
|
|
130
|
+
"""
|
|
131
|
+
Creates a new Timestream for InfluxDB cluster.
|
|
132
|
+
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/create_db_cluster.html)
|
|
134
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#create_db_cluster)
|
|
135
|
+
"""
|
|
136
|
+
|
|
110
137
|
def create_db_instance(
|
|
111
|
-
self, **kwargs: Unpack[
|
|
138
|
+
self, **kwargs: Unpack[CreateDbInstanceInputTypeDef]
|
|
112
139
|
) -> CreateDbInstanceOutputTypeDef:
|
|
113
140
|
"""
|
|
114
141
|
Creates a new Timestream for InfluxDB DB instance.
|
|
@@ -118,7 +145,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
118
145
|
"""
|
|
119
146
|
|
|
120
147
|
def create_db_parameter_group(
|
|
121
|
-
self, **kwargs: Unpack[
|
|
148
|
+
self, **kwargs: Unpack[CreateDbParameterGroupInputTypeDef]
|
|
122
149
|
) -> CreateDbParameterGroupOutputTypeDef:
|
|
123
150
|
"""
|
|
124
151
|
Creates a new Timestream for InfluxDB DB parameter group to associate with DB
|
|
@@ -128,8 +155,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
128
155
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#create_db_parameter_group)
|
|
129
156
|
"""
|
|
130
157
|
|
|
158
|
+
def delete_db_cluster(
|
|
159
|
+
self, **kwargs: Unpack[DeleteDbClusterInputTypeDef]
|
|
160
|
+
) -> DeleteDbClusterOutputTypeDef:
|
|
161
|
+
"""
|
|
162
|
+
Deletes a Timestream for InfluxDB cluster.
|
|
163
|
+
|
|
164
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/delete_db_cluster.html)
|
|
165
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#delete_db_cluster)
|
|
166
|
+
"""
|
|
167
|
+
|
|
131
168
|
def delete_db_instance(
|
|
132
|
-
self, **kwargs: Unpack[
|
|
169
|
+
self, **kwargs: Unpack[DeleteDbInstanceInputTypeDef]
|
|
133
170
|
) -> DeleteDbInstanceOutputTypeDef:
|
|
134
171
|
"""
|
|
135
172
|
Deletes a Timestream for InfluxDB DB instance.
|
|
@@ -138,8 +175,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
138
175
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#delete_db_instance)
|
|
139
176
|
"""
|
|
140
177
|
|
|
178
|
+
def get_db_cluster(
|
|
179
|
+
self, **kwargs: Unpack[GetDbClusterInputTypeDef]
|
|
180
|
+
) -> GetDbClusterOutputTypeDef:
|
|
181
|
+
"""
|
|
182
|
+
Retrieves information about a Timestream for InfluxDB cluster.
|
|
183
|
+
|
|
184
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/get_db_cluster.html)
|
|
185
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_db_cluster)
|
|
186
|
+
"""
|
|
187
|
+
|
|
141
188
|
def get_db_instance(
|
|
142
|
-
self, **kwargs: Unpack[
|
|
189
|
+
self, **kwargs: Unpack[GetDbInstanceInputTypeDef]
|
|
143
190
|
) -> GetDbInstanceOutputTypeDef:
|
|
144
191
|
"""
|
|
145
192
|
Returns a Timestream for InfluxDB DB instance.
|
|
@@ -149,7 +196,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
149
196
|
"""
|
|
150
197
|
|
|
151
198
|
def get_db_parameter_group(
|
|
152
|
-
self, **kwargs: Unpack[
|
|
199
|
+
self, **kwargs: Unpack[GetDbParameterGroupInputTypeDef]
|
|
153
200
|
) -> GetDbParameterGroupOutputTypeDef:
|
|
154
201
|
"""
|
|
155
202
|
Returns a Timestream for InfluxDB DB parameter group.
|
|
@@ -158,8 +205,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
158
205
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_db_parameter_group)
|
|
159
206
|
"""
|
|
160
207
|
|
|
208
|
+
def list_db_clusters(
|
|
209
|
+
self, **kwargs: Unpack[ListDbClustersInputTypeDef]
|
|
210
|
+
) -> ListDbClustersOutputTypeDef:
|
|
211
|
+
"""
|
|
212
|
+
Returns a list of Timestream for InfluxDB DB clusters.
|
|
213
|
+
|
|
214
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/list_db_clusters.html)
|
|
215
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#list_db_clusters)
|
|
216
|
+
"""
|
|
217
|
+
|
|
161
218
|
def list_db_instances(
|
|
162
|
-
self, **kwargs: Unpack[
|
|
219
|
+
self, **kwargs: Unpack[ListDbInstancesInputTypeDef]
|
|
163
220
|
) -> ListDbInstancesOutputTypeDef:
|
|
164
221
|
"""
|
|
165
222
|
Returns a list of Timestream for InfluxDB DB instances.
|
|
@@ -168,8 +225,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
168
225
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#list_db_instances)
|
|
169
226
|
"""
|
|
170
227
|
|
|
228
|
+
def list_db_instances_for_cluster(
|
|
229
|
+
self, **kwargs: Unpack[ListDbInstancesForClusterInputTypeDef]
|
|
230
|
+
) -> ListDbInstancesForClusterOutputTypeDef:
|
|
231
|
+
"""
|
|
232
|
+
Returns a list of Timestream for InfluxDB clusters.
|
|
233
|
+
|
|
234
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/list_db_instances_for_cluster.html)
|
|
235
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#list_db_instances_for_cluster)
|
|
236
|
+
"""
|
|
237
|
+
|
|
171
238
|
def list_db_parameter_groups(
|
|
172
|
-
self, **kwargs: Unpack[
|
|
239
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputTypeDef]
|
|
173
240
|
) -> ListDbParameterGroupsOutputTypeDef:
|
|
174
241
|
"""
|
|
175
242
|
Returns a list of Timestream for InfluxDB DB parameter groups.
|
|
@@ -179,7 +246,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
179
246
|
"""
|
|
180
247
|
|
|
181
248
|
def list_tags_for_resource(
|
|
182
|
-
self, **kwargs: Unpack[
|
|
249
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
183
250
|
) -> ListTagsForResourceResponseTypeDef:
|
|
184
251
|
"""
|
|
185
252
|
A list of tags applied to the resource.
|
|
@@ -189,7 +256,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
189
256
|
"""
|
|
190
257
|
|
|
191
258
|
def tag_resource(
|
|
192
|
-
self, **kwargs: Unpack[
|
|
259
|
+
self, **kwargs: Unpack[TagResourceRequestTypeDef]
|
|
193
260
|
) -> EmptyResponseMetadataTypeDef:
|
|
194
261
|
"""
|
|
195
262
|
Tags are composed of a Key/Value pairs.
|
|
@@ -199,7 +266,7 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
199
266
|
"""
|
|
200
267
|
|
|
201
268
|
def untag_resource(
|
|
202
|
-
self, **kwargs: Unpack[
|
|
269
|
+
self, **kwargs: Unpack[UntagResourceRequestTypeDef]
|
|
203
270
|
) -> EmptyResponseMetadataTypeDef:
|
|
204
271
|
"""
|
|
205
272
|
Removes the tag from the specified resource.
|
|
@@ -208,8 +275,18 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
208
275
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#untag_resource)
|
|
209
276
|
"""
|
|
210
277
|
|
|
278
|
+
def update_db_cluster(
|
|
279
|
+
self, **kwargs: Unpack[UpdateDbClusterInputTypeDef]
|
|
280
|
+
) -> UpdateDbClusterOutputTypeDef:
|
|
281
|
+
"""
|
|
282
|
+
Updates a Timestream for InfluxDB cluster.
|
|
283
|
+
|
|
284
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/update_db_cluster.html)
|
|
285
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#update_db_cluster)
|
|
286
|
+
"""
|
|
287
|
+
|
|
211
288
|
def update_db_instance(
|
|
212
|
-
self, **kwargs: Unpack[
|
|
289
|
+
self, **kwargs: Unpack[UpdateDbInstanceInputTypeDef]
|
|
213
290
|
) -> UpdateDbInstanceOutputTypeDef:
|
|
214
291
|
"""
|
|
215
292
|
Updates a Timestream for InfluxDB DB instance.
|
|
@@ -218,6 +295,28 @@ class TimestreamInfluxDBClient(BaseClient):
|
|
|
218
295
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#update_db_instance)
|
|
219
296
|
"""
|
|
220
297
|
|
|
298
|
+
@overload # type: ignore[override]
|
|
299
|
+
def get_paginator( # type: ignore[override]
|
|
300
|
+
self, operation_name: Literal["list_db_clusters"]
|
|
301
|
+
) -> ListDbClustersPaginator:
|
|
302
|
+
"""
|
|
303
|
+
Create a paginator for an operation.
|
|
304
|
+
|
|
305
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/get_paginator.html)
|
|
306
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_paginator)
|
|
307
|
+
"""
|
|
308
|
+
|
|
309
|
+
@overload # type: ignore[override]
|
|
310
|
+
def get_paginator( # type: ignore[override]
|
|
311
|
+
self, operation_name: Literal["list_db_instances_for_cluster"]
|
|
312
|
+
) -> ListDbInstancesForClusterPaginator:
|
|
313
|
+
"""
|
|
314
|
+
Create a paginator for an operation.
|
|
315
|
+
|
|
316
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/client/get_paginator.html)
|
|
317
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/client/#get_paginator)
|
|
318
|
+
"""
|
|
319
|
+
|
|
221
320
|
@overload # type: ignore[override]
|
|
222
321
|
def get_paginator( # type: ignore[override]
|
|
223
322
|
self, operation_name: Literal["list_db_instances"]
|