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.

@@ -0,0 +1,373 @@
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
+ __all__ = (
44
+ "CreateDbInstanceInputRequestTypeDef",
45
+ "CreateDbInstanceOutputTypeDef",
46
+ "CreateDbParameterGroupInputRequestTypeDef",
47
+ "CreateDbParameterGroupOutputTypeDef",
48
+ "DbInstanceSummaryTypeDef",
49
+ "DbParameterGroupSummaryTypeDef",
50
+ "DeleteDbInstanceInputRequestTypeDef",
51
+ "DeleteDbInstanceOutputTypeDef",
52
+ "DurationTypeDef",
53
+ "EmptyResponseMetadataTypeDef",
54
+ "GetDbInstanceInputRequestTypeDef",
55
+ "GetDbInstanceOutputTypeDef",
56
+ "GetDbParameterGroupInputRequestTypeDef",
57
+ "GetDbParameterGroupOutputTypeDef",
58
+ "InfluxDBv2ParametersTypeDef",
59
+ "ListDbInstancesInputPaginateTypeDef",
60
+ "ListDbInstancesInputRequestTypeDef",
61
+ "ListDbInstancesOutputTypeDef",
62
+ "ListDbParameterGroupsInputPaginateTypeDef",
63
+ "ListDbParameterGroupsInputRequestTypeDef",
64
+ "ListDbParameterGroupsOutputTypeDef",
65
+ "ListTagsForResourceRequestRequestTypeDef",
66
+ "ListTagsForResourceResponseTypeDef",
67
+ "LogDeliveryConfigurationTypeDef",
68
+ "PaginatorConfigTypeDef",
69
+ "ParametersTypeDef",
70
+ "ResponseMetadataTypeDef",
71
+ "S3ConfigurationTypeDef",
72
+ "TagResourceRequestRequestTypeDef",
73
+ "UntagResourceRequestRequestTypeDef",
74
+ "UpdateDbInstanceInputRequestTypeDef",
75
+ "UpdateDbInstanceOutputTypeDef",
76
+ )
77
+
78
+ class ResponseMetadataTypeDef(TypedDict):
79
+ RequestId: str
80
+ HTTPStatusCode: int
81
+ HTTPHeaders: Dict[str, str]
82
+ RetryAttempts: int
83
+ HostId: NotRequired[str]
84
+
85
+ DbInstanceSummaryTypeDef = TypedDict(
86
+ "DbInstanceSummaryTypeDef",
87
+ {
88
+ "id": str,
89
+ "name": str,
90
+ "arn": str,
91
+ "status": NotRequired[StatusType],
92
+ "endpoint": NotRequired[str],
93
+ "port": NotRequired[int],
94
+ "networkType": NotRequired[NetworkTypeType],
95
+ "dbInstanceType": NotRequired[DbInstanceTypeType],
96
+ "dbStorageType": NotRequired[DbStorageTypeType],
97
+ "allocatedStorage": NotRequired[int],
98
+ "deploymentType": NotRequired[DeploymentTypeType],
99
+ },
100
+ )
101
+ DbParameterGroupSummaryTypeDef = TypedDict(
102
+ "DbParameterGroupSummaryTypeDef",
103
+ {
104
+ "id": str,
105
+ "name": str,
106
+ "arn": str,
107
+ "description": NotRequired[str],
108
+ },
109
+ )
110
+
111
+ class DeleteDbInstanceInputRequestTypeDef(TypedDict):
112
+ identifier: str
113
+
114
+ class DurationTypeDef(TypedDict):
115
+ durationType: DurationTypeType
116
+ value: int
117
+
118
+ class GetDbInstanceInputRequestTypeDef(TypedDict):
119
+ identifier: str
120
+
121
+ class GetDbParameterGroupInputRequestTypeDef(TypedDict):
122
+ identifier: str
123
+
124
+ class PaginatorConfigTypeDef(TypedDict):
125
+ MaxItems: NotRequired[int]
126
+ PageSize: NotRequired[int]
127
+ StartingToken: NotRequired[str]
128
+
129
+ class ListDbInstancesInputRequestTypeDef(TypedDict):
130
+ nextToken: NotRequired[str]
131
+ maxResults: NotRequired[int]
132
+
133
+ class ListDbParameterGroupsInputRequestTypeDef(TypedDict):
134
+ nextToken: NotRequired[str]
135
+ maxResults: NotRequired[int]
136
+
137
+ class ListTagsForResourceRequestRequestTypeDef(TypedDict):
138
+ resourceArn: str
139
+
140
+ class S3ConfigurationTypeDef(TypedDict):
141
+ bucketName: str
142
+ enabled: bool
143
+
144
+ class TagResourceRequestRequestTypeDef(TypedDict):
145
+ resourceArn: str
146
+ tags: Mapping[str, str]
147
+
148
+ class UntagResourceRequestRequestTypeDef(TypedDict):
149
+ resourceArn: str
150
+ tagKeys: Sequence[str]
151
+
152
+ class EmptyResponseMetadataTypeDef(TypedDict):
153
+ ResponseMetadata: ResponseMetadataTypeDef
154
+
155
+ class ListTagsForResourceResponseTypeDef(TypedDict):
156
+ tags: Dict[str, str]
157
+ ResponseMetadata: ResponseMetadataTypeDef
158
+
159
+ class ListDbInstancesOutputTypeDef(TypedDict):
160
+ items: List[DbInstanceSummaryTypeDef]
161
+ ResponseMetadata: ResponseMetadataTypeDef
162
+ nextToken: NotRequired[str]
163
+
164
+ class ListDbParameterGroupsOutputTypeDef(TypedDict):
165
+ items: List[DbParameterGroupSummaryTypeDef]
166
+ ResponseMetadata: ResponseMetadataTypeDef
167
+ nextToken: NotRequired[str]
168
+
169
+ class InfluxDBv2ParametersTypeDef(TypedDict):
170
+ fluxLogEnabled: NotRequired[bool]
171
+ logLevel: NotRequired[LogLevelType]
172
+ noTasks: NotRequired[bool]
173
+ queryConcurrency: NotRequired[int]
174
+ queryQueueSize: NotRequired[int]
175
+ tracingType: NotRequired[TracingTypeType]
176
+ metricsDisabled: NotRequired[bool]
177
+ httpIdleTimeout: NotRequired[DurationTypeDef]
178
+ httpReadHeaderTimeout: NotRequired[DurationTypeDef]
179
+ httpReadTimeout: NotRequired[DurationTypeDef]
180
+ httpWriteTimeout: NotRequired[DurationTypeDef]
181
+ influxqlMaxSelectBuckets: NotRequired[int]
182
+ influxqlMaxSelectPoint: NotRequired[int]
183
+ influxqlMaxSelectSeries: NotRequired[int]
184
+ pprofDisabled: NotRequired[bool]
185
+ queryInitialMemoryBytes: NotRequired[int]
186
+ queryMaxMemoryBytes: NotRequired[int]
187
+ queryMemoryBytes: NotRequired[int]
188
+ sessionLength: NotRequired[int]
189
+ sessionRenewDisabled: NotRequired[bool]
190
+ storageCacheMaxMemorySize: NotRequired[int]
191
+ storageCacheSnapshotMemorySize: NotRequired[int]
192
+ storageCacheSnapshotWriteColdDuration: NotRequired[DurationTypeDef]
193
+ storageCompactFullWriteColdDuration: NotRequired[DurationTypeDef]
194
+ storageCompactThroughputBurst: NotRequired[int]
195
+ storageMaxConcurrentCompactions: NotRequired[int]
196
+ storageMaxIndexLogFileSize: NotRequired[int]
197
+ storageNoValidateFieldSize: NotRequired[bool]
198
+ storageRetentionCheckInterval: NotRequired[DurationTypeDef]
199
+ storageSeriesFileMaxConcurrentSnapshotCompactions: NotRequired[int]
200
+ storageSeriesIdSetCacheSize: NotRequired[int]
201
+ storageWalMaxConcurrentWrites: NotRequired[int]
202
+ storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
203
+ uiDisabled: NotRequired[bool]
204
+
205
+ class ListDbInstancesInputPaginateTypeDef(TypedDict):
206
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
207
+
208
+ class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
209
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
210
+
211
+ class LogDeliveryConfigurationTypeDef(TypedDict):
212
+ s3Configuration: S3ConfigurationTypeDef
213
+
214
+ class ParametersTypeDef(TypedDict):
215
+ InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
216
+
217
+ class CreateDbInstanceInputRequestTypeDef(TypedDict):
218
+ name: str
219
+ password: str
220
+ dbInstanceType: DbInstanceTypeType
221
+ vpcSubnetIds: Sequence[str]
222
+ vpcSecurityGroupIds: Sequence[str]
223
+ allocatedStorage: int
224
+ username: NotRequired[str]
225
+ organization: NotRequired[str]
226
+ bucket: NotRequired[str]
227
+ publiclyAccessible: NotRequired[bool]
228
+ dbStorageType: NotRequired[DbStorageTypeType]
229
+ dbParameterGroupIdentifier: NotRequired[str]
230
+ deploymentType: NotRequired[DeploymentTypeType]
231
+ logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
232
+ tags: NotRequired[Mapping[str, str]]
233
+ port: NotRequired[int]
234
+ networkType: NotRequired[NetworkTypeType]
235
+
236
+ CreateDbInstanceOutputTypeDef = TypedDict(
237
+ "CreateDbInstanceOutputTypeDef",
238
+ {
239
+ "id": str,
240
+ "name": str,
241
+ "arn": str,
242
+ "status": StatusType,
243
+ "endpoint": str,
244
+ "port": int,
245
+ "networkType": NetworkTypeType,
246
+ "dbInstanceType": DbInstanceTypeType,
247
+ "dbStorageType": DbStorageTypeType,
248
+ "allocatedStorage": int,
249
+ "deploymentType": DeploymentTypeType,
250
+ "vpcSubnetIds": List[str],
251
+ "publiclyAccessible": bool,
252
+ "vpcSecurityGroupIds": List[str],
253
+ "dbParameterGroupIdentifier": str,
254
+ "availabilityZone": str,
255
+ "secondaryAvailabilityZone": str,
256
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
257
+ "influxAuthParametersSecretArn": str,
258
+ "ResponseMetadata": ResponseMetadataTypeDef,
259
+ },
260
+ )
261
+ DeleteDbInstanceOutputTypeDef = TypedDict(
262
+ "DeleteDbInstanceOutputTypeDef",
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
+ GetDbInstanceOutputTypeDef = TypedDict(
287
+ "GetDbInstanceOutputTypeDef",
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
+
312
+ class UpdateDbInstanceInputRequestTypeDef(TypedDict):
313
+ identifier: str
314
+ logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
315
+ dbParameterGroupIdentifier: NotRequired[str]
316
+ port: NotRequired[int]
317
+ dbInstanceType: NotRequired[DbInstanceTypeType]
318
+ deploymentType: NotRequired[DeploymentTypeType]
319
+
320
+ UpdateDbInstanceOutputTypeDef = TypedDict(
321
+ "UpdateDbInstanceOutputTypeDef",
322
+ {
323
+ "id": str,
324
+ "name": str,
325
+ "arn": str,
326
+ "status": StatusType,
327
+ "endpoint": str,
328
+ "port": int,
329
+ "networkType": NetworkTypeType,
330
+ "dbInstanceType": DbInstanceTypeType,
331
+ "dbStorageType": DbStorageTypeType,
332
+ "allocatedStorage": int,
333
+ "deploymentType": DeploymentTypeType,
334
+ "vpcSubnetIds": List[str],
335
+ "publiclyAccessible": bool,
336
+ "vpcSecurityGroupIds": List[str],
337
+ "dbParameterGroupIdentifier": str,
338
+ "availabilityZone": str,
339
+ "secondaryAvailabilityZone": str,
340
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
341
+ "influxAuthParametersSecretArn": str,
342
+ "ResponseMetadata": ResponseMetadataTypeDef,
343
+ },
344
+ )
345
+
346
+ class CreateDbParameterGroupInputRequestTypeDef(TypedDict):
347
+ name: str
348
+ description: NotRequired[str]
349
+ parameters: NotRequired[ParametersTypeDef]
350
+ tags: NotRequired[Mapping[str, str]]
351
+
352
+ CreateDbParameterGroupOutputTypeDef = TypedDict(
353
+ "CreateDbParameterGroupOutputTypeDef",
354
+ {
355
+ "id": str,
356
+ "name": str,
357
+ "arn": str,
358
+ "description": str,
359
+ "parameters": ParametersTypeDef,
360
+ "ResponseMetadata": ResponseMetadataTypeDef,
361
+ },
362
+ )
363
+ GetDbParameterGroupOutputTypeDef = TypedDict(
364
+ "GetDbParameterGroupOutputTypeDef",
365
+ {
366
+ "id": str,
367
+ "name": str,
368
+ "arn": str,
369
+ "description": str,
370
+ "parameters": ParametersTypeDef,
371
+ "ResponseMetadata": ResponseMetadataTypeDef,
372
+ },
373
+ )
@@ -0,0 +1,7 @@
1
+ """
2
+ Source of truth for version.
3
+
4
+ Copyright 2025 Vlad Emelianov
5
+ """
6
+
7
+ __version__ = "1.36.0"
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Vlad Emelianov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.