types-boto3-timestream-influxdb 1.35.71__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 +42 -0
- types_boto3_timestream_influxdb/client.py +249 -0
- types_boto3_timestream_influxdb/client.pyi +245 -0
- types_boto3_timestream_influxdb/literals.py +482 -0
- types_boto3_timestream_influxdb/literals.pyi +480 -0
- types_boto3_timestream_influxdb/paginator.py +85 -0
- types_boto3_timestream_influxdb/paginator.pyi +78 -0
- types_boto3_timestream_influxdb/py.typed +0 -0
- types_boto3_timestream_influxdb/type_defs.py +388 -0
- types_boto3_timestream_influxdb/type_defs.pyi +359 -0
- types_boto3_timestream_influxdb/version.py +7 -0
- types_boto3_timestream_influxdb-1.35.71.dist-info/LICENSE +21 -0
- types_boto3_timestream_influxdb-1.35.71.dist-info/METADATA +437 -0
- types_boto3_timestream_influxdb-1.35.71.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.35.71.dist-info/WHEEL +5 -0
- types_boto3_timestream_influxdb-1.35.71.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,480 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for timestream-influxdb service literal definitions.
|
|
3
|
+
|
|
4
|
+
[Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/literals/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from types_boto3_timestream_influxdb.literals import DbInstanceTypeType
|
|
10
|
+
|
|
11
|
+
data: DbInstanceTypeType = "db.influx.12xlarge"
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
import sys
|
|
18
|
+
|
|
19
|
+
if sys.version_info >= (3, 12):
|
|
20
|
+
from typing import Literal
|
|
21
|
+
else:
|
|
22
|
+
from typing_extensions import Literal
|
|
23
|
+
|
|
24
|
+
__all__ = (
|
|
25
|
+
"DbInstanceTypeType",
|
|
26
|
+
"DbStorageTypeType",
|
|
27
|
+
"DeploymentTypeType",
|
|
28
|
+
"DurationTypeType",
|
|
29
|
+
"ListDbInstancesPaginatorName",
|
|
30
|
+
"ListDbParameterGroupsPaginatorName",
|
|
31
|
+
"LogLevelType",
|
|
32
|
+
"PaginatorName",
|
|
33
|
+
"ResourceServiceName",
|
|
34
|
+
"ServiceName",
|
|
35
|
+
"StatusType",
|
|
36
|
+
"TimestreamInfluxDBServiceName",
|
|
37
|
+
"TracingTypeType",
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
DbInstanceTypeType = Literal[
|
|
41
|
+
"db.influx.12xlarge",
|
|
42
|
+
"db.influx.16xlarge",
|
|
43
|
+
"db.influx.2xlarge",
|
|
44
|
+
"db.influx.4xlarge",
|
|
45
|
+
"db.influx.8xlarge",
|
|
46
|
+
"db.influx.large",
|
|
47
|
+
"db.influx.medium",
|
|
48
|
+
"db.influx.xlarge",
|
|
49
|
+
]
|
|
50
|
+
DbStorageTypeType = Literal["InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"]
|
|
51
|
+
DeploymentTypeType = Literal["SINGLE_AZ", "WITH_MULTIAZ_STANDBY"]
|
|
52
|
+
DurationTypeType = Literal["hours", "milliseconds", "minutes", "seconds"]
|
|
53
|
+
ListDbInstancesPaginatorName = Literal["list_db_instances"]
|
|
54
|
+
ListDbParameterGroupsPaginatorName = Literal["list_db_parameter_groups"]
|
|
55
|
+
LogLevelType = Literal["debug", "error", "info"]
|
|
56
|
+
StatusType = Literal[
|
|
57
|
+
"AVAILABLE",
|
|
58
|
+
"CREATING",
|
|
59
|
+
"DELETED",
|
|
60
|
+
"DELETING",
|
|
61
|
+
"FAILED",
|
|
62
|
+
"MODIFYING",
|
|
63
|
+
"UPDATING",
|
|
64
|
+
"UPDATING_DEPLOYMENT_TYPE",
|
|
65
|
+
"UPDATING_INSTANCE_TYPE",
|
|
66
|
+
]
|
|
67
|
+
TracingTypeType = Literal["jaeger", "log"]
|
|
68
|
+
TimestreamInfluxDBServiceName = Literal["timestream-influxdb"]
|
|
69
|
+
ServiceName = Literal[
|
|
70
|
+
"accessanalyzer",
|
|
71
|
+
"account",
|
|
72
|
+
"acm",
|
|
73
|
+
"acm-pca",
|
|
74
|
+
"amp",
|
|
75
|
+
"amplify",
|
|
76
|
+
"amplifybackend",
|
|
77
|
+
"amplifyuibuilder",
|
|
78
|
+
"apigateway",
|
|
79
|
+
"apigatewaymanagementapi",
|
|
80
|
+
"apigatewayv2",
|
|
81
|
+
"appconfig",
|
|
82
|
+
"appconfigdata",
|
|
83
|
+
"appfabric",
|
|
84
|
+
"appflow",
|
|
85
|
+
"appintegrations",
|
|
86
|
+
"application-autoscaling",
|
|
87
|
+
"application-insights",
|
|
88
|
+
"application-signals",
|
|
89
|
+
"applicationcostprofiler",
|
|
90
|
+
"appmesh",
|
|
91
|
+
"apprunner",
|
|
92
|
+
"appstream",
|
|
93
|
+
"appsync",
|
|
94
|
+
"apptest",
|
|
95
|
+
"arc-zonal-shift",
|
|
96
|
+
"artifact",
|
|
97
|
+
"athena",
|
|
98
|
+
"auditmanager",
|
|
99
|
+
"autoscaling",
|
|
100
|
+
"autoscaling-plans",
|
|
101
|
+
"b2bi",
|
|
102
|
+
"backup",
|
|
103
|
+
"backup-gateway",
|
|
104
|
+
"batch",
|
|
105
|
+
"bcm-data-exports",
|
|
106
|
+
"bcm-pricing-calculator",
|
|
107
|
+
"bedrock",
|
|
108
|
+
"bedrock-agent",
|
|
109
|
+
"bedrock-agent-runtime",
|
|
110
|
+
"bedrock-runtime",
|
|
111
|
+
"billing",
|
|
112
|
+
"billingconductor",
|
|
113
|
+
"braket",
|
|
114
|
+
"budgets",
|
|
115
|
+
"ce",
|
|
116
|
+
"chatbot",
|
|
117
|
+
"chime",
|
|
118
|
+
"chime-sdk-identity",
|
|
119
|
+
"chime-sdk-media-pipelines",
|
|
120
|
+
"chime-sdk-meetings",
|
|
121
|
+
"chime-sdk-messaging",
|
|
122
|
+
"chime-sdk-voice",
|
|
123
|
+
"cleanrooms",
|
|
124
|
+
"cleanroomsml",
|
|
125
|
+
"cloud9",
|
|
126
|
+
"cloudcontrol",
|
|
127
|
+
"clouddirectory",
|
|
128
|
+
"cloudformation",
|
|
129
|
+
"cloudfront",
|
|
130
|
+
"cloudfront-keyvaluestore",
|
|
131
|
+
"cloudhsm",
|
|
132
|
+
"cloudhsmv2",
|
|
133
|
+
"cloudsearch",
|
|
134
|
+
"cloudsearchdomain",
|
|
135
|
+
"cloudtrail",
|
|
136
|
+
"cloudtrail-data",
|
|
137
|
+
"cloudwatch",
|
|
138
|
+
"codeartifact",
|
|
139
|
+
"codebuild",
|
|
140
|
+
"codecatalyst",
|
|
141
|
+
"codecommit",
|
|
142
|
+
"codeconnections",
|
|
143
|
+
"codedeploy",
|
|
144
|
+
"codeguru-reviewer",
|
|
145
|
+
"codeguru-security",
|
|
146
|
+
"codeguruprofiler",
|
|
147
|
+
"codepipeline",
|
|
148
|
+
"codestar-connections",
|
|
149
|
+
"codestar-notifications",
|
|
150
|
+
"cognito-identity",
|
|
151
|
+
"cognito-idp",
|
|
152
|
+
"cognito-sync",
|
|
153
|
+
"comprehend",
|
|
154
|
+
"comprehendmedical",
|
|
155
|
+
"compute-optimizer",
|
|
156
|
+
"config",
|
|
157
|
+
"connect",
|
|
158
|
+
"connect-contact-lens",
|
|
159
|
+
"connectcampaigns",
|
|
160
|
+
"connectcampaignsv2",
|
|
161
|
+
"connectcases",
|
|
162
|
+
"connectparticipant",
|
|
163
|
+
"controlcatalog",
|
|
164
|
+
"controltower",
|
|
165
|
+
"cost-optimization-hub",
|
|
166
|
+
"cur",
|
|
167
|
+
"customer-profiles",
|
|
168
|
+
"databrew",
|
|
169
|
+
"dataexchange",
|
|
170
|
+
"datapipeline",
|
|
171
|
+
"datasync",
|
|
172
|
+
"datazone",
|
|
173
|
+
"dax",
|
|
174
|
+
"deadline",
|
|
175
|
+
"detective",
|
|
176
|
+
"devicefarm",
|
|
177
|
+
"devops-guru",
|
|
178
|
+
"directconnect",
|
|
179
|
+
"discovery",
|
|
180
|
+
"dlm",
|
|
181
|
+
"dms",
|
|
182
|
+
"docdb",
|
|
183
|
+
"docdb-elastic",
|
|
184
|
+
"drs",
|
|
185
|
+
"ds",
|
|
186
|
+
"ds-data",
|
|
187
|
+
"dynamodb",
|
|
188
|
+
"dynamodbstreams",
|
|
189
|
+
"ebs",
|
|
190
|
+
"ec2",
|
|
191
|
+
"ec2-instance-connect",
|
|
192
|
+
"ecr",
|
|
193
|
+
"ecr-public",
|
|
194
|
+
"ecs",
|
|
195
|
+
"efs",
|
|
196
|
+
"eks",
|
|
197
|
+
"eks-auth",
|
|
198
|
+
"elastic-inference",
|
|
199
|
+
"elasticache",
|
|
200
|
+
"elasticbeanstalk",
|
|
201
|
+
"elastictranscoder",
|
|
202
|
+
"elb",
|
|
203
|
+
"elbv2",
|
|
204
|
+
"emr",
|
|
205
|
+
"emr-containers",
|
|
206
|
+
"emr-serverless",
|
|
207
|
+
"entityresolution",
|
|
208
|
+
"es",
|
|
209
|
+
"events",
|
|
210
|
+
"evidently",
|
|
211
|
+
"finspace",
|
|
212
|
+
"finspace-data",
|
|
213
|
+
"firehose",
|
|
214
|
+
"fis",
|
|
215
|
+
"fms",
|
|
216
|
+
"forecast",
|
|
217
|
+
"forecastquery",
|
|
218
|
+
"frauddetector",
|
|
219
|
+
"freetier",
|
|
220
|
+
"fsx",
|
|
221
|
+
"gamelift",
|
|
222
|
+
"geo-maps",
|
|
223
|
+
"geo-places",
|
|
224
|
+
"geo-routes",
|
|
225
|
+
"glacier",
|
|
226
|
+
"globalaccelerator",
|
|
227
|
+
"glue",
|
|
228
|
+
"grafana",
|
|
229
|
+
"greengrass",
|
|
230
|
+
"greengrassv2",
|
|
231
|
+
"groundstation",
|
|
232
|
+
"guardduty",
|
|
233
|
+
"health",
|
|
234
|
+
"healthlake",
|
|
235
|
+
"iam",
|
|
236
|
+
"identitystore",
|
|
237
|
+
"imagebuilder",
|
|
238
|
+
"importexport",
|
|
239
|
+
"inspector",
|
|
240
|
+
"inspector-scan",
|
|
241
|
+
"inspector2",
|
|
242
|
+
"internetmonitor",
|
|
243
|
+
"iot",
|
|
244
|
+
"iot-data",
|
|
245
|
+
"iot-jobs-data",
|
|
246
|
+
"iot1click-devices",
|
|
247
|
+
"iot1click-projects",
|
|
248
|
+
"iotanalytics",
|
|
249
|
+
"iotdeviceadvisor",
|
|
250
|
+
"iotevents",
|
|
251
|
+
"iotevents-data",
|
|
252
|
+
"iotfleethub",
|
|
253
|
+
"iotfleetwise",
|
|
254
|
+
"iotsecuretunneling",
|
|
255
|
+
"iotsitewise",
|
|
256
|
+
"iotthingsgraph",
|
|
257
|
+
"iottwinmaker",
|
|
258
|
+
"iotwireless",
|
|
259
|
+
"ivs",
|
|
260
|
+
"ivs-realtime",
|
|
261
|
+
"ivschat",
|
|
262
|
+
"kafka",
|
|
263
|
+
"kafkaconnect",
|
|
264
|
+
"kendra",
|
|
265
|
+
"kendra-ranking",
|
|
266
|
+
"keyspaces",
|
|
267
|
+
"kinesis",
|
|
268
|
+
"kinesis-video-archived-media",
|
|
269
|
+
"kinesis-video-media",
|
|
270
|
+
"kinesis-video-signaling",
|
|
271
|
+
"kinesis-video-webrtc-storage",
|
|
272
|
+
"kinesisanalytics",
|
|
273
|
+
"kinesisanalyticsv2",
|
|
274
|
+
"kinesisvideo",
|
|
275
|
+
"kms",
|
|
276
|
+
"lakeformation",
|
|
277
|
+
"lambda",
|
|
278
|
+
"launch-wizard",
|
|
279
|
+
"lex-models",
|
|
280
|
+
"lex-runtime",
|
|
281
|
+
"lexv2-models",
|
|
282
|
+
"lexv2-runtime",
|
|
283
|
+
"license-manager",
|
|
284
|
+
"license-manager-linux-subscriptions",
|
|
285
|
+
"license-manager-user-subscriptions",
|
|
286
|
+
"lightsail",
|
|
287
|
+
"location",
|
|
288
|
+
"logs",
|
|
289
|
+
"lookoutequipment",
|
|
290
|
+
"lookoutmetrics",
|
|
291
|
+
"lookoutvision",
|
|
292
|
+
"m2",
|
|
293
|
+
"machinelearning",
|
|
294
|
+
"macie2",
|
|
295
|
+
"mailmanager",
|
|
296
|
+
"managedblockchain",
|
|
297
|
+
"managedblockchain-query",
|
|
298
|
+
"marketplace-agreement",
|
|
299
|
+
"marketplace-catalog",
|
|
300
|
+
"marketplace-deployment",
|
|
301
|
+
"marketplace-entitlement",
|
|
302
|
+
"marketplace-reporting",
|
|
303
|
+
"marketplacecommerceanalytics",
|
|
304
|
+
"mediaconnect",
|
|
305
|
+
"mediaconvert",
|
|
306
|
+
"medialive",
|
|
307
|
+
"mediapackage",
|
|
308
|
+
"mediapackage-vod",
|
|
309
|
+
"mediapackagev2",
|
|
310
|
+
"mediastore",
|
|
311
|
+
"mediastore-data",
|
|
312
|
+
"mediatailor",
|
|
313
|
+
"medical-imaging",
|
|
314
|
+
"memorydb",
|
|
315
|
+
"meteringmarketplace",
|
|
316
|
+
"mgh",
|
|
317
|
+
"mgn",
|
|
318
|
+
"migration-hub-refactor-spaces",
|
|
319
|
+
"migrationhub-config",
|
|
320
|
+
"migrationhuborchestrator",
|
|
321
|
+
"migrationhubstrategy",
|
|
322
|
+
"mq",
|
|
323
|
+
"mturk",
|
|
324
|
+
"mwaa",
|
|
325
|
+
"neptune",
|
|
326
|
+
"neptune-graph",
|
|
327
|
+
"neptunedata",
|
|
328
|
+
"network-firewall",
|
|
329
|
+
"networkmanager",
|
|
330
|
+
"networkmonitor",
|
|
331
|
+
"notifications",
|
|
332
|
+
"notificationscontacts",
|
|
333
|
+
"oam",
|
|
334
|
+
"observabilityadmin",
|
|
335
|
+
"omics",
|
|
336
|
+
"opensearch",
|
|
337
|
+
"opensearchserverless",
|
|
338
|
+
"opsworks",
|
|
339
|
+
"opsworkscm",
|
|
340
|
+
"organizations",
|
|
341
|
+
"osis",
|
|
342
|
+
"outposts",
|
|
343
|
+
"panorama",
|
|
344
|
+
"partnercentral-selling",
|
|
345
|
+
"payment-cryptography",
|
|
346
|
+
"payment-cryptography-data",
|
|
347
|
+
"pca-connector-ad",
|
|
348
|
+
"pca-connector-scep",
|
|
349
|
+
"pcs",
|
|
350
|
+
"personalize",
|
|
351
|
+
"personalize-events",
|
|
352
|
+
"personalize-runtime",
|
|
353
|
+
"pi",
|
|
354
|
+
"pinpoint",
|
|
355
|
+
"pinpoint-email",
|
|
356
|
+
"pinpoint-sms-voice",
|
|
357
|
+
"pinpoint-sms-voice-v2",
|
|
358
|
+
"pipes",
|
|
359
|
+
"polly",
|
|
360
|
+
"pricing",
|
|
361
|
+
"privatenetworks",
|
|
362
|
+
"proton",
|
|
363
|
+
"qapps",
|
|
364
|
+
"qbusiness",
|
|
365
|
+
"qconnect",
|
|
366
|
+
"qldb",
|
|
367
|
+
"qldb-session",
|
|
368
|
+
"quicksight",
|
|
369
|
+
"ram",
|
|
370
|
+
"rbin",
|
|
371
|
+
"rds",
|
|
372
|
+
"rds-data",
|
|
373
|
+
"redshift",
|
|
374
|
+
"redshift-data",
|
|
375
|
+
"redshift-serverless",
|
|
376
|
+
"rekognition",
|
|
377
|
+
"repostspace",
|
|
378
|
+
"resiliencehub",
|
|
379
|
+
"resource-explorer-2",
|
|
380
|
+
"resource-groups",
|
|
381
|
+
"resourcegroupstaggingapi",
|
|
382
|
+
"robomaker",
|
|
383
|
+
"rolesanywhere",
|
|
384
|
+
"route53",
|
|
385
|
+
"route53-recovery-cluster",
|
|
386
|
+
"route53-recovery-control-config",
|
|
387
|
+
"route53-recovery-readiness",
|
|
388
|
+
"route53domains",
|
|
389
|
+
"route53profiles",
|
|
390
|
+
"route53resolver",
|
|
391
|
+
"rum",
|
|
392
|
+
"s3",
|
|
393
|
+
"s3control",
|
|
394
|
+
"s3outposts",
|
|
395
|
+
"sagemaker",
|
|
396
|
+
"sagemaker-a2i-runtime",
|
|
397
|
+
"sagemaker-edge",
|
|
398
|
+
"sagemaker-featurestore-runtime",
|
|
399
|
+
"sagemaker-geospatial",
|
|
400
|
+
"sagemaker-metrics",
|
|
401
|
+
"sagemaker-runtime",
|
|
402
|
+
"savingsplans",
|
|
403
|
+
"scheduler",
|
|
404
|
+
"schemas",
|
|
405
|
+
"sdb",
|
|
406
|
+
"secretsmanager",
|
|
407
|
+
"securityhub",
|
|
408
|
+
"securitylake",
|
|
409
|
+
"serverlessrepo",
|
|
410
|
+
"service-quotas",
|
|
411
|
+
"servicecatalog",
|
|
412
|
+
"servicecatalog-appregistry",
|
|
413
|
+
"servicediscovery",
|
|
414
|
+
"ses",
|
|
415
|
+
"sesv2",
|
|
416
|
+
"shield",
|
|
417
|
+
"signer",
|
|
418
|
+
"simspaceweaver",
|
|
419
|
+
"sms",
|
|
420
|
+
"sms-voice",
|
|
421
|
+
"snow-device-management",
|
|
422
|
+
"snowball",
|
|
423
|
+
"sns",
|
|
424
|
+
"socialmessaging",
|
|
425
|
+
"sqs",
|
|
426
|
+
"ssm",
|
|
427
|
+
"ssm-contacts",
|
|
428
|
+
"ssm-incidents",
|
|
429
|
+
"ssm-quicksetup",
|
|
430
|
+
"ssm-sap",
|
|
431
|
+
"sso",
|
|
432
|
+
"sso-admin",
|
|
433
|
+
"sso-oidc",
|
|
434
|
+
"stepfunctions",
|
|
435
|
+
"storagegateway",
|
|
436
|
+
"sts",
|
|
437
|
+
"supplychain",
|
|
438
|
+
"support",
|
|
439
|
+
"support-app",
|
|
440
|
+
"swf",
|
|
441
|
+
"synthetics",
|
|
442
|
+
"taxsettings",
|
|
443
|
+
"textract",
|
|
444
|
+
"timestream-influxdb",
|
|
445
|
+
"timestream-query",
|
|
446
|
+
"timestream-write",
|
|
447
|
+
"tnb",
|
|
448
|
+
"transcribe",
|
|
449
|
+
"transfer",
|
|
450
|
+
"translate",
|
|
451
|
+
"trustedadvisor",
|
|
452
|
+
"verifiedpermissions",
|
|
453
|
+
"voice-id",
|
|
454
|
+
"vpc-lattice",
|
|
455
|
+
"waf",
|
|
456
|
+
"waf-regional",
|
|
457
|
+
"wafv2",
|
|
458
|
+
"wellarchitected",
|
|
459
|
+
"wisdom",
|
|
460
|
+
"workdocs",
|
|
461
|
+
"workmail",
|
|
462
|
+
"workmailmessageflow",
|
|
463
|
+
"workspaces",
|
|
464
|
+
"workspaces-thin-client",
|
|
465
|
+
"workspaces-web",
|
|
466
|
+
"xray",
|
|
467
|
+
]
|
|
468
|
+
ResourceServiceName = Literal[
|
|
469
|
+
"cloudformation",
|
|
470
|
+
"cloudwatch",
|
|
471
|
+
"dynamodb",
|
|
472
|
+
"ec2",
|
|
473
|
+
"glacier",
|
|
474
|
+
"iam",
|
|
475
|
+
"opsworks",
|
|
476
|
+
"s3",
|
|
477
|
+
"sns",
|
|
478
|
+
"sqs",
|
|
479
|
+
]
|
|
480
|
+
PaginatorName = Literal["list_db_instances", "list_db_parameter_groups"]
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for timestream-influxdb service client paginators.
|
|
3
|
+
|
|
4
|
+
[Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
|
|
11
|
+
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
12
|
+
from types_boto3_timestream_influxdb.paginator import (
|
|
13
|
+
ListDbInstancesPaginator,
|
|
14
|
+
ListDbParameterGroupsPaginator,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
session = Session()
|
|
18
|
+
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
19
|
+
|
|
20
|
+
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
21
|
+
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Copyright 2024 Vlad Emelianov
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
import sys
|
|
28
|
+
from typing import Generic, Iterator, TypeVar
|
|
29
|
+
|
|
30
|
+
from botocore.paginate import PageIterator, Paginator
|
|
31
|
+
|
|
32
|
+
from .type_defs import (
|
|
33
|
+
ListDbInstancesInputListDbInstancesPaginateTypeDef,
|
|
34
|
+
ListDbInstancesOutputTypeDef,
|
|
35
|
+
ListDbParameterGroupsInputListDbParameterGroupsPaginateTypeDef,
|
|
36
|
+
ListDbParameterGroupsOutputTypeDef,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
if sys.version_info >= (3, 12):
|
|
40
|
+
from typing import Unpack
|
|
41
|
+
else:
|
|
42
|
+
from typing_extensions import Unpack
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
__all__ = ("ListDbInstancesPaginator", "ListDbParameterGroupsPaginator")
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
52
|
+
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
53
|
+
"""
|
|
54
|
+
Proxy method to specify iterator item type.
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
class ListDbInstancesPaginator(Paginator):
|
|
59
|
+
"""
|
|
60
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances)
|
|
61
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
def paginate(
|
|
65
|
+
self, **kwargs: Unpack[ListDbInstancesInputListDbInstancesPaginateTypeDef]
|
|
66
|
+
) -> _PageIterator[ListDbInstancesOutputTypeDef]:
|
|
67
|
+
"""
|
|
68
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances.paginate)
|
|
69
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class ListDbParameterGroupsPaginator(Paginator):
|
|
74
|
+
"""
|
|
75
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups)
|
|
76
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
def paginate(
|
|
80
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputListDbParameterGroupsPaginateTypeDef]
|
|
81
|
+
) -> _PageIterator[ListDbParameterGroupsOutputTypeDef]:
|
|
82
|
+
"""
|
|
83
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups.paginate)
|
|
84
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
85
|
+
"""
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for timestream-influxdb service client paginators.
|
|
3
|
+
|
|
4
|
+
[Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
|
|
11
|
+
from types_boto3_timestream_influxdb.client import TimestreamInfluxDBClient
|
|
12
|
+
from types_boto3_timestream_influxdb.paginator import (
|
|
13
|
+
ListDbInstancesPaginator,
|
|
14
|
+
ListDbParameterGroupsPaginator,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
session = Session()
|
|
18
|
+
client: TimestreamInfluxDBClient = session.client("timestream-influxdb")
|
|
19
|
+
|
|
20
|
+
list_db_instances_paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances")
|
|
21
|
+
list_db_parameter_groups_paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups")
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Copyright 2024 Vlad Emelianov
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
import sys
|
|
28
|
+
from typing import Generic, Iterator, TypeVar
|
|
29
|
+
|
|
30
|
+
from botocore.paginate import PageIterator, Paginator
|
|
31
|
+
|
|
32
|
+
from .type_defs import (
|
|
33
|
+
ListDbInstancesInputListDbInstancesPaginateTypeDef,
|
|
34
|
+
ListDbInstancesOutputTypeDef,
|
|
35
|
+
ListDbParameterGroupsInputListDbParameterGroupsPaginateTypeDef,
|
|
36
|
+
ListDbParameterGroupsOutputTypeDef,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
if sys.version_info >= (3, 12):
|
|
40
|
+
from typing import Unpack
|
|
41
|
+
else:
|
|
42
|
+
from typing_extensions import Unpack
|
|
43
|
+
|
|
44
|
+
__all__ = ("ListDbInstancesPaginator", "ListDbParameterGroupsPaginator")
|
|
45
|
+
|
|
46
|
+
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
47
|
+
|
|
48
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
49
|
+
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
50
|
+
"""
|
|
51
|
+
Proxy method to specify iterator item type.
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
class ListDbInstancesPaginator(Paginator):
|
|
55
|
+
"""
|
|
56
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances)
|
|
57
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
58
|
+
"""
|
|
59
|
+
def paginate(
|
|
60
|
+
self, **kwargs: Unpack[ListDbInstancesInputListDbInstancesPaginateTypeDef]
|
|
61
|
+
) -> _PageIterator[ListDbInstancesOutputTypeDef]:
|
|
62
|
+
"""
|
|
63
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbInstances.html#TimestreamInfluxDB.Paginator.ListDbInstances.paginate)
|
|
64
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbinstancespaginator)
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
class ListDbParameterGroupsPaginator(Paginator):
|
|
68
|
+
"""
|
|
69
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups)
|
|
70
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
71
|
+
"""
|
|
72
|
+
def paginate(
|
|
73
|
+
self, **kwargs: Unpack[ListDbParameterGroupsInputListDbParameterGroupsPaginateTypeDef]
|
|
74
|
+
) -> _PageIterator[ListDbParameterGroupsOutputTypeDef]:
|
|
75
|
+
"""
|
|
76
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-influxdb/paginator/ListDbParameterGroups.html#TimestreamInfluxDB.Paginator.ListDbParameterGroups.paginate)
|
|
77
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/paginators/#listdbparametergroupspaginator)
|
|
78
|
+
"""
|
|
File without changes
|