types-boto3-timestream-influxdb 1.36.0__py3-none-any.whl → 1.36.22__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 -5
- types_boto3_timestream_influxdb/literals.pyi +22 -5
- types_boto3_timestream_influxdb/paginator.py +58 -3
- types_boto3_timestream_influxdb/paginator.pyi +52 -3
- types_boto3_timestream_influxdb/type_defs.py +200 -26
- types_boto3_timestream_influxdb/type_defs.pyi +187 -26
- types_boto3_timestream_influxdb/version.py +1 -1
- {types_boto3_timestream_influxdb-1.36.0.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/METADATA +15 -9
- types_boto3_timestream_influxdb-1.36.22.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.36.0.dist-info/RECORD +0 -18
- {types_boto3_timestream_influxdb-1.36.0.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/LICENSE +0 -0
- {types_boto3_timestream_influxdb-1.36.0.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/WHEEL +0 -0
- {types_boto3_timestream_influxdb-1.36.0.dist-info → types_boto3_timestream_influxdb-1.36.22.dist-info}/top_level.txt +0 -0
|
@@ -3,6 +3,8 @@ Type annotations for timestream-influxdb service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: ResponseMetadataTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -19,10 +19,13 @@ from __future__ import annotations
|
|
|
19
19
|
import sys
|
|
20
20
|
|
|
21
21
|
from .literals import (
|
|
22
|
+
ClusterStatusType,
|
|
22
23
|
DbInstanceTypeType,
|
|
23
24
|
DbStorageTypeType,
|
|
24
25
|
DeploymentTypeType,
|
|
25
26
|
DurationTypeType,
|
|
27
|
+
FailoverModeType,
|
|
28
|
+
InstanceModeType,
|
|
26
29
|
LogLevelType,
|
|
27
30
|
NetworkTypeType,
|
|
28
31
|
StatusType,
|
|
@@ -36,43 +39,59 @@ if sys.version_info >= (3, 9):
|
|
|
36
39
|
else:
|
|
37
40
|
from typing import Dict, List, Mapping, Sequence
|
|
38
41
|
if sys.version_info >= (3, 12):
|
|
39
|
-
from typing import NotRequired, TypedDict
|
|
42
|
+
from typing import Literal, NotRequired, TypedDict
|
|
40
43
|
else:
|
|
41
|
-
from typing_extensions import NotRequired, TypedDict
|
|
44
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
42
45
|
|
|
43
46
|
|
|
44
47
|
__all__ = (
|
|
45
|
-
"
|
|
48
|
+
"CreateDbClusterInputTypeDef",
|
|
49
|
+
"CreateDbClusterOutputTypeDef",
|
|
50
|
+
"CreateDbInstanceInputTypeDef",
|
|
46
51
|
"CreateDbInstanceOutputTypeDef",
|
|
47
|
-
"
|
|
52
|
+
"CreateDbParameterGroupInputTypeDef",
|
|
48
53
|
"CreateDbParameterGroupOutputTypeDef",
|
|
54
|
+
"DbClusterSummaryTypeDef",
|
|
55
|
+
"DbInstanceForClusterSummaryTypeDef",
|
|
49
56
|
"DbInstanceSummaryTypeDef",
|
|
50
57
|
"DbParameterGroupSummaryTypeDef",
|
|
51
|
-
"
|
|
58
|
+
"DeleteDbClusterInputTypeDef",
|
|
59
|
+
"DeleteDbClusterOutputTypeDef",
|
|
60
|
+
"DeleteDbInstanceInputTypeDef",
|
|
52
61
|
"DeleteDbInstanceOutputTypeDef",
|
|
53
62
|
"DurationTypeDef",
|
|
54
63
|
"EmptyResponseMetadataTypeDef",
|
|
55
|
-
"
|
|
64
|
+
"GetDbClusterInputTypeDef",
|
|
65
|
+
"GetDbClusterOutputTypeDef",
|
|
66
|
+
"GetDbInstanceInputTypeDef",
|
|
56
67
|
"GetDbInstanceOutputTypeDef",
|
|
57
|
-
"
|
|
68
|
+
"GetDbParameterGroupInputTypeDef",
|
|
58
69
|
"GetDbParameterGroupOutputTypeDef",
|
|
59
70
|
"InfluxDBv2ParametersTypeDef",
|
|
71
|
+
"ListDbClustersInputPaginateTypeDef",
|
|
72
|
+
"ListDbClustersInputTypeDef",
|
|
73
|
+
"ListDbClustersOutputTypeDef",
|
|
74
|
+
"ListDbInstancesForClusterInputPaginateTypeDef",
|
|
75
|
+
"ListDbInstancesForClusterInputTypeDef",
|
|
76
|
+
"ListDbInstancesForClusterOutputTypeDef",
|
|
60
77
|
"ListDbInstancesInputPaginateTypeDef",
|
|
61
|
-
"
|
|
78
|
+
"ListDbInstancesInputTypeDef",
|
|
62
79
|
"ListDbInstancesOutputTypeDef",
|
|
63
80
|
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
64
|
-
"
|
|
81
|
+
"ListDbParameterGroupsInputTypeDef",
|
|
65
82
|
"ListDbParameterGroupsOutputTypeDef",
|
|
66
|
-
"
|
|
83
|
+
"ListTagsForResourceRequestTypeDef",
|
|
67
84
|
"ListTagsForResourceResponseTypeDef",
|
|
68
85
|
"LogDeliveryConfigurationTypeDef",
|
|
69
86
|
"PaginatorConfigTypeDef",
|
|
70
87
|
"ParametersTypeDef",
|
|
71
88
|
"ResponseMetadataTypeDef",
|
|
72
89
|
"S3ConfigurationTypeDef",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
90
|
+
"TagResourceRequestTypeDef",
|
|
91
|
+
"UntagResourceRequestTypeDef",
|
|
92
|
+
"UpdateDbClusterInputTypeDef",
|
|
93
|
+
"UpdateDbClusterOutputTypeDef",
|
|
94
|
+
"UpdateDbInstanceInputTypeDef",
|
|
76
95
|
"UpdateDbInstanceOutputTypeDef",
|
|
77
96
|
)
|
|
78
97
|
|
|
@@ -85,6 +104,40 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
85
104
|
HostId: NotRequired[str]
|
|
86
105
|
|
|
87
106
|
|
|
107
|
+
DbClusterSummaryTypeDef = TypedDict(
|
|
108
|
+
"DbClusterSummaryTypeDef",
|
|
109
|
+
{
|
|
110
|
+
"id": str,
|
|
111
|
+
"name": str,
|
|
112
|
+
"arn": str,
|
|
113
|
+
"status": NotRequired[ClusterStatusType],
|
|
114
|
+
"endpoint": NotRequired[str],
|
|
115
|
+
"readerEndpoint": NotRequired[str],
|
|
116
|
+
"port": NotRequired[int],
|
|
117
|
+
"deploymentType": NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]],
|
|
118
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
119
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
120
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
121
|
+
"allocatedStorage": NotRequired[int],
|
|
122
|
+
},
|
|
123
|
+
)
|
|
124
|
+
DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
125
|
+
"DbInstanceForClusterSummaryTypeDef",
|
|
126
|
+
{
|
|
127
|
+
"id": str,
|
|
128
|
+
"name": str,
|
|
129
|
+
"arn": str,
|
|
130
|
+
"status": NotRequired[StatusType],
|
|
131
|
+
"endpoint": NotRequired[str],
|
|
132
|
+
"port": NotRequired[int],
|
|
133
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
134
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
135
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
136
|
+
"allocatedStorage": NotRequired[int],
|
|
137
|
+
"deploymentType": NotRequired[DeploymentTypeType],
|
|
138
|
+
"instanceMode": NotRequired[InstanceModeType],
|
|
139
|
+
},
|
|
140
|
+
)
|
|
88
141
|
DbInstanceSummaryTypeDef = TypedDict(
|
|
89
142
|
"DbInstanceSummaryTypeDef",
|
|
90
143
|
{
|
|
@@ -112,7 +165,11 @@ DbParameterGroupSummaryTypeDef = TypedDict(
|
|
|
112
165
|
)
|
|
113
166
|
|
|
114
167
|
|
|
115
|
-
class
|
|
168
|
+
class DeleteDbClusterInputTypeDef(TypedDict):
|
|
169
|
+
dbClusterId: str
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
class DeleteDbInstanceInputTypeDef(TypedDict):
|
|
116
173
|
identifier: str
|
|
117
174
|
|
|
118
175
|
|
|
@@ -121,11 +178,15 @@ class DurationTypeDef(TypedDict):
|
|
|
121
178
|
value: int
|
|
122
179
|
|
|
123
180
|
|
|
124
|
-
class
|
|
181
|
+
class GetDbClusterInputTypeDef(TypedDict):
|
|
182
|
+
dbClusterId: str
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
class GetDbInstanceInputTypeDef(TypedDict):
|
|
125
186
|
identifier: str
|
|
126
187
|
|
|
127
188
|
|
|
128
|
-
class
|
|
189
|
+
class GetDbParameterGroupInputTypeDef(TypedDict):
|
|
129
190
|
identifier: str
|
|
130
191
|
|
|
131
192
|
|
|
@@ -135,17 +196,28 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
135
196
|
StartingToken: NotRequired[str]
|
|
136
197
|
|
|
137
198
|
|
|
138
|
-
class
|
|
199
|
+
class ListDbClustersInputTypeDef(TypedDict):
|
|
200
|
+
nextToken: NotRequired[str]
|
|
201
|
+
maxResults: NotRequired[int]
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
class ListDbInstancesForClusterInputTypeDef(TypedDict):
|
|
205
|
+
dbClusterId: str
|
|
206
|
+
nextToken: NotRequired[str]
|
|
207
|
+
maxResults: NotRequired[int]
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
class ListDbInstancesInputTypeDef(TypedDict):
|
|
139
211
|
nextToken: NotRequired[str]
|
|
140
212
|
maxResults: NotRequired[int]
|
|
141
213
|
|
|
142
214
|
|
|
143
|
-
class
|
|
215
|
+
class ListDbParameterGroupsInputTypeDef(TypedDict):
|
|
144
216
|
nextToken: NotRequired[str]
|
|
145
217
|
maxResults: NotRequired[int]
|
|
146
218
|
|
|
147
219
|
|
|
148
|
-
class
|
|
220
|
+
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
149
221
|
resourceArn: str
|
|
150
222
|
|
|
151
223
|
|
|
@@ -154,16 +226,27 @@ class S3ConfigurationTypeDef(TypedDict):
|
|
|
154
226
|
enabled: bool
|
|
155
227
|
|
|
156
228
|
|
|
157
|
-
class
|
|
229
|
+
class TagResourceRequestTypeDef(TypedDict):
|
|
158
230
|
resourceArn: str
|
|
159
231
|
tags: Mapping[str, str]
|
|
160
232
|
|
|
161
233
|
|
|
162
|
-
class
|
|
234
|
+
class UntagResourceRequestTypeDef(TypedDict):
|
|
163
235
|
resourceArn: str
|
|
164
236
|
tagKeys: Sequence[str]
|
|
165
237
|
|
|
166
238
|
|
|
239
|
+
class CreateDbClusterOutputTypeDef(TypedDict):
|
|
240
|
+
dbClusterId: str
|
|
241
|
+
dbClusterStatus: ClusterStatusType
|
|
242
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
class DeleteDbClusterOutputTypeDef(TypedDict):
|
|
246
|
+
dbClusterStatus: ClusterStatusType
|
|
247
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
248
|
+
|
|
249
|
+
|
|
167
250
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
168
251
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
169
252
|
|
|
@@ -173,6 +256,23 @@ class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
|
173
256
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
174
257
|
|
|
175
258
|
|
|
259
|
+
class UpdateDbClusterOutputTypeDef(TypedDict):
|
|
260
|
+
dbClusterStatus: ClusterStatusType
|
|
261
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
class ListDbClustersOutputTypeDef(TypedDict):
|
|
265
|
+
items: List[DbClusterSummaryTypeDef]
|
|
266
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
267
|
+
nextToken: NotRequired[str]
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
class ListDbInstancesForClusterOutputTypeDef(TypedDict):
|
|
271
|
+
items: List[DbInstanceForClusterSummaryTypeDef]
|
|
272
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
273
|
+
nextToken: NotRequired[str]
|
|
274
|
+
|
|
275
|
+
|
|
176
276
|
class ListDbInstancesOutputTypeDef(TypedDict):
|
|
177
277
|
items: List[DbInstanceSummaryTypeDef]
|
|
178
278
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -222,6 +322,15 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
222
322
|
uiDisabled: NotRequired[bool]
|
|
223
323
|
|
|
224
324
|
|
|
325
|
+
class ListDbClustersInputPaginateTypeDef(TypedDict):
|
|
326
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
class ListDbInstancesForClusterInputPaginateTypeDef(TypedDict):
|
|
330
|
+
dbClusterId: str
|
|
331
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
332
|
+
|
|
333
|
+
|
|
225
334
|
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
226
335
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
227
336
|
|
|
@@ -238,7 +347,28 @@ class ParametersTypeDef(TypedDict):
|
|
|
238
347
|
InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
|
|
239
348
|
|
|
240
349
|
|
|
241
|
-
class
|
|
350
|
+
class CreateDbClusterInputTypeDef(TypedDict):
|
|
351
|
+
name: str
|
|
352
|
+
password: str
|
|
353
|
+
dbInstanceType: DbInstanceTypeType
|
|
354
|
+
allocatedStorage: int
|
|
355
|
+
vpcSubnetIds: Sequence[str]
|
|
356
|
+
vpcSecurityGroupIds: Sequence[str]
|
|
357
|
+
deploymentType: Literal["MULTI_NODE_READ_REPLICAS"]
|
|
358
|
+
username: NotRequired[str]
|
|
359
|
+
organization: NotRequired[str]
|
|
360
|
+
bucket: NotRequired[str]
|
|
361
|
+
port: NotRequired[int]
|
|
362
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
363
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
364
|
+
networkType: NotRequired[NetworkTypeType]
|
|
365
|
+
publiclyAccessible: NotRequired[bool]
|
|
366
|
+
failoverMode: NotRequired[FailoverModeType]
|
|
367
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
368
|
+
tags: NotRequired[Mapping[str, str]]
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
class CreateDbInstanceInputTypeDef(TypedDict):
|
|
242
372
|
name: str
|
|
243
373
|
password: str
|
|
244
374
|
dbInstanceType: DbInstanceTypeType
|
|
@@ -280,6 +410,8 @@ CreateDbInstanceOutputTypeDef = TypedDict(
|
|
|
280
410
|
"secondaryAvailabilityZone": str,
|
|
281
411
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
282
412
|
"influxAuthParametersSecretArn": str,
|
|
413
|
+
"dbClusterId": str,
|
|
414
|
+
"instanceMode": InstanceModeType,
|
|
283
415
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
284
416
|
},
|
|
285
417
|
)
|
|
@@ -305,6 +437,33 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
|
305
437
|
"secondaryAvailabilityZone": str,
|
|
306
438
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
307
439
|
"influxAuthParametersSecretArn": str,
|
|
440
|
+
"dbClusterId": str,
|
|
441
|
+
"instanceMode": InstanceModeType,
|
|
442
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
443
|
+
},
|
|
444
|
+
)
|
|
445
|
+
GetDbClusterOutputTypeDef = TypedDict(
|
|
446
|
+
"GetDbClusterOutputTypeDef",
|
|
447
|
+
{
|
|
448
|
+
"id": str,
|
|
449
|
+
"name": str,
|
|
450
|
+
"arn": str,
|
|
451
|
+
"status": ClusterStatusType,
|
|
452
|
+
"endpoint": str,
|
|
453
|
+
"readerEndpoint": str,
|
|
454
|
+
"port": int,
|
|
455
|
+
"deploymentType": Literal["MULTI_NODE_READ_REPLICAS"],
|
|
456
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
457
|
+
"networkType": NetworkTypeType,
|
|
458
|
+
"dbStorageType": DbStorageTypeType,
|
|
459
|
+
"allocatedStorage": int,
|
|
460
|
+
"publiclyAccessible": bool,
|
|
461
|
+
"dbParameterGroupIdentifier": str,
|
|
462
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
463
|
+
"influxAuthParametersSecretArn": str,
|
|
464
|
+
"vpcSubnetIds": List[str],
|
|
465
|
+
"vpcSecurityGroupIds": List[str],
|
|
466
|
+
"failoverMode": FailoverModeType,
|
|
308
467
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
309
468
|
},
|
|
310
469
|
)
|
|
@@ -330,18 +489,31 @@ GetDbInstanceOutputTypeDef = TypedDict(
|
|
|
330
489
|
"secondaryAvailabilityZone": str,
|
|
331
490
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
332
491
|
"influxAuthParametersSecretArn": str,
|
|
492
|
+
"dbClusterId": str,
|
|
493
|
+
"instanceMode": InstanceModeType,
|
|
333
494
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
334
495
|
},
|
|
335
496
|
)
|
|
336
497
|
|
|
337
498
|
|
|
338
|
-
class
|
|
499
|
+
class UpdateDbClusterInputTypeDef(TypedDict):
|
|
500
|
+
dbClusterId: str
|
|
501
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
502
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
503
|
+
port: NotRequired[int]
|
|
504
|
+
dbInstanceType: NotRequired[DbInstanceTypeType]
|
|
505
|
+
failoverMode: NotRequired[FailoverModeType]
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
class UpdateDbInstanceInputTypeDef(TypedDict):
|
|
339
509
|
identifier: str
|
|
340
510
|
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
341
511
|
dbParameterGroupIdentifier: NotRequired[str]
|
|
342
512
|
port: NotRequired[int]
|
|
343
513
|
dbInstanceType: NotRequired[DbInstanceTypeType]
|
|
344
514
|
deploymentType: NotRequired[DeploymentTypeType]
|
|
515
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
516
|
+
allocatedStorage: NotRequired[int]
|
|
345
517
|
|
|
346
518
|
|
|
347
519
|
UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
@@ -366,12 +538,14 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
|
366
538
|
"secondaryAvailabilityZone": str,
|
|
367
539
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
368
540
|
"influxAuthParametersSecretArn": str,
|
|
541
|
+
"dbClusterId": str,
|
|
542
|
+
"instanceMode": InstanceModeType,
|
|
369
543
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
370
544
|
},
|
|
371
545
|
)
|
|
372
546
|
|
|
373
547
|
|
|
374
|
-
class
|
|
548
|
+
class CreateDbParameterGroupInputTypeDef(TypedDict):
|
|
375
549
|
name: str
|
|
376
550
|
description: NotRequired[str]
|
|
377
551
|
parameters: NotRequired[ParametersTypeDef]
|