types-boto3-timestream-influxdb 1.36.8__py3-none-any.whl → 1.40.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 +35 -8
- types_boto3_timestream_influxdb/literals.pyi +35 -8
- 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.40.0.dist-info}/METADATA +22 -12
- types_boto3_timestream_influxdb-1.40.0.dist-info/RECORD +18 -0
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.40.0.dist-info}/WHEEL +1 -1
- 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.40.0.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_timestream_influxdb-1.36.8.dist-info → types_boto3_timestream_influxdb-1.40.0.dist-info}/top_level.txt +0 -0
|
@@ -3,15 +3,15 @@ Type annotations for timestream-influxdb service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_timestream_influxdb.literals import
|
|
11
|
+
from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: ClusterDeploymentTypeType = "MULTI_NODE_READ_REPLICAS"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -23,10 +23,16 @@ else:
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
__all__ = (
|
|
26
|
+
"ClusterDeploymentTypeType",
|
|
27
|
+
"ClusterStatusType",
|
|
26
28
|
"DbInstanceTypeType",
|
|
27
29
|
"DbStorageTypeType",
|
|
28
30
|
"DeploymentTypeType",
|
|
29
31
|
"DurationTypeType",
|
|
32
|
+
"FailoverModeType",
|
|
33
|
+
"InstanceModeType",
|
|
34
|
+
"ListDbClustersPaginatorName",
|
|
35
|
+
"ListDbInstancesForClusterPaginatorName",
|
|
30
36
|
"ListDbInstancesPaginatorName",
|
|
31
37
|
"ListDbParameterGroupsPaginatorName",
|
|
32
38
|
"LogLevelType",
|
|
@@ -40,9 +46,12 @@ __all__ = (
|
|
|
40
46
|
)
|
|
41
47
|
|
|
42
48
|
|
|
49
|
+
ClusterDeploymentTypeType = Literal["MULTI_NODE_READ_REPLICAS"]
|
|
50
|
+
ClusterStatusType = Literal["AVAILABLE", "CREATING", "DELETED", "DELETING", "FAILED", "UPDATING"]
|
|
43
51
|
DbInstanceTypeType = Literal[
|
|
44
52
|
"db.influx.12xlarge",
|
|
45
53
|
"db.influx.16xlarge",
|
|
54
|
+
"db.influx.24xlarge",
|
|
46
55
|
"db.influx.2xlarge",
|
|
47
56
|
"db.influx.4xlarge",
|
|
48
57
|
"db.influx.8xlarge",
|
|
@@ -53,6 +62,10 @@ DbInstanceTypeType = Literal[
|
|
|
53
62
|
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
54
63
|
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
55
64
|
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
65
|
+
FailoverModeType = Literal["AUTOMATIC", "NO_FAILOVER"]
|
|
66
|
+
InstanceModeType = Literal["PRIMARY", "REPLICA", "STANDBY"]
|
|
67
|
+
ListDbClustersPaginatorName = Literal["list_db_clusters"]
|
|
68
|
+
ListDbInstancesForClusterPaginatorName = Literal["list_db_instances_for_cluster"]
|
|
56
69
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
57
70
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
58
71
|
LogLevelType = Literal["debug", "error", "info"]
|
|
@@ -75,6 +88,7 @@ ServiceName = Literal[
|
|
|
75
88
|
"account",
|
|
76
89
|
"acm",
|
|
77
90
|
"acm-pca",
|
|
91
|
+
"aiops",
|
|
78
92
|
"amp",
|
|
79
93
|
"amplify",
|
|
80
94
|
"amplifybackend",
|
|
@@ -112,6 +126,8 @@ ServiceName = Literal[
|
|
|
112
126
|
"bedrock",
|
|
113
127
|
"bedrock-agent",
|
|
114
128
|
"bedrock-agent-runtime",
|
|
129
|
+
"bedrock-agentcore",
|
|
130
|
+
"bedrock-agentcore-control",
|
|
115
131
|
"bedrock-data-automation",
|
|
116
132
|
"bedrock-data-automation-runtime",
|
|
117
133
|
"bedrock-runtime",
|
|
@@ -203,7 +219,6 @@ ServiceName = Literal[
|
|
|
203
219
|
"efs",
|
|
204
220
|
"eks",
|
|
205
221
|
"eks-auth",
|
|
206
|
-
"elastic-inference",
|
|
207
222
|
"elasticache",
|
|
208
223
|
"elasticbeanstalk",
|
|
209
224
|
"elastictranscoder",
|
|
@@ -216,6 +231,7 @@ ServiceName = Literal[
|
|
|
216
231
|
"es",
|
|
217
232
|
"events",
|
|
218
233
|
"evidently",
|
|
234
|
+
"evs",
|
|
219
235
|
"finspace",
|
|
220
236
|
"finspace-data",
|
|
221
237
|
"firehose",
|
|
@@ -227,6 +243,7 @@ ServiceName = Literal[
|
|
|
227
243
|
"freetier",
|
|
228
244
|
"fsx",
|
|
229
245
|
"gamelift",
|
|
246
|
+
"gameliftstreams",
|
|
230
247
|
"geo-maps",
|
|
231
248
|
"geo-places",
|
|
232
249
|
"geo-routes",
|
|
@@ -252,6 +269,7 @@ ServiceName = Literal[
|
|
|
252
269
|
"iot",
|
|
253
270
|
"iot-data",
|
|
254
271
|
"iot-jobs-data",
|
|
272
|
+
"iot-managed-integrations",
|
|
255
273
|
"iotanalytics",
|
|
256
274
|
"iotdeviceadvisor",
|
|
257
275
|
"iotevents",
|
|
@@ -271,6 +289,7 @@ ServiceName = Literal[
|
|
|
271
289
|
"kendra",
|
|
272
290
|
"kendra-ranking",
|
|
273
291
|
"keyspaces",
|
|
292
|
+
"keyspacesstreams",
|
|
274
293
|
"kinesis",
|
|
275
294
|
"kinesis-video-archived-media",
|
|
276
295
|
"kinesis-video-media",
|
|
@@ -326,6 +345,7 @@ ServiceName = Literal[
|
|
|
326
345
|
"migrationhub-config",
|
|
327
346
|
"migrationhuborchestrator",
|
|
328
347
|
"migrationhubstrategy",
|
|
348
|
+
"mpa",
|
|
329
349
|
"mq",
|
|
330
350
|
"mturk",
|
|
331
351
|
"mwaa",
|
|
@@ -340,6 +360,7 @@ ServiceName = Literal[
|
|
|
340
360
|
"notificationscontacts",
|
|
341
361
|
"oam",
|
|
342
362
|
"observabilityadmin",
|
|
363
|
+
"odb",
|
|
343
364
|
"omics",
|
|
344
365
|
"opensearch",
|
|
345
366
|
"opensearchserverless",
|
|
@@ -366,7 +387,6 @@ ServiceName = Literal[
|
|
|
366
387
|
"pipes",
|
|
367
388
|
"polly",
|
|
368
389
|
"pricing",
|
|
369
|
-
"privatenetworks",
|
|
370
390
|
"proton",
|
|
371
391
|
"qapps",
|
|
372
392
|
"qbusiness",
|
|
@@ -401,6 +421,7 @@ ServiceName = Literal[
|
|
|
401
421
|
"s3control",
|
|
402
422
|
"s3outposts",
|
|
403
423
|
"s3tables",
|
|
424
|
+
"s3vectors",
|
|
404
425
|
"sagemaker",
|
|
405
426
|
"sagemaker-a2i-runtime",
|
|
406
427
|
"sagemaker-edge",
|
|
@@ -427,7 +448,6 @@ ServiceName = Literal[
|
|
|
427
448
|
"signer",
|
|
428
449
|
"simspaceweaver",
|
|
429
450
|
"sms",
|
|
430
|
-
"sms-voice",
|
|
431
451
|
"snow-device-management",
|
|
432
452
|
"snowball",
|
|
433
453
|
"sns",
|
|
@@ -435,6 +455,7 @@ ServiceName = Literal[
|
|
|
435
455
|
"sqs",
|
|
436
456
|
"ssm",
|
|
437
457
|
"ssm-contacts",
|
|
458
|
+
"ssm-guiconnect",
|
|
438
459
|
"ssm-incidents",
|
|
439
460
|
"ssm-quicksetup",
|
|
440
461
|
"ssm-sap",
|
|
@@ -471,6 +492,7 @@ ServiceName = Literal[
|
|
|
471
492
|
"workmail",
|
|
472
493
|
"workmailmessageflow",
|
|
473
494
|
"workspaces",
|
|
495
|
+
"workspaces-instances",
|
|
474
496
|
"workspaces-thin-client",
|
|
475
497
|
"workspaces-web",
|
|
476
498
|
"xray",
|
|
@@ -487,4 +509,9 @@ ResourceServiceName = Literal[
|
|
|
487
509
|
"sns",
|
|
488
510
|
"sqs",
|
|
489
511
|
]
|
|
490
|
-
PaginatorName = Literal[
|
|
512
|
+
PaginatorName = Literal[
|
|
513
|
+
"list_db_clusters",
|
|
514
|
+
"list_db_instances",
|
|
515
|
+
"list_db_instances_for_cluster",
|
|
516
|
+
"list_db_parameter_groups",
|
|
517
|
+
]
|
|
@@ -3,15 +3,15 @@ Type annotations for timestream-influxdb service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_timestream_influxdb.literals import
|
|
11
|
+
from types_boto3_timestream_influxdb.literals import ClusterDeploymentTypeType
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: ClusterDeploymentTypeType = "MULTI_NODE_READ_REPLICAS"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -22,10 +22,16 @@ else:
|
|
|
22
22
|
from typing_extensions import Literal
|
|
23
23
|
|
|
24
24
|
__all__ = (
|
|
25
|
+
"ClusterDeploymentTypeType",
|
|
26
|
+
"ClusterStatusType",
|
|
25
27
|
"DbInstanceTypeType",
|
|
26
28
|
"DbStorageTypeType",
|
|
27
29
|
"DeploymentTypeType",
|
|
28
30
|
"DurationTypeType",
|
|
31
|
+
"FailoverModeType",
|
|
32
|
+
"InstanceModeType",
|
|
33
|
+
"ListDbClustersPaginatorName",
|
|
34
|
+
"ListDbInstancesForClusterPaginatorName",
|
|
29
35
|
"ListDbInstancesPaginatorName",
|
|
30
36
|
"ListDbParameterGroupsPaginatorName",
|
|
31
37
|
"LogLevelType",
|
|
@@ -38,9 +44,12 @@ __all__ = (
|
|
|
38
44
|
"TracingTypeType",
|
|
39
45
|
)
|
|
40
46
|
|
|
47
|
+
ClusterDeploymentTypeType = Literal["MULTI_NODE_READ_REPLICAS"]
|
|
48
|
+
ClusterStatusType = Literal["AVAILABLE", "CREATING", "DELETED", "DELETING", "FAILED", "UPDATING"]
|
|
41
49
|
DbInstanceTypeType = Literal[
|
|
42
50
|
"db.influx.12xlarge",
|
|
43
51
|
"db.influx.16xlarge",
|
|
52
|
+
"db.influx.24xlarge",
|
|
44
53
|
"db.influx.2xlarge",
|
|
45
54
|
"db.influx.4xlarge",
|
|
46
55
|
"db.influx.8xlarge",
|
|
@@ -51,6 +60,10 @@ DbInstanceTypeType = Literal[
|
|
|
51
60
|
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
52
61
|
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
53
62
|
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
63
|
+
FailoverModeType = Literal["AUTOMATIC", "NO_FAILOVER"]
|
|
64
|
+
InstanceModeType = Literal["PRIMARY", "REPLICA", "STANDBY"]
|
|
65
|
+
ListDbClustersPaginatorName = Literal["list_db_clusters"]
|
|
66
|
+
ListDbInstancesForClusterPaginatorName = Literal["list_db_instances_for_cluster"]
|
|
54
67
|
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
55
68
|
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
56
69
|
LogLevelType = Literal["debug", "error", "info"]
|
|
@@ -73,6 +86,7 @@ ServiceName = Literal[
|
|
|
73
86
|
"account",
|
|
74
87
|
"acm",
|
|
75
88
|
"acm-pca",
|
|
89
|
+
"aiops",
|
|
76
90
|
"amp",
|
|
77
91
|
"amplify",
|
|
78
92
|
"amplifybackend",
|
|
@@ -110,6 +124,8 @@ ServiceName = Literal[
|
|
|
110
124
|
"bedrock",
|
|
111
125
|
"bedrock-agent",
|
|
112
126
|
"bedrock-agent-runtime",
|
|
127
|
+
"bedrock-agentcore",
|
|
128
|
+
"bedrock-agentcore-control",
|
|
113
129
|
"bedrock-data-automation",
|
|
114
130
|
"bedrock-data-automation-runtime",
|
|
115
131
|
"bedrock-runtime",
|
|
@@ -201,7 +217,6 @@ ServiceName = Literal[
|
|
|
201
217
|
"efs",
|
|
202
218
|
"eks",
|
|
203
219
|
"eks-auth",
|
|
204
|
-
"elastic-inference",
|
|
205
220
|
"elasticache",
|
|
206
221
|
"elasticbeanstalk",
|
|
207
222
|
"elastictranscoder",
|
|
@@ -214,6 +229,7 @@ ServiceName = Literal[
|
|
|
214
229
|
"es",
|
|
215
230
|
"events",
|
|
216
231
|
"evidently",
|
|
232
|
+
"evs",
|
|
217
233
|
"finspace",
|
|
218
234
|
"finspace-data",
|
|
219
235
|
"firehose",
|
|
@@ -225,6 +241,7 @@ ServiceName = Literal[
|
|
|
225
241
|
"freetier",
|
|
226
242
|
"fsx",
|
|
227
243
|
"gamelift",
|
|
244
|
+
"gameliftstreams",
|
|
228
245
|
"geo-maps",
|
|
229
246
|
"geo-places",
|
|
230
247
|
"geo-routes",
|
|
@@ -250,6 +267,7 @@ ServiceName = Literal[
|
|
|
250
267
|
"iot",
|
|
251
268
|
"iot-data",
|
|
252
269
|
"iot-jobs-data",
|
|
270
|
+
"iot-managed-integrations",
|
|
253
271
|
"iotanalytics",
|
|
254
272
|
"iotdeviceadvisor",
|
|
255
273
|
"iotevents",
|
|
@@ -269,6 +287,7 @@ ServiceName = Literal[
|
|
|
269
287
|
"kendra",
|
|
270
288
|
"kendra-ranking",
|
|
271
289
|
"keyspaces",
|
|
290
|
+
"keyspacesstreams",
|
|
272
291
|
"kinesis",
|
|
273
292
|
"kinesis-video-archived-media",
|
|
274
293
|
"kinesis-video-media",
|
|
@@ -324,6 +343,7 @@ ServiceName = Literal[
|
|
|
324
343
|
"migrationhub-config",
|
|
325
344
|
"migrationhuborchestrator",
|
|
326
345
|
"migrationhubstrategy",
|
|
346
|
+
"mpa",
|
|
327
347
|
"mq",
|
|
328
348
|
"mturk",
|
|
329
349
|
"mwaa",
|
|
@@ -338,6 +358,7 @@ ServiceName = Literal[
|
|
|
338
358
|
"notificationscontacts",
|
|
339
359
|
"oam",
|
|
340
360
|
"observabilityadmin",
|
|
361
|
+
"odb",
|
|
341
362
|
"omics",
|
|
342
363
|
"opensearch",
|
|
343
364
|
"opensearchserverless",
|
|
@@ -364,7 +385,6 @@ ServiceName = Literal[
|
|
|
364
385
|
"pipes",
|
|
365
386
|
"polly",
|
|
366
387
|
"pricing",
|
|
367
|
-
"privatenetworks",
|
|
368
388
|
"proton",
|
|
369
389
|
"qapps",
|
|
370
390
|
"qbusiness",
|
|
@@ -399,6 +419,7 @@ ServiceName = Literal[
|
|
|
399
419
|
"s3control",
|
|
400
420
|
"s3outposts",
|
|
401
421
|
"s3tables",
|
|
422
|
+
"s3vectors",
|
|
402
423
|
"sagemaker",
|
|
403
424
|
"sagemaker-a2i-runtime",
|
|
404
425
|
"sagemaker-edge",
|
|
@@ -425,7 +446,6 @@ ServiceName = Literal[
|
|
|
425
446
|
"signer",
|
|
426
447
|
"simspaceweaver",
|
|
427
448
|
"sms",
|
|
428
|
-
"sms-voice",
|
|
429
449
|
"snow-device-management",
|
|
430
450
|
"snowball",
|
|
431
451
|
"sns",
|
|
@@ -433,6 +453,7 @@ ServiceName = Literal[
|
|
|
433
453
|
"sqs",
|
|
434
454
|
"ssm",
|
|
435
455
|
"ssm-contacts",
|
|
456
|
+
"ssm-guiconnect",
|
|
436
457
|
"ssm-incidents",
|
|
437
458
|
"ssm-quicksetup",
|
|
438
459
|
"ssm-sap",
|
|
@@ -469,6 +490,7 @@ ServiceName = Literal[
|
|
|
469
490
|
"workmail",
|
|
470
491
|
"workmailmessageflow",
|
|
471
492
|
"workspaces",
|
|
493
|
+
"workspaces-instances",
|
|
472
494
|
"workspaces-thin-client",
|
|
473
495
|
"workspaces-web",
|
|
474
496
|
"xray",
|
|
@@ -485,4 +507,9 @@ ResourceServiceName = Literal[
|
|
|
485
507
|
"sns",
|
|
486
508
|
"sqs",
|
|
487
509
|
]
|
|
488
|
-
PaginatorName = Literal[
|
|
510
|
+
PaginatorName = Literal[
|
|
511
|
+
"list_db_clusters",
|
|
512
|
+
"list_db_instances",
|
|
513
|
+
"list_db_instances_for_cluster",
|
|
514
|
+
"list_db_parameter_groups",
|
|
515
|
+
]
|
|
@@ -3,6 +3,8 @@ Type annotations for timestream-influxdb service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,6 +12,8 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
12
14
|
from types_boto3_timestream_influxdb.paginator import (
|
|
15
|
+
ListDbClustersPaginator,
|
|
16
|
+
ListDbInstancesForClusterPaginator,
|
|
13
17
|
ListDbInstancesPaginator,
|
|
14
18
|
ListDbParameterGroupsPaginator,
|
|
15
19
|
)
|
|
@@ -17,11 +21,11 @@ Usage::
|
|
|
17
21
|
session = Session()
|
|
18
22
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
19
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")
|
|
20
26
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
21
27
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
28
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
29
|
"""
|
|
26
30
|
|
|
27
31
|
from __future__ import annotations
|
|
@@ -32,6 +36,10 @@ from typing import TYPE_CHECKING
|
|
|
32
36
|
from botocore.paginate import PageIterator, Paginator
|
|
33
37
|
|
|
34
38
|
from .type_defs import (
|
|
39
|
+
ListDbClustersInputPaginateTypeDef,
|
|
40
|
+
ListDbClustersOutputTypeDef,
|
|
41
|
+
ListDbInstancesForClusterInputPaginateTypeDef,
|
|
42
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
35
43
|
ListDbInstancesInputPaginateTypeDef,
|
|
36
44
|
ListDbInstancesOutputTypeDef,
|
|
37
45
|
ListDbParameterGroupsInputPaginateTypeDef,
|
|
@@ -44,7 +52,54 @@ else:
|
|
|
44
52
|
from typing_extensions import Unpack
|
|
45
53
|
|
|
46
54
|
|
|
47
|
-
__all__ = (
|
|
55
|
+
__all__ = (
|
|
56
|
+
"ListDbClustersPaginator",
|
|
57
|
+
"ListDbInstancesForClusterPaginator",
|
|
58
|
+
"ListDbInstancesPaginator",
|
|
59
|
+
"ListDbParameterGroupsPaginator",
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
if TYPE_CHECKING:
|
|
64
|
+
_ListDbClustersPaginatorBase = Paginator[ListDbClustersOutputTypeDef]
|
|
65
|
+
else:
|
|
66
|
+
_ListDbClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class ListDbClustersPaginator(_ListDbClustersPaginatorBase):
|
|
70
|
+
"""
|
|
71
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters)
|
|
72
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
73
|
+
"""
|
|
74
|
+
|
|
75
|
+
def paginate( # type: ignore[override]
|
|
76
|
+
self, **kwargs: Unpack[ListDbClustersInputPaginateTypeDef]
|
|
77
|
+
) -> PageIterator[ListDbClustersOutputTypeDef]:
|
|
78
|
+
"""
|
|
79
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters.paginate)
|
|
80
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
if TYPE_CHECKING:
|
|
85
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator[ListDbInstancesForClusterOutputTypeDef]
|
|
86
|
+
else:
|
|
87
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator # type: ignore[assignment]
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class ListDbInstancesForClusterPaginator(_ListDbInstancesForClusterPaginatorBase):
|
|
91
|
+
"""
|
|
92
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster)
|
|
93
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
def paginate( # type: ignore[override]
|
|
97
|
+
self, **kwargs: Unpack[ListDbInstancesForClusterInputPaginateTypeDef]
|
|
98
|
+
) -> PageIterator[ListDbInstancesForClusterOutputTypeDef]:
|
|
99
|
+
"""
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster.paginate)
|
|
101
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
102
|
+
"""
|
|
48
103
|
|
|
49
104
|
|
|
50
105
|
if TYPE_CHECKING:
|
|
@@ -3,6 +3,8 @@ Type annotations for timestream-influxdb service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,6 +12,8 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
12
14
|
from types_boto3_timestream_influxdb.paginator import (
|
|
15
|
+
ListDbClustersPaginator,
|
|
16
|
+
ListDbInstancesForClusterPaginator,
|
|
13
17
|
ListDbInstancesPaginator,
|
|
14
18
|
ListDbParameterGroupsPaginator,
|
|
15
19
|
)
|
|
@@ -17,11 +21,11 @@ Usage::
|
|
|
17
21
|
session = Session()
|
|
18
22
|
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
19
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")
|
|
20
26
|
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
21
27
|
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
28
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
29
|
"""
|
|
26
30
|
|
|
27
31
|
from __future__ import annotations
|
|
@@ -32,6 +36,10 @@ from typing import TYPE_CHECKING
|
|
|
32
36
|
from botocore.paginate import PageIterator, Paginator
|
|
33
37
|
|
|
34
38
|
from .type_defs import (
|
|
39
|
+
ListDbClustersInputPaginateTypeDef,
|
|
40
|
+
ListDbClustersOutputTypeDef,
|
|
41
|
+
ListDbInstancesForClusterInputPaginateTypeDef,
|
|
42
|
+
ListDbInstancesForClusterOutputTypeDef,
|
|
35
43
|
ListDbInstancesInputPaginateTypeDef,
|
|
36
44
|
ListDbInstancesOutputTypeDef,
|
|
37
45
|
ListDbParameterGroupsInputPaginateTypeDef,
|
|
@@ -43,7 +51,48 @@ if sys.version_info >= (3, 12):
|
|
|
43
51
|
else:
|
|
44
52
|
from typing_extensions import Unpack
|
|
45
53
|
|
|
46
|
-
__all__ = (
|
|
54
|
+
__all__ = (
|
|
55
|
+
"ListDbClustersPaginator",
|
|
56
|
+
"ListDbInstancesForClusterPaginator",
|
|
57
|
+
"ListDbInstancesPaginator",
|
|
58
|
+
"ListDbParameterGroupsPaginator",
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
if TYPE_CHECKING:
|
|
62
|
+
_ListDbClustersPaginatorBase = Paginator[ListDbClustersOutputTypeDef]
|
|
63
|
+
else:
|
|
64
|
+
_ListDbClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
65
|
+
|
|
66
|
+
class ListDbClustersPaginator(_ListDbClustersPaginatorBase):
|
|
67
|
+
"""
|
|
68
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters)
|
|
69
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
70
|
+
"""
|
|
71
|
+
def paginate( # type: ignore[override]
|
|
72
|
+
self, **kwargs: Unpack[ListDbClustersInputPaginateTypeDef]
|
|
73
|
+
) -> PageIterator[ListDbClustersOutputTypeDef]:
|
|
74
|
+
"""
|
|
75
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbClusters.html#TimestreamInfluxDB.Paginator.ListDbClusters.paginate)
|
|
76
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbclusterspaginator)
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
if TYPE_CHECKING:
|
|
80
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator[ListDbInstancesForClusterOutputTypeDef]
|
|
81
|
+
else:
|
|
82
|
+
_ListDbInstancesForClusterPaginatorBase = Paginator # type: ignore[assignment]
|
|
83
|
+
|
|
84
|
+
class ListDbInstancesForClusterPaginator(_ListDbInstancesForClusterPaginatorBase):
|
|
85
|
+
"""
|
|
86
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster)
|
|
87
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
88
|
+
"""
|
|
89
|
+
def paginate( # type: ignore[override]
|
|
90
|
+
self, **kwargs: Unpack[ListDbInstancesForClusterInputPaginateTypeDef]
|
|
91
|
+
) -> PageIterator[ListDbInstancesForClusterOutputTypeDef]:
|
|
92
|
+
"""
|
|
93
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstancesForCluster.html#TimestreamInfluxDB.Paginator.ListDbInstancesForCluster.paginate)
|
|
94
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancesforclusterpaginator)
|
|
95
|
+
"""
|
|
47
96
|
|
|
48
97
|
if TYPE_CHECKING:
|
|
49
98
|
_ListDbInstancesPaginatorBase = Paginator[ListDbInstancesOutputTypeDef]
|