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