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
|
@@ -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,42 +39,58 @@ 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
|
__all__ = (
|
|
44
|
-
"
|
|
47
|
+
"CreateDbClusterInputTypeDef",
|
|
48
|
+
"CreateDbClusterOutputTypeDef",
|
|
49
|
+
"CreateDbInstanceInputTypeDef",
|
|
45
50
|
"CreateDbInstanceOutputTypeDef",
|
|
46
|
-
"
|
|
51
|
+
"CreateDbParameterGroupInputTypeDef",
|
|
47
52
|
"CreateDbParameterGroupOutputTypeDef",
|
|
53
|
+
"DbClusterSummaryTypeDef",
|
|
54
|
+
"DbInstanceForClusterSummaryTypeDef",
|
|
48
55
|
"DbInstanceSummaryTypeDef",
|
|
49
56
|
"DbParameterGroupSummaryTypeDef",
|
|
50
|
-
"
|
|
57
|
+
"DeleteDbClusterInputTypeDef",
|
|
58
|
+
"DeleteDbClusterOutputTypeDef",
|
|
59
|
+
"DeleteDbInstanceInputTypeDef",
|
|
51
60
|
"DeleteDbInstanceOutputTypeDef",
|
|
52
61
|
"DurationTypeDef",
|
|
53
62
|
"EmptyResponseMetadataTypeDef",
|
|
54
|
-
"
|
|
63
|
+
"GetDbClusterInputTypeDef",
|
|
64
|
+
"GetDbClusterOutputTypeDef",
|
|
65
|
+
"GetDbInstanceInputTypeDef",
|
|
55
66
|
"GetDbInstanceOutputTypeDef",
|
|
56
|
-
"
|
|
67
|
+
"GetDbParameterGroupInputTypeDef",
|
|
57
68
|
"GetDbParameterGroupOutputTypeDef",
|
|
58
69
|
"InfluxDBv2ParametersTypeDef",
|
|
70
|
+
"ListDbClustersInputPaginateTypeDef",
|
|
71
|
+
"ListDbClustersInputTypeDef",
|
|
72
|
+
"ListDbClustersOutputTypeDef",
|
|
73
|
+
"ListDbInstancesForClusterInputPaginateTypeDef",
|
|
74
|
+
"ListDbInstancesForClusterInputTypeDef",
|
|
75
|
+
"ListDbInstancesForClusterOutputTypeDef",
|
|
59
76
|
"ListDbInstancesInputPaginateTypeDef",
|
|
60
|
-
"
|
|
77
|
+
"ListDbInstancesInputTypeDef",
|
|
61
78
|
"ListDbInstancesOutputTypeDef",
|
|
62
79
|
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
63
|
-
"
|
|
80
|
+
"ListDbParameterGroupsInputTypeDef",
|
|
64
81
|
"ListDbParameterGroupsOutputTypeDef",
|
|
65
|
-
"
|
|
82
|
+
"ListTagsForResourceRequestTypeDef",
|
|
66
83
|
"ListTagsForResourceResponseTypeDef",
|
|
67
84
|
"LogDeliveryConfigurationTypeDef",
|
|
68
85
|
"PaginatorConfigTypeDef",
|
|
69
86
|
"ParametersTypeDef",
|
|
70
87
|
"ResponseMetadataTypeDef",
|
|
71
88
|
"S3ConfigurationTypeDef",
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
89
|
+
"TagResourceRequestTypeDef",
|
|
90
|
+
"UntagResourceRequestTypeDef",
|
|
91
|
+
"UpdateDbClusterInputTypeDef",
|
|
92
|
+
"UpdateDbClusterOutputTypeDef",
|
|
93
|
+
"UpdateDbInstanceInputTypeDef",
|
|
75
94
|
"UpdateDbInstanceOutputTypeDef",
|
|
76
95
|
)
|
|
77
96
|
|
|
@@ -82,6 +101,40 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
82
101
|
RetryAttempts: int
|
|
83
102
|
HostId: NotRequired[str]
|
|
84
103
|
|
|
104
|
+
DbClusterSummaryTypeDef = TypedDict(
|
|
105
|
+
"DbClusterSummaryTypeDef",
|
|
106
|
+
{
|
|
107
|
+
"id": str,
|
|
108
|
+
"name": str,
|
|
109
|
+
"arn": str,
|
|
110
|
+
"status": NotRequired[ClusterStatusType],
|
|
111
|
+
"endpoint": NotRequired[str],
|
|
112
|
+
"readerEndpoint": NotRequired[str],
|
|
113
|
+
"port": NotRequired[int],
|
|
114
|
+
"deploymentType": NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]],
|
|
115
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
116
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
117
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
118
|
+
"allocatedStorage": NotRequired[int],
|
|
119
|
+
},
|
|
120
|
+
)
|
|
121
|
+
DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
122
|
+
"DbInstanceForClusterSummaryTypeDef",
|
|
123
|
+
{
|
|
124
|
+
"id": str,
|
|
125
|
+
"name": str,
|
|
126
|
+
"arn": str,
|
|
127
|
+
"status": NotRequired[StatusType],
|
|
128
|
+
"endpoint": NotRequired[str],
|
|
129
|
+
"port": NotRequired[int],
|
|
130
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
131
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
132
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
133
|
+
"allocatedStorage": NotRequired[int],
|
|
134
|
+
"deploymentType": NotRequired[DeploymentTypeType],
|
|
135
|
+
"instanceMode": NotRequired[InstanceModeType],
|
|
136
|
+
},
|
|
137
|
+
)
|
|
85
138
|
DbInstanceSummaryTypeDef = TypedDict(
|
|
86
139
|
"DbInstanceSummaryTypeDef",
|
|
87
140
|
{
|
|
@@ -108,17 +161,23 @@ DbParameterGroupSummaryTypeDef = TypedDict(
|
|
|
108
161
|
},
|
|
109
162
|
)
|
|
110
163
|
|
|
111
|
-
class
|
|
164
|
+
class DeleteDbClusterInputTypeDef(TypedDict):
|
|
165
|
+
dbClusterId: str
|
|
166
|
+
|
|
167
|
+
class DeleteDbInstanceInputTypeDef(TypedDict):
|
|
112
168
|
identifier: str
|
|
113
169
|
|
|
114
170
|
class DurationTypeDef(TypedDict):
|
|
115
171
|
durationType: DurationTypeType
|
|
116
172
|
value: int
|
|
117
173
|
|
|
118
|
-
class
|
|
174
|
+
class GetDbClusterInputTypeDef(TypedDict):
|
|
175
|
+
dbClusterId: str
|
|
176
|
+
|
|
177
|
+
class GetDbInstanceInputTypeDef(TypedDict):
|
|
119
178
|
identifier: str
|
|
120
179
|
|
|
121
|
-
class
|
|
180
|
+
class GetDbParameterGroupInputTypeDef(TypedDict):
|
|
122
181
|
identifier: str
|
|
123
182
|
|
|
124
183
|
class PaginatorConfigTypeDef(TypedDict):
|
|
@@ -126,29 +185,47 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
126
185
|
PageSize: NotRequired[int]
|
|
127
186
|
StartingToken: NotRequired[str]
|
|
128
187
|
|
|
129
|
-
class
|
|
188
|
+
class ListDbClustersInputTypeDef(TypedDict):
|
|
189
|
+
nextToken: NotRequired[str]
|
|
190
|
+
maxResults: NotRequired[int]
|
|
191
|
+
|
|
192
|
+
class ListDbInstancesForClusterInputTypeDef(TypedDict):
|
|
193
|
+
dbClusterId: str
|
|
194
|
+
nextToken: NotRequired[str]
|
|
195
|
+
maxResults: NotRequired[int]
|
|
196
|
+
|
|
197
|
+
class ListDbInstancesInputTypeDef(TypedDict):
|
|
130
198
|
nextToken: NotRequired[str]
|
|
131
199
|
maxResults: NotRequired[int]
|
|
132
200
|
|
|
133
|
-
class
|
|
201
|
+
class ListDbParameterGroupsInputTypeDef(TypedDict):
|
|
134
202
|
nextToken: NotRequired[str]
|
|
135
203
|
maxResults: NotRequired[int]
|
|
136
204
|
|
|
137
|
-
class
|
|
205
|
+
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
138
206
|
resourceArn: str
|
|
139
207
|
|
|
140
208
|
class S3ConfigurationTypeDef(TypedDict):
|
|
141
209
|
bucketName: str
|
|
142
210
|
enabled: bool
|
|
143
211
|
|
|
144
|
-
class
|
|
212
|
+
class TagResourceRequestTypeDef(TypedDict):
|
|
145
213
|
resourceArn: str
|
|
146
214
|
tags: Mapping[str, str]
|
|
147
215
|
|
|
148
|
-
class
|
|
216
|
+
class UntagResourceRequestTypeDef(TypedDict):
|
|
149
217
|
resourceArn: str
|
|
150
218
|
tagKeys: Sequence[str]
|
|
151
219
|
|
|
220
|
+
class CreateDbClusterOutputTypeDef(TypedDict):
|
|
221
|
+
dbClusterId: str
|
|
222
|
+
dbClusterStatus: ClusterStatusType
|
|
223
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
224
|
+
|
|
225
|
+
class DeleteDbClusterOutputTypeDef(TypedDict):
|
|
226
|
+
dbClusterStatus: ClusterStatusType
|
|
227
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
228
|
+
|
|
152
229
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
153
230
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
154
231
|
|
|
@@ -156,6 +233,20 @@ class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
|
156
233
|
tags: Dict[str, str]
|
|
157
234
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
158
235
|
|
|
236
|
+
class UpdateDbClusterOutputTypeDef(TypedDict):
|
|
237
|
+
dbClusterStatus: ClusterStatusType
|
|
238
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
239
|
+
|
|
240
|
+
class ListDbClustersOutputTypeDef(TypedDict):
|
|
241
|
+
items: List[DbClusterSummaryTypeDef]
|
|
242
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
243
|
+
nextToken: NotRequired[str]
|
|
244
|
+
|
|
245
|
+
class ListDbInstancesForClusterOutputTypeDef(TypedDict):
|
|
246
|
+
items: List[DbInstanceForClusterSummaryTypeDef]
|
|
247
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
248
|
+
nextToken: NotRequired[str]
|
|
249
|
+
|
|
159
250
|
class ListDbInstancesOutputTypeDef(TypedDict):
|
|
160
251
|
items: List[DbInstanceSummaryTypeDef]
|
|
161
252
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -202,6 +293,13 @@ class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
|
202
293
|
storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
|
|
203
294
|
uiDisabled: NotRequired[bool]
|
|
204
295
|
|
|
296
|
+
class ListDbClustersInputPaginateTypeDef(TypedDict):
|
|
297
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
298
|
+
|
|
299
|
+
class ListDbInstancesForClusterInputPaginateTypeDef(TypedDict):
|
|
300
|
+
dbClusterId: str
|
|
301
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
302
|
+
|
|
205
303
|
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
206
304
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
207
305
|
|
|
@@ -214,7 +312,27 @@ class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
|
214
312
|
class ParametersTypeDef(TypedDict):
|
|
215
313
|
InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
|
|
216
314
|
|
|
217
|
-
class
|
|
315
|
+
class CreateDbClusterInputTypeDef(TypedDict):
|
|
316
|
+
name: str
|
|
317
|
+
password: str
|
|
318
|
+
dbInstanceType: DbInstanceTypeType
|
|
319
|
+
allocatedStorage: int
|
|
320
|
+
vpcSubnetIds: Sequence[str]
|
|
321
|
+
vpcSecurityGroupIds: Sequence[str]
|
|
322
|
+
deploymentType: Literal["MULTI_NODE_READ_REPLICAS"]
|
|
323
|
+
username: NotRequired[str]
|
|
324
|
+
organization: NotRequired[str]
|
|
325
|
+
bucket: NotRequired[str]
|
|
326
|
+
port: NotRequired[int]
|
|
327
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
328
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
329
|
+
networkType: NotRequired[NetworkTypeType]
|
|
330
|
+
publiclyAccessible: NotRequired[bool]
|
|
331
|
+
failoverMode: NotRequired[FailoverModeType]
|
|
332
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
333
|
+
tags: NotRequired[Mapping[str, str]]
|
|
334
|
+
|
|
335
|
+
class CreateDbInstanceInputTypeDef(TypedDict):
|
|
218
336
|
name: str
|
|
219
337
|
password: str
|
|
220
338
|
dbInstanceType: DbInstanceTypeType
|
|
@@ -255,6 +373,8 @@ CreateDbInstanceOutputTypeDef = TypedDict(
|
|
|
255
373
|
"secondaryAvailabilityZone": str,
|
|
256
374
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
257
375
|
"influxAuthParametersSecretArn": str,
|
|
376
|
+
"dbClusterId": str,
|
|
377
|
+
"instanceMode": InstanceModeType,
|
|
258
378
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
259
379
|
},
|
|
260
380
|
)
|
|
@@ -280,6 +400,33 @@ DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
|
280
400
|
"secondaryAvailabilityZone": str,
|
|
281
401
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
282
402
|
"influxAuthParametersSecretArn": str,
|
|
403
|
+
"dbClusterId": str,
|
|
404
|
+
"instanceMode": InstanceModeType,
|
|
405
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
406
|
+
},
|
|
407
|
+
)
|
|
408
|
+
GetDbClusterOutputTypeDef = TypedDict(
|
|
409
|
+
"GetDbClusterOutputTypeDef",
|
|
410
|
+
{
|
|
411
|
+
"id": str,
|
|
412
|
+
"name": str,
|
|
413
|
+
"arn": str,
|
|
414
|
+
"status": ClusterStatusType,
|
|
415
|
+
"endpoint": str,
|
|
416
|
+
"readerEndpoint": str,
|
|
417
|
+
"port": int,
|
|
418
|
+
"deploymentType": Literal["MULTI_NODE_READ_REPLICAS"],
|
|
419
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
420
|
+
"networkType": NetworkTypeType,
|
|
421
|
+
"dbStorageType": DbStorageTypeType,
|
|
422
|
+
"allocatedStorage": int,
|
|
423
|
+
"publiclyAccessible": bool,
|
|
424
|
+
"dbParameterGroupIdentifier": str,
|
|
425
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
426
|
+
"influxAuthParametersSecretArn": str,
|
|
427
|
+
"vpcSubnetIds": List[str],
|
|
428
|
+
"vpcSecurityGroupIds": List[str],
|
|
429
|
+
"failoverMode": FailoverModeType,
|
|
283
430
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
284
431
|
},
|
|
285
432
|
)
|
|
@@ -305,11 +452,21 @@ GetDbInstanceOutputTypeDef = TypedDict(
|
|
|
305
452
|
"secondaryAvailabilityZone": str,
|
|
306
453
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
307
454
|
"influxAuthParametersSecretArn": str,
|
|
455
|
+
"dbClusterId": str,
|
|
456
|
+
"instanceMode": InstanceModeType,
|
|
308
457
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
309
458
|
},
|
|
310
459
|
)
|
|
311
460
|
|
|
312
|
-
class
|
|
461
|
+
class UpdateDbClusterInputTypeDef(TypedDict):
|
|
462
|
+
dbClusterId: str
|
|
463
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
464
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
465
|
+
port: NotRequired[int]
|
|
466
|
+
dbInstanceType: NotRequired[DbInstanceTypeType]
|
|
467
|
+
failoverMode: NotRequired[FailoverModeType]
|
|
468
|
+
|
|
469
|
+
class UpdateDbInstanceInputTypeDef(TypedDict):
|
|
313
470
|
identifier: str
|
|
314
471
|
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
315
472
|
dbParameterGroupIdentifier: NotRequired[str]
|
|
@@ -341,11 +498,13 @@ UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
|
341
498
|
"secondaryAvailabilityZone": str,
|
|
342
499
|
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
343
500
|
"influxAuthParametersSecretArn": str,
|
|
501
|
+
"dbClusterId": str,
|
|
502
|
+
"instanceMode": InstanceModeType,
|
|
344
503
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
345
504
|
},
|
|
346
505
|
)
|
|
347
506
|
|
|
348
|
-
class
|
|
507
|
+
class CreateDbParameterGroupInputTypeDef(TypedDict):
|
|
349
508
|
name: str
|
|
350
509
|
description: NotRequired[str]
|
|
351
510
|
parameters: NotRequired[ParametersTypeDef]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-timestream-influxdb
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 TimestreamInfluxDB 1.
|
|
3
|
+
Version: 1.37.0
|
|
4
|
+
Summary: Type annotations for boto3 TimestreamInfluxDB 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|

|
|
57
57
|
|
|
58
58
|
Type annotations for
|
|
59
|
-
[boto3 TimestreamInfluxDB 1.
|
|
59
|
+
[boto3 TimestreamInfluxDB 1.37.0](https://pypi.org/project/boto3/) compatible
|
|
60
60
|
with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ with [VSCode](https://code.visualstudio.com/),
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -113,12 +113,12 @@ See how it helps you find and fix potential bugs:
|
|
|
113
113
|
### Generate locally (recommended)
|
|
114
114
|
|
|
115
115
|
You can generate type annotations for `boto3` package locally with
|
|
116
|
-
`
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
117
117
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3` AWS SDK.
|
|
123
123
|
3. Add `TimestreamInfluxDB` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -354,6 +354,8 @@ from boto3.session import Session
|
|
|
354
354
|
|
|
355
355
|
from types_boto3_timestream_influxdb import TimestreamInfluxDBClient
|
|
356
356
|
from types_boto3_timestream_influxdb.paginator import (
|
|
357
|
+
ListDbClustersPaginator,
|
|
358
|
+
ListDbInstancesForClusterPaginator,
|
|
357
359
|
ListDbInstancesPaginator,
|
|
358
360
|
ListDbParameterGroupsPaginator,
|
|
359
361
|
)
|
|
@@ -362,6 +364,10 @@ client: TimestreamInfluxDBClient = Session().client("timestream-influxdb")
|
|
|
362
364
|
|
|
363
365
|
# Explicit type annotations are optional here
|
|
364
366
|
# Types should be correctly discovered by mypy and IDEs
|
|
367
|
+
list_db_clusters_paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters")
|
|
368
|
+
list_db_instances_for_cluster_paginator: ListDbInstancesForClusterPaginator = client.get_paginator(
|
|
369
|
+
"list_db_instances_for_cluster"
|
|
370
|
+
)
|
|
365
371
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
366
372
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator(
|
|
367
373
|
"list_db_parameter_groups"
|
|
@@ -379,10 +385,10 @@ Full list of `TimestreamInfluxDB` Literals can be found in
|
|
|
379
385
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/).
|
|
380
386
|
|
|
381
387
|
```python
|
|
382
|
-
from types_boto3_timestream_influxdb.literals import
|
|
388
|
+
from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
|
|
383
389
|
|
|
384
390
|
|
|
385
|
-
def check_value(value:
|
|
391
|
+
def check_value(value: ClusterDeploymentTypeType) -> bool: ...
|
|
386
392
|
```
|
|
387
393
|
|
|
388
394
|
<a id="type-definitions"></a>
|
|
@@ -396,11 +402,14 @@ Full list of `TimestreamInfluxDB` TypeDefs can be found in
|
|
|
396
402
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/).
|
|
397
403
|
|
|
398
404
|
```python
|
|
405
|
+
# TypedDict usage example
|
|
399
406
|
from types_boto3_timestream_influxdb.type_defs import ResponseMetadataTypeDef
|
|
400
407
|
|
|
401
408
|
|
|
402
409
|
def get_value() -> ResponseMetadataTypeDef:
|
|
403
|
-
return {
|
|
410
|
+
return {
|
|
411
|
+
"RequestId": ...,
|
|
412
|
+
}
|
|
404
413
|
```
|
|
405
414
|
|
|
406
415
|
<a id="how-it-works"></a>
|
|
@@ -454,8 +463,8 @@ Builder changelog can be found in
|
|
|
454
463
|
## Versioning
|
|
455
464
|
|
|
456
465
|
`types-boto3-timestream-influxdb` version is the same as related `boto3`
|
|
457
|
-
version and follows
|
|
458
|
-
|
|
466
|
+
version and follows
|
|
467
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
459
468
|
|
|
460
469
|
<a id="thank-you"></a>
|
|
461
470
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_timestream_influxdb/__init__.py,sha256=hkKrORQHj15qX05yKFf8Y9JygBmQ7qfYMwaRhIKoZ_s,1518
|
|
2
|
+
types_boto3_timestream_influxdb/__init__.pyi,sha256=fvwK4eOCk1guAXDQpyKRnho6YhqRcEiTlLQGq-TNh1U,1517
|
|
3
|
+
types_boto3_timestream_influxdb/__main__.py,sha256=LQNrJiMfgKzUF9vMiPxh1EoAa3gYakQ4dj0p1CcP7zQ,1027
|
|
4
|
+
types_boto3_timestream_influxdb/client.py,sha256=avffqlhHjEhGB2gZkzA37_5BRFuv23Fj1vGEPo6Ceno,15679
|
|
5
|
+
types_boto3_timestream_influxdb/client.pyi,sha256=rI7QI4U9xiLBKlDrUaIlP0uS92BCsVbByDCMnGVabZ0,15676
|
|
6
|
+
types_boto3_timestream_influxdb/literals.py,sha256=b6FzjgfHMFw8gxYKRu-6cg2LvkV0qkDUyt2AFA-fC4A,10770
|
|
7
|
+
types_boto3_timestream_influxdb/literals.pyi,sha256=UZ-HhiiO5gXXKojBhMaF7WLWjxfJcqDW9UJ4_PfR6jw,10768
|
|
8
|
+
types_boto3_timestream_influxdb/paginator.py,sha256=nbnAAxoOlx1Wt9deX1iLfkP-jI1aKYgwz4rvU-2yqtk,6780
|
|
9
|
+
types_boto3_timestream_influxdb/paginator.pyi,sha256=dSrZP4S5pDpW8ogoAvb2xgwW4qiLkkml-F9NjpSCBGQ,6767
|
|
10
|
+
types_boto3_timestream_influxdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_timestream_influxdb/type_defs.py,sha256=Bp8TleseuWJe2LJB4LNx-hseJBPlEFXq-UVWsW-Ecck,17500
|
|
12
|
+
types_boto3_timestream_influxdb/type_defs.pyi,sha256=lW29dR97fd4Iw0vQjRaLexLaKPB6hC8Q_LesOMop0n8,17458
|
|
13
|
+
types_boto3_timestream_influxdb/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
14
|
+
types_boto3_timestream_influxdb-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_timestream_influxdb-1.37.0.dist-info/METADATA,sha256=p0yb9WzfuIeg5qx2uSRQtUoOMD0nkqjBtr94vualR9E,16076
|
|
16
|
+
types_boto3_timestream_influxdb-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
+
types_boto3_timestream_influxdb-1.37.0.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
+
types_boto3_timestream_influxdb-1.37.0.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_timestream_influxdb/__init__.py,sha256=OltOfYynfO4BEmkoSraTZluH_pbbPcnnrodjfFH4IjA,957
|
|
2
|
-
types_boto3_timestream_influxdb/__init__.pyi,sha256=6XGeJdgJ968oOd6x34_jqJvcGF5mQX-WiZWdBzAvhiU,956
|
|
3
|
-
types_boto3_timestream_influxdb/__main__.py,sha256=eBQhR6uN0Go42hSynz5Euej0a49k_ggGv3kWkaxlobE,1027
|
|
4
|
-
types_boto3_timestream_influxdb/client.py,sha256=k2tYFBvItijcyceAkPoZDJ_-dLYzlHKqLx0QjQL5mTY,11094
|
|
5
|
-
types_boto3_timestream_influxdb/client.pyi,sha256=nbXnxVna20KbZO1Ux3XrnsbPKKwAObdmQPgt0GjxaV0,11091
|
|
6
|
-
types_boto3_timestream_influxdb/literals.py,sha256=_C8BhkU-sMEtFVB2eFSBez4rMo0aZaETYAL7Yf1w7gY,10099
|
|
7
|
-
types_boto3_timestream_influxdb/literals.pyi,sha256=9FQW-CERIc-VAEZzaqklD6SnOB2_-BF-34HwpdoAK8I,10097
|
|
8
|
-
types_boto3_timestream_influxdb/paginator.py,sha256=fskUBMkvk2H9AbomoMM6blnDFa6d7CGQPiBOIF3Byzc,3759
|
|
9
|
-
types_boto3_timestream_influxdb/paginator.pyi,sha256=cV73GsaAzub0m3oGbOZjrVUKfgbaWowGexPnIsUB9nU,3752
|
|
10
|
-
types_boto3_timestream_influxdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_timestream_influxdb/type_defs.py,sha256=nQNDnM1UQgYcRZgwyAvZ9NUweU4DErl_FlCJvpGqsrA,12128
|
|
12
|
-
types_boto3_timestream_influxdb/type_defs.pyi,sha256=w6g4-LZR1J-NK4T0Wz8II3VNzJXr9e4_mDBXjJ-aKVs,12099
|
|
13
|
-
types_boto3_timestream_influxdb/version.py,sha256=IvSp3Xib3aaUW1R0mbc7yXsJlSEwPvLpSDUMn_Wtnis,92
|
|
14
|
-
types_boto3_timestream_influxdb-1.36.8.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_timestream_influxdb-1.36.8.dist-info/METADATA,sha256=tKjxcAO9np9Ck2srHa25ARDmuT1txkkR8zTHy9Ogx9M,15653
|
|
16
|
-
types_boto3_timestream_influxdb-1.36.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
types_boto3_timestream_influxdb-1.36.8.dist-info/top_level.txt,sha256=43Cm-9h3jp52NwsgH-GoRaUM_OonEK4gJ8HAgIvqtrk,32
|
|
18
|
-
types_boto3_timestream_influxdb-1.36.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|