types-boto3-timestream-influxdb 1.36.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 +36 -0
- types_boto3_timestream_influxdb/__init__.pyi +35 -0
- types_boto3_timestream_influxdb/__main__.py +43 -0
- types_boto3_timestream_influxdb/client.py +244 -0
- types_boto3_timestream_influxdb/client.pyi +241 -0
- types_boto3_timestream_influxdb/literals.py +490 -0
- types_boto3_timestream_influxdb/literals.pyi +488 -0
- types_boto3_timestream_influxdb/paginator.py +89 -0
- types_boto3_timestream_influxdb/paginator.pyi +82 -0
- types_boto3_timestream_influxdb/py.typed +0 -0
- types_boto3_timestream_influxdb/type_defs.py +402 -0
- types_boto3_timestream_influxdb/type_defs.pyi +373 -0
- types_boto3_timestream_influxdb/version.py +7 -0
- types_boto3_timestream_influxdb-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_timestream_influxdb-1.36.0.dist-info/METADATA +489 -0
- types_boto3_timestream_influxdb-1.36.0.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_timestream_influxdb-1.36.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for timestream-influxdb service type definitions.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from types_boto3_timestream_influxdb.type_defs import ResponseMetadataTypeDef
|
|
10
|
+
|
|
11
|
+
data: ResponseMetadataTypeDef = ...
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import sys
|
|
20
|
+
|
|
21
|
+
from .literals import (
|
|
22
|
+
DbInstanceTypeType,
|
|
23
|
+
DbStorageTypeType,
|
|
24
|
+
DeploymentTypeType,
|
|
25
|
+
DurationTypeType,
|
|
26
|
+
LogLevelType,
|
|
27
|
+
NetworkTypeType,
|
|
28
|
+
StatusType,
|
|
29
|
+
TracingTypeType,
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
if sys.version_info >= (3, 9):
|
|
33
|
+
from builtins import dict as Dict
|
|
34
|
+
from builtins import list as List
|
|
35
|
+
from collections.abc import Mapping, Sequence
|
|
36
|
+
else:
|
|
37
|
+
from typing import Dict, List, Mapping, Sequence
|
|
38
|
+
if sys.version_info >= (3, 12):
|
|
39
|
+
from typing import NotRequired, TypedDict
|
|
40
|
+
else:
|
|
41
|
+
from typing_extensions import NotRequired, TypedDict
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
__all__ = (
|
|
45
|
+
"CreateDbInstanceInputRequestTypeDef",
|
|
46
|
+
"CreateDbInstanceOutputTypeDef",
|
|
47
|
+
"CreateDbParameterGroupInputRequestTypeDef",
|
|
48
|
+
"CreateDbParameterGroupOutputTypeDef",
|
|
49
|
+
"DbInstanceSummaryTypeDef",
|
|
50
|
+
"DbParameterGroupSummaryTypeDef",
|
|
51
|
+
"DeleteDbInstanceInputRequestTypeDef",
|
|
52
|
+
"DeleteDbInstanceOutputTypeDef",
|
|
53
|
+
"DurationTypeDef",
|
|
54
|
+
"EmptyResponseMetadataTypeDef",
|
|
55
|
+
"GetDbInstanceInputRequestTypeDef",
|
|
56
|
+
"GetDbInstanceOutputTypeDef",
|
|
57
|
+
"GetDbParameterGroupInputRequestTypeDef",
|
|
58
|
+
"GetDbParameterGroupOutputTypeDef",
|
|
59
|
+
"InfluxDBv2ParametersTypeDef",
|
|
60
|
+
"ListDbInstancesInputPaginateTypeDef",
|
|
61
|
+
"ListDbInstancesInputRequestTypeDef",
|
|
62
|
+
"ListDbInstancesOutputTypeDef",
|
|
63
|
+
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
64
|
+
"ListDbParameterGroupsInputRequestTypeDef",
|
|
65
|
+
"ListDbParameterGroupsOutputTypeDef",
|
|
66
|
+
"ListTagsForResourceRequestRequestTypeDef",
|
|
67
|
+
"ListTagsForResourceResponseTypeDef",
|
|
68
|
+
"LogDeliveryConfigurationTypeDef",
|
|
69
|
+
"PaginatorConfigTypeDef",
|
|
70
|
+
"ParametersTypeDef",
|
|
71
|
+
"ResponseMetadataTypeDef",
|
|
72
|
+
"S3ConfigurationTypeDef",
|
|
73
|
+
"TagResourceRequestRequestTypeDef",
|
|
74
|
+
"UntagResourceRequestRequestTypeDef",
|
|
75
|
+
"UpdateDbInstanceInputRequestTypeDef",
|
|
76
|
+
"UpdateDbInstanceOutputTypeDef",
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
81
|
+
RequestId: str
|
|
82
|
+
HTTPStatusCode: int
|
|
83
|
+
HTTPHeaders: Dict[str, str]
|
|
84
|
+
RetryAttempts: int
|
|
85
|
+
HostId: NotRequired[str]
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
DbInstanceSummaryTypeDef = TypedDict(
|
|
89
|
+
"DbInstanceSummaryTypeDef",
|
|
90
|
+
{
|
|
91
|
+
"id": str,
|
|
92
|
+
"name": str,
|
|
93
|
+
"arn": str,
|
|
94
|
+
"status": NotRequired[StatusType],
|
|
95
|
+
"endpoint": NotRequired[str],
|
|
96
|
+
"port": NotRequired[int],
|
|
97
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
98
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
99
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
100
|
+
"allocatedStorage": NotRequired[int],
|
|
101
|
+
"deploymentType": NotRequired[DeploymentTypeType],
|
|
102
|
+
},
|
|
103
|
+
)
|
|
104
|
+
DbParameterGroupSummaryTypeDef = TypedDict(
|
|
105
|
+
"DbParameterGroupSummaryTypeDef",
|
|
106
|
+
{
|
|
107
|
+
"id": str,
|
|
108
|
+
"name": str,
|
|
109
|
+
"arn": str,
|
|
110
|
+
"description": NotRequired[str],
|
|
111
|
+
},
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
class DeleteDbInstanceInputRequestTypeDef(TypedDict):
|
|
116
|
+
identifier: str
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
class DurationTypeDef(TypedDict):
|
|
120
|
+
durationType: DurationTypeType
|
|
121
|
+
value: int
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
class GetDbInstanceInputRequestTypeDef(TypedDict):
|
|
125
|
+
identifier: str
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
class GetDbParameterGroupInputRequestTypeDef(TypedDict):
|
|
129
|
+
identifier: str
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class PaginatorConfigTypeDef(TypedDict):
|
|
133
|
+
MaxItems: NotRequired[int]
|
|
134
|
+
PageSize: NotRequired[int]
|
|
135
|
+
StartingToken: NotRequired[str]
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class ListDbInstancesInputRequestTypeDef(TypedDict):
|
|
139
|
+
nextToken: NotRequired[str]
|
|
140
|
+
maxResults: NotRequired[int]
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class ListDbParameterGroupsInputRequestTypeDef(TypedDict):
|
|
144
|
+
nextToken: NotRequired[str]
|
|
145
|
+
maxResults: NotRequired[int]
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
class ListTagsForResourceRequestRequestTypeDef(TypedDict):
|
|
149
|
+
resourceArn: str
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class S3ConfigurationTypeDef(TypedDict):
|
|
153
|
+
bucketName: str
|
|
154
|
+
enabled: bool
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
class TagResourceRequestRequestTypeDef(TypedDict):
|
|
158
|
+
resourceArn: str
|
|
159
|
+
tags: Mapping[str, str]
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
class UntagResourceRequestRequestTypeDef(TypedDict):
|
|
163
|
+
resourceArn: str
|
|
164
|
+
tagKeys: Sequence[str]
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
168
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
172
|
+
tags: Dict[str, str]
|
|
173
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class ListDbInstancesOutputTypeDef(TypedDict):
|
|
177
|
+
items: List[DbInstanceSummaryTypeDef]
|
|
178
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
179
|
+
nextToken: NotRequired[str]
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class ListDbParameterGroupsOutputTypeDef(TypedDict):
|
|
183
|
+
items: List[DbParameterGroupSummaryTypeDef]
|
|
184
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
185
|
+
nextToken: NotRequired[str]
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
189
|
+
fluxLogEnabled: NotRequired[bool]
|
|
190
|
+
logLevel: NotRequired[LogLevelType]
|
|
191
|
+
noTasks: NotRequired[bool]
|
|
192
|
+
queryConcurrency: NotRequired[int]
|
|
193
|
+
queryQueueSize: NotRequired[int]
|
|
194
|
+
tracingType: NotRequired[TracingTypeType]
|
|
195
|
+
metricsDisabled: NotRequired[bool]
|
|
196
|
+
httpIdleTimeout: NotRequired[DurationTypeDef]
|
|
197
|
+
httpReadHeaderTimeout: NotRequired[DurationTypeDef]
|
|
198
|
+
httpReadTimeout: NotRequired[DurationTypeDef]
|
|
199
|
+
httpWriteTimeout: NotRequired[DurationTypeDef]
|
|
200
|
+
influxqlMaxSelectBuckets: NotRequired[int]
|
|
201
|
+
influxqlMaxSelectPoint: NotRequired[int]
|
|
202
|
+
influxqlMaxSelectSeries: NotRequired[int]
|
|
203
|
+
pprofDisabled: NotRequired[bool]
|
|
204
|
+
queryInitialMemoryBytes: NotRequired[int]
|
|
205
|
+
queryMaxMemoryBytes: NotRequired[int]
|
|
206
|
+
queryMemoryBytes: NotRequired[int]
|
|
207
|
+
sessionLength: NotRequired[int]
|
|
208
|
+
sessionRenewDisabled: NotRequired[bool]
|
|
209
|
+
storageCacheMaxMemorySize: NotRequired[int]
|
|
210
|
+
storageCacheSnapshotMemorySize: NotRequired[int]
|
|
211
|
+
storageCacheSnapshotWriteColdDuration: NotRequired[DurationTypeDef]
|
|
212
|
+
storageCompactFullWriteColdDuration: NotRequired[DurationTypeDef]
|
|
213
|
+
storageCompactThroughputBurst: NotRequired[int]
|
|
214
|
+
storageMaxConcurrentCompactions: NotRequired[int]
|
|
215
|
+
storageMaxIndexLogFileSize: NotRequired[int]
|
|
216
|
+
storageNoValidateFieldSize: NotRequired[bool]
|
|
217
|
+
storageRetentionCheckInterval: NotRequired[DurationTypeDef]
|
|
218
|
+
storageSeriesFileMaxConcurrentSnapshotCompactions: NotRequired[int]
|
|
219
|
+
storageSeriesIdSetCacheSize: NotRequired[int]
|
|
220
|
+
storageWalMaxConcurrentWrites: NotRequired[int]
|
|
221
|
+
storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
|
|
222
|
+
uiDisabled: NotRequired[bool]
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
226
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
|
|
230
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
234
|
+
s3Configuration: S3ConfigurationTypeDef
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
class ParametersTypeDef(TypedDict):
|
|
238
|
+
InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
class CreateDbInstanceInputRequestTypeDef(TypedDict):
|
|
242
|
+
name: str
|
|
243
|
+
password: str
|
|
244
|
+
dbInstanceType: DbInstanceTypeType
|
|
245
|
+
vpcSubnetIds: Sequence[str]
|
|
246
|
+
vpcSecurityGroupIds: Sequence[str]
|
|
247
|
+
allocatedStorage: int
|
|
248
|
+
username: NotRequired[str]
|
|
249
|
+
organization: NotRequired[str]
|
|
250
|
+
bucket: NotRequired[str]
|
|
251
|
+
publiclyAccessible: NotRequired[bool]
|
|
252
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
253
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
254
|
+
deploymentType: NotRequired[DeploymentTypeType]
|
|
255
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
256
|
+
tags: NotRequired[Mapping[str, str]]
|
|
257
|
+
port: NotRequired[int]
|
|
258
|
+
networkType: NotRequired[NetworkTypeType]
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
CreateDbInstanceOutputTypeDef = TypedDict(
|
|
262
|
+
"CreateDbInstanceOutputTypeDef",
|
|
263
|
+
{
|
|
264
|
+
"id": str,
|
|
265
|
+
"name": str,
|
|
266
|
+
"arn": str,
|
|
267
|
+
"status": StatusType,
|
|
268
|
+
"endpoint": str,
|
|
269
|
+
"port": int,
|
|
270
|
+
"networkType": NetworkTypeType,
|
|
271
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
272
|
+
"dbStorageType": DbStorageTypeType,
|
|
273
|
+
"allocatedStorage": int,
|
|
274
|
+
"deploymentType": DeploymentTypeType,
|
|
275
|
+
"vpcSubnetIds": List[str],
|
|
276
|
+
"publiclyAccessible": bool,
|
|
277
|
+
"vpcSecurityGroupIds": List[str],
|
|
278
|
+
"dbParameterGroupIdentifier": str,
|
|
279
|
+
"availabilityZone": str,
|
|
280
|
+
"secondaryAvailabilityZone": str,
|
|
281
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
282
|
+
"influxAuthParametersSecretArn": str,
|
|
283
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
284
|
+
},
|
|
285
|
+
)
|
|
286
|
+
DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
287
|
+
"DeleteDbInstanceOutputTypeDef",
|
|
288
|
+
{
|
|
289
|
+
"id": str,
|
|
290
|
+
"name": str,
|
|
291
|
+
"arn": str,
|
|
292
|
+
"status": StatusType,
|
|
293
|
+
"endpoint": str,
|
|
294
|
+
"port": int,
|
|
295
|
+
"networkType": NetworkTypeType,
|
|
296
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
297
|
+
"dbStorageType": DbStorageTypeType,
|
|
298
|
+
"allocatedStorage": int,
|
|
299
|
+
"deploymentType": DeploymentTypeType,
|
|
300
|
+
"vpcSubnetIds": List[str],
|
|
301
|
+
"publiclyAccessible": bool,
|
|
302
|
+
"vpcSecurityGroupIds": List[str],
|
|
303
|
+
"dbParameterGroupIdentifier": str,
|
|
304
|
+
"availabilityZone": str,
|
|
305
|
+
"secondaryAvailabilityZone": str,
|
|
306
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
307
|
+
"influxAuthParametersSecretArn": str,
|
|
308
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
309
|
+
},
|
|
310
|
+
)
|
|
311
|
+
GetDbInstanceOutputTypeDef = TypedDict(
|
|
312
|
+
"GetDbInstanceOutputTypeDef",
|
|
313
|
+
{
|
|
314
|
+
"id": str,
|
|
315
|
+
"name": str,
|
|
316
|
+
"arn": str,
|
|
317
|
+
"status": StatusType,
|
|
318
|
+
"endpoint": str,
|
|
319
|
+
"port": int,
|
|
320
|
+
"networkType": NetworkTypeType,
|
|
321
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
322
|
+
"dbStorageType": DbStorageTypeType,
|
|
323
|
+
"allocatedStorage": int,
|
|
324
|
+
"deploymentType": DeploymentTypeType,
|
|
325
|
+
"vpcSubnetIds": List[str],
|
|
326
|
+
"publiclyAccessible": bool,
|
|
327
|
+
"vpcSecurityGroupIds": List[str],
|
|
328
|
+
"dbParameterGroupIdentifier": str,
|
|
329
|
+
"availabilityZone": str,
|
|
330
|
+
"secondaryAvailabilityZone": str,
|
|
331
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
332
|
+
"influxAuthParametersSecretArn": str,
|
|
333
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
334
|
+
},
|
|
335
|
+
)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
class UpdateDbInstanceInputRequestTypeDef(TypedDict):
|
|
339
|
+
identifier: str
|
|
340
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
341
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
342
|
+
port: NotRequired[int]
|
|
343
|
+
dbInstanceType: NotRequired[DbInstanceTypeType]
|
|
344
|
+
deploymentType: NotRequired[DeploymentTypeType]
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
348
|
+
"UpdateDbInstanceOutputTypeDef",
|
|
349
|
+
{
|
|
350
|
+
"id": str,
|
|
351
|
+
"name": str,
|
|
352
|
+
"arn": str,
|
|
353
|
+
"status": StatusType,
|
|
354
|
+
"endpoint": str,
|
|
355
|
+
"port": int,
|
|
356
|
+
"networkType": NetworkTypeType,
|
|
357
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
358
|
+
"dbStorageType": DbStorageTypeType,
|
|
359
|
+
"allocatedStorage": int,
|
|
360
|
+
"deploymentType": DeploymentTypeType,
|
|
361
|
+
"vpcSubnetIds": List[str],
|
|
362
|
+
"publiclyAccessible": bool,
|
|
363
|
+
"vpcSecurityGroupIds": List[str],
|
|
364
|
+
"dbParameterGroupIdentifier": str,
|
|
365
|
+
"availabilityZone": str,
|
|
366
|
+
"secondaryAvailabilityZone": str,
|
|
367
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
368
|
+
"influxAuthParametersSecretArn": str,
|
|
369
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
370
|
+
},
|
|
371
|
+
)
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
class CreateDbParameterGroupInputRequestTypeDef(TypedDict):
|
|
375
|
+
name: str
|
|
376
|
+
description: NotRequired[str]
|
|
377
|
+
parameters: NotRequired[ParametersTypeDef]
|
|
378
|
+
tags: NotRequired[Mapping[str, str]]
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
CreateDbParameterGroupOutputTypeDef = TypedDict(
|
|
382
|
+
"CreateDbParameterGroupOutputTypeDef",
|
|
383
|
+
{
|
|
384
|
+
"id": str,
|
|
385
|
+
"name": str,
|
|
386
|
+
"arn": str,
|
|
387
|
+
"description": str,
|
|
388
|
+
"parameters": ParametersTypeDef,
|
|
389
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
390
|
+
},
|
|
391
|
+
)
|
|
392
|
+
GetDbParameterGroupOutputTypeDef = TypedDict(
|
|
393
|
+
"GetDbParameterGroupOutputTypeDef",
|
|
394
|
+
{
|
|
395
|
+
"id": str,
|
|
396
|
+
"name": str,
|
|
397
|
+
"arn": str,
|
|
398
|
+
"description": str,
|
|
399
|
+
"parameters": ParametersTypeDef,
|
|
400
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
401
|
+
},
|
|
402
|
+
)
|