@aws-sdk/client-timestream-influxdb 3.687.0 → 3.692.0
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.
- package/dist-types/models/models_0.d.ts +128 -128
- package/dist-types/ts3.4/models/models_0.d.ts +128 -128
- package/package.json +35 -35
|
@@ -117,7 +117,7 @@ export interface CreateDbInstanceInput {
|
|
|
117
117
|
* <p>The username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. For example, my-user1. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. These attributes will be stored in a Secret created in Amazon Secrets Manager in your account.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
username?: string;
|
|
120
|
+
username?: string | undefined;
|
|
121
121
|
/**
|
|
122
122
|
* <p>The password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. These attributes will be stored in a Secret created in AWS SecretManager in your account.</p>
|
|
123
123
|
* @public
|
|
@@ -127,12 +127,12 @@ export interface CreateDbInstanceInput {
|
|
|
127
127
|
* <p>The name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users.</p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
organization?: string;
|
|
130
|
+
organization?: string | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* <p>The name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization.</p>
|
|
133
133
|
* @public
|
|
134
134
|
*/
|
|
135
|
-
bucket?: string;
|
|
135
|
+
bucket?: string | undefined;
|
|
136
136
|
/**
|
|
137
137
|
* <p>The Timestream for InfluxDB DB instance type to run InfluxDB on.</p>
|
|
138
138
|
* @public
|
|
@@ -152,7 +152,7 @@ export interface CreateDbInstanceInput {
|
|
|
152
152
|
* <p>Configures the DB instance with a public IP to facilitate access.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
publiclyAccessible?: boolean;
|
|
155
|
+
publiclyAccessible?: boolean | undefined;
|
|
156
156
|
/**
|
|
157
157
|
* <p>The Timestream for InfluxDB DB storage type to read and write InfluxDB data.</p>
|
|
158
158
|
* <p>You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements:</p>
|
|
@@ -169,7 +169,7 @@ export interface CreateDbInstanceInput {
|
|
|
169
169
|
* </ul>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
dbStorageType?: DbStorageType;
|
|
172
|
+
dbStorageType?: DbStorageType | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>The amount of storage to allocate for your DB storage type in GiB (gibibytes).</p>
|
|
175
175
|
* @public
|
|
@@ -179,22 +179,22 @@ export interface CreateDbInstanceInput {
|
|
|
179
179
|
* <p>The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
dbParameterGroupIdentifier?: string;
|
|
182
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.</p>
|
|
185
185
|
* @public
|
|
186
186
|
*/
|
|
187
|
-
deploymentType?: DeploymentType;
|
|
187
|
+
deploymentType?: DeploymentType | undefined;
|
|
188
188
|
/**
|
|
189
189
|
* <p>Configuration for sending InfluxDB engine logs to a specified S3 bucket.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
192
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>A list of key-value pairs to associate with the DB instance.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
tags?: Record<string, string
|
|
197
|
+
tags?: Record<string, string> | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* <p>The port number on which InfluxDB accepts connections.</p>
|
|
200
200
|
* <p>Valid Values: 1024-65535</p>
|
|
@@ -202,7 +202,7 @@ export interface CreateDbInstanceInput {
|
|
|
202
202
|
* <p>Constraints: The value can't be 2375-2376, 7788-7799, 8090, or 51678-51680</p>
|
|
203
203
|
* @public
|
|
204
204
|
*/
|
|
205
|
-
port?: number;
|
|
205
|
+
port?: number | undefined;
|
|
206
206
|
}
|
|
207
207
|
/**
|
|
208
208
|
* @public
|
|
@@ -246,37 +246,37 @@ export interface CreateDbInstanceOutput {
|
|
|
246
246
|
* <p>The status of the DB instance.</p>
|
|
247
247
|
* @public
|
|
248
248
|
*/
|
|
249
|
-
status?: Status;
|
|
249
|
+
status?: Status | undefined;
|
|
250
250
|
/**
|
|
251
251
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
endpoint?: string;
|
|
254
|
+
endpoint?: string | undefined;
|
|
255
255
|
/**
|
|
256
256
|
* <p>The port number on which InfluxDB accepts connections. The default value is 8086.</p>
|
|
257
257
|
* @public
|
|
258
258
|
*/
|
|
259
|
-
port?: number;
|
|
259
|
+
port?: number | undefined;
|
|
260
260
|
/**
|
|
261
261
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
262
262
|
* @public
|
|
263
263
|
*/
|
|
264
|
-
dbInstanceType?: DbInstanceType;
|
|
264
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
265
265
|
/**
|
|
266
266
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
267
267
|
* @public
|
|
268
268
|
*/
|
|
269
|
-
dbStorageType?: DbStorageType;
|
|
269
|
+
dbStorageType?: DbStorageType | undefined;
|
|
270
270
|
/**
|
|
271
271
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
allocatedStorage?: number;
|
|
274
|
+
allocatedStorage?: number | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
deploymentType?: DeploymentType;
|
|
279
|
+
deploymentType?: DeploymentType | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
282
282
|
* @public
|
|
@@ -286,37 +286,37 @@ export interface CreateDbInstanceOutput {
|
|
|
286
286
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
publiclyAccessible?: boolean;
|
|
289
|
+
publiclyAccessible?: boolean | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
vpcSecurityGroupIds?: string[];
|
|
294
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
dbParameterGroupIdentifier?: string;
|
|
299
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
availabilityZone?: string;
|
|
304
|
+
availabilityZone?: string | undefined;
|
|
305
305
|
/**
|
|
306
306
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
secondaryAvailabilityZone?: string;
|
|
309
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
310
310
|
/**
|
|
311
311
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
314
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
315
315
|
/**
|
|
316
316
|
* <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
influxAuthParametersSecretArn?: string;
|
|
319
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
@@ -377,7 +377,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
377
377
|
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
retryAfterSeconds?: number;
|
|
380
|
+
retryAfterSeconds?: number | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* @internal
|
|
383
383
|
*/
|
|
@@ -445,37 +445,37 @@ export interface DeleteDbInstanceOutput {
|
|
|
445
445
|
* <p>The status of the DB instance.</p>
|
|
446
446
|
* @public
|
|
447
447
|
*/
|
|
448
|
-
status?: Status;
|
|
448
|
+
status?: Status | undefined;
|
|
449
449
|
/**
|
|
450
450
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
endpoint?: string;
|
|
453
|
+
endpoint?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The port number on which InfluxDB accepts connections.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
port?: number;
|
|
458
|
+
port?: number | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
dbInstanceType?: DbInstanceType;
|
|
463
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
dbStorageType?: DbStorageType;
|
|
468
|
+
dbStorageType?: DbStorageType | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
allocatedStorage?: number;
|
|
473
|
+
allocatedStorage?: number | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
deploymentType?: DeploymentType;
|
|
478
|
+
deploymentType?: DeploymentType | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
481
481
|
* @public
|
|
@@ -485,37 +485,37 @@ export interface DeleteDbInstanceOutput {
|
|
|
485
485
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
486
486
|
* @public
|
|
487
487
|
*/
|
|
488
|
-
publiclyAccessible?: boolean;
|
|
488
|
+
publiclyAccessible?: boolean | undefined;
|
|
489
489
|
/**
|
|
490
490
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
491
491
|
* @public
|
|
492
492
|
*/
|
|
493
|
-
vpcSecurityGroupIds?: string[];
|
|
493
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
494
494
|
/**
|
|
495
495
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
496
496
|
* @public
|
|
497
497
|
*/
|
|
498
|
-
dbParameterGroupIdentifier?: string;
|
|
498
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
499
499
|
/**
|
|
500
500
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
501
501
|
* @public
|
|
502
502
|
*/
|
|
503
|
-
availabilityZone?: string;
|
|
503
|
+
availabilityZone?: string | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
secondaryAvailabilityZone?: string;
|
|
508
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
509
509
|
/**
|
|
510
510
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
511
511
|
* @public
|
|
512
512
|
*/
|
|
513
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
513
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
514
514
|
/**
|
|
515
515
|
* <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
516
516
|
* @public
|
|
517
517
|
*/
|
|
518
|
-
influxAuthParametersSecretArn?: string;
|
|
518
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
519
519
|
}
|
|
520
520
|
/**
|
|
521
521
|
* @public
|
|
@@ -550,37 +550,37 @@ export interface GetDbInstanceOutput {
|
|
|
550
550
|
* <p>The status of the DB instance.</p>
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
status?: Status;
|
|
553
|
+
status?: Status | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
endpoint?: string;
|
|
558
|
+
endpoint?: string | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>The port number on which InfluxDB accepts connections.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
port?: number;
|
|
563
|
+
port?: number | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
dbInstanceType?: DbInstanceType;
|
|
568
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
569
569
|
/**
|
|
570
570
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
dbStorageType?: DbStorageType;
|
|
573
|
+
dbStorageType?: DbStorageType | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
allocatedStorage?: number;
|
|
578
|
+
allocatedStorage?: number | undefined;
|
|
579
579
|
/**
|
|
580
580
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
581
581
|
* @public
|
|
582
582
|
*/
|
|
583
|
-
deploymentType?: DeploymentType;
|
|
583
|
+
deploymentType?: DeploymentType | undefined;
|
|
584
584
|
/**
|
|
585
585
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
586
586
|
* @public
|
|
@@ -590,37 +590,37 @@ export interface GetDbInstanceOutput {
|
|
|
590
590
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
publiclyAccessible?: boolean;
|
|
593
|
+
publiclyAccessible?: boolean | undefined;
|
|
594
594
|
/**
|
|
595
595
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
vpcSecurityGroupIds?: string[];
|
|
598
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
599
599
|
/**
|
|
600
600
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
601
601
|
* @public
|
|
602
602
|
*/
|
|
603
|
-
dbParameterGroupIdentifier?: string;
|
|
603
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
604
604
|
/**
|
|
605
605
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
606
606
|
* @public
|
|
607
607
|
*/
|
|
608
|
-
availabilityZone?: string;
|
|
608
|
+
availabilityZone?: string | undefined;
|
|
609
609
|
/**
|
|
610
610
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
611
611
|
* @public
|
|
612
612
|
*/
|
|
613
|
-
secondaryAvailabilityZone?: string;
|
|
613
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
614
614
|
/**
|
|
615
615
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
616
616
|
* @public
|
|
617
617
|
*/
|
|
618
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
618
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
619
619
|
/**
|
|
620
620
|
* <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
621
621
|
* @public
|
|
622
622
|
*/
|
|
623
|
-
influxAuthParametersSecretArn?: string;
|
|
623
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
624
624
|
}
|
|
625
625
|
/**
|
|
626
626
|
* @public
|
|
@@ -630,12 +630,12 @@ export interface ListDbInstancesInput {
|
|
|
630
630
|
* <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
nextToken?: string;
|
|
633
|
+
nextToken?: string | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
maxResults?: number;
|
|
638
|
+
maxResults?: number | undefined;
|
|
639
639
|
}
|
|
640
640
|
/**
|
|
641
641
|
* <p>Contains a summary of a DB instance.</p>
|
|
@@ -661,37 +661,37 @@ export interface DbInstanceSummary {
|
|
|
661
661
|
* <p>The status of the DB instance.</p>
|
|
662
662
|
* @public
|
|
663
663
|
*/
|
|
664
|
-
status?: Status;
|
|
664
|
+
status?: Status | undefined;
|
|
665
665
|
/**
|
|
666
666
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
endpoint?: string;
|
|
669
|
+
endpoint?: string | undefined;
|
|
670
670
|
/**
|
|
671
671
|
* <p>The port number on which InfluxDB accepts connections.</p>
|
|
672
672
|
* @public
|
|
673
673
|
*/
|
|
674
|
-
port?: number;
|
|
674
|
+
port?: number | undefined;
|
|
675
675
|
/**
|
|
676
676
|
* <p>The Timestream for InfluxDB instance type to run InfluxDB on.</p>
|
|
677
677
|
* @public
|
|
678
678
|
*/
|
|
679
|
-
dbInstanceType?: DbInstanceType;
|
|
679
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
680
680
|
/**
|
|
681
681
|
* <p>The storage type for your DB instance.</p>
|
|
682
682
|
* @public
|
|
683
683
|
*/
|
|
684
|
-
dbStorageType?: DbStorageType;
|
|
684
|
+
dbStorageType?: DbStorageType | undefined;
|
|
685
685
|
/**
|
|
686
686
|
* <p>The amount of storage to allocate for your DbStorageType in GiB (gibibytes).</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
allocatedStorage?: number;
|
|
689
|
+
allocatedStorage?: number | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>Single-Instance or with a MultiAZ Standby for High availability.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
deploymentType?: DeploymentType;
|
|
694
|
+
deploymentType?: DeploymentType | undefined;
|
|
695
695
|
}
|
|
696
696
|
/**
|
|
697
697
|
* @public
|
|
@@ -707,7 +707,7 @@ export interface ListDbInstancesOutput {
|
|
|
707
707
|
* service returns results from where the previous response left off.</p>
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
nextToken?: string;
|
|
710
|
+
nextToken?: string | undefined;
|
|
711
711
|
}
|
|
712
712
|
/**
|
|
713
713
|
* @public
|
|
@@ -722,12 +722,12 @@ export interface UpdateDbInstanceInput {
|
|
|
722
722
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
725
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
726
726
|
/**
|
|
727
727
|
* <p>The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.</p>
|
|
728
728
|
* @public
|
|
729
729
|
*/
|
|
730
|
-
dbParameterGroupIdentifier?: string;
|
|
730
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
731
731
|
/**
|
|
732
732
|
* <p>The port number on which InfluxDB accepts connections.</p>
|
|
733
733
|
* <p>If you change the Port value, your database restarts immediately.</p>
|
|
@@ -736,17 +736,17 @@ export interface UpdateDbInstanceInput {
|
|
|
736
736
|
* <p>Constraints: The value can't be 2375-2376, 7788-7799, 8090, or 51678-51680</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
port?: number;
|
|
739
|
+
port?: number | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>The Timestream for InfluxDB DB instance type to run InfluxDB on.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
dbInstanceType?: DbInstanceType;
|
|
744
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
deploymentType?: DeploymentType;
|
|
749
|
+
deploymentType?: DeploymentType | undefined;
|
|
750
750
|
}
|
|
751
751
|
/**
|
|
752
752
|
* @public
|
|
@@ -771,37 +771,37 @@ export interface UpdateDbInstanceOutput {
|
|
|
771
771
|
* <p>The status of the DB instance.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
status?: Status;
|
|
774
|
+
status?: Status | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
endpoint?: string;
|
|
779
|
+
endpoint?: string | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>The port number on which InfluxDB accepts connections.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
port?: number;
|
|
784
|
+
port?: number | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
787
787
|
* @public
|
|
788
788
|
*/
|
|
789
|
-
dbInstanceType?: DbInstanceType;
|
|
789
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
dbStorageType?: DbStorageType;
|
|
794
|
+
dbStorageType?: DbStorageType | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
|
-
allocatedStorage?: number;
|
|
799
|
+
allocatedStorage?: number | undefined;
|
|
800
800
|
/**
|
|
801
801
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
deploymentType?: DeploymentType;
|
|
804
|
+
deploymentType?: DeploymentType | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
807
807
|
* @public
|
|
@@ -811,37 +811,37 @@ export interface UpdateDbInstanceOutput {
|
|
|
811
811
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
publiclyAccessible?: boolean;
|
|
814
|
+
publiclyAccessible?: boolean | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
vpcSecurityGroupIds?: string[];
|
|
819
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
dbParameterGroupIdentifier?: string;
|
|
824
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
825
825
|
/**
|
|
826
826
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
827
827
|
* @public
|
|
828
828
|
*/
|
|
829
|
-
availabilityZone?: string;
|
|
829
|
+
availabilityZone?: string | undefined;
|
|
830
830
|
/**
|
|
831
831
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
832
832
|
* @public
|
|
833
833
|
*/
|
|
834
|
-
secondaryAvailabilityZone?: string;
|
|
834
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
835
835
|
/**
|
|
836
836
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
839
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
840
840
|
/**
|
|
841
841
|
* <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
842
842
|
* @public
|
|
843
843
|
*/
|
|
844
|
-
influxAuthParametersSecretArn?: string;
|
|
844
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
845
845
|
}
|
|
846
846
|
/**
|
|
847
847
|
* @public
|
|
@@ -908,204 +908,204 @@ export interface InfluxDBv2Parameters {
|
|
|
908
908
|
* <p>Default: false</p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
fluxLogEnabled?: boolean;
|
|
911
|
+
fluxLogEnabled?: boolean | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.</p>
|
|
914
914
|
* <p>Default: info</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
logLevel?: LogLevel;
|
|
917
|
+
logLevel?: LogLevel | undefined;
|
|
918
918
|
/**
|
|
919
919
|
* <p>Disable the task scheduler. If problematic tasks prevent InfluxDB from starting, use this option to start InfluxDB without scheduling or executing tasks.</p>
|
|
920
920
|
* <p>Default: false</p>
|
|
921
921
|
* @public
|
|
922
922
|
*/
|
|
923
|
-
noTasks?: boolean;
|
|
923
|
+
noTasks?: boolean | undefined;
|
|
924
924
|
/**
|
|
925
925
|
* <p>Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.</p>
|
|
926
926
|
* <p>Default: 0</p>
|
|
927
927
|
* @public
|
|
928
928
|
*/
|
|
929
|
-
queryConcurrency?: number;
|
|
929
|
+
queryConcurrency?: number | undefined;
|
|
930
930
|
/**
|
|
931
931
|
* <p>Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.</p>
|
|
932
932
|
* <p>Default: 0</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
|
-
queryQueueSize?: number;
|
|
935
|
+
queryQueueSize?: number | undefined;
|
|
936
936
|
/**
|
|
937
937
|
* <p>Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.</p>
|
|
938
938
|
* @public
|
|
939
939
|
*/
|
|
940
|
-
tracingType?: TracingType;
|
|
940
|
+
tracingType?: TracingType | undefined;
|
|
941
941
|
/**
|
|
942
942
|
* <p>Disable the HTTP /metrics endpoint which exposes <a href="https://docs.influxdata.com/influxdb/v2/reference/internals/metrics/">internal InfluxDB metrics</a>.</p>
|
|
943
943
|
* <p>Default: false</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
metricsDisabled?: boolean;
|
|
946
|
+
metricsDisabled?: boolean | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>Maximum duration the server should keep established connections alive while waiting for new requests. Set to 0 for no timeout.</p>
|
|
949
949
|
* <p>Default: 3 minutes</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
httpIdleTimeout?: Duration;
|
|
952
|
+
httpIdleTimeout?: Duration | undefined;
|
|
953
953
|
/**
|
|
954
954
|
* <p>Maximum duration the server should try to read HTTP headers for new requests. Set to 0 for no timeout.</p>
|
|
955
955
|
* <p>Default: 10 seconds</p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
httpReadHeaderTimeout?: Duration;
|
|
958
|
+
httpReadHeaderTimeout?: Duration | undefined;
|
|
959
959
|
/**
|
|
960
960
|
* <p>Maximum duration the server should try to read the entirety of new requests. Set to 0 for no timeout.</p>
|
|
961
961
|
* <p>Default: 0</p>
|
|
962
962
|
* @public
|
|
963
963
|
*/
|
|
964
|
-
httpReadTimeout?: Duration;
|
|
964
|
+
httpReadTimeout?: Duration | undefined;
|
|
965
965
|
/**
|
|
966
966
|
* <p>Maximum duration the server should spend processing and responding to write requests. Set to 0 for no timeout.</p>
|
|
967
967
|
* <p>Default: 0</p>
|
|
968
968
|
* @public
|
|
969
969
|
*/
|
|
970
|
-
httpWriteTimeout?: Duration;
|
|
970
|
+
httpWriteTimeout?: Duration | undefined;
|
|
971
971
|
/**
|
|
972
972
|
* <p>Maximum number of group by time buckets a SELECT statement can create. 0 allows an unlimited number of buckets.</p>
|
|
973
973
|
* <p>Default: 0</p>
|
|
974
974
|
* @public
|
|
975
975
|
*/
|
|
976
|
-
influxqlMaxSelectBuckets?: number;
|
|
976
|
+
influxqlMaxSelectBuckets?: number | undefined;
|
|
977
977
|
/**
|
|
978
978
|
* <p>Maximum number of points a SELECT statement can process. 0 allows an unlimited number of points. InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted).</p>
|
|
979
979
|
* <p>Default: 0</p>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
influxqlMaxSelectPoint?: number;
|
|
982
|
+
influxqlMaxSelectPoint?: number | undefined;
|
|
983
983
|
/**
|
|
984
984
|
* <p>Maximum number of series a SELECT statement can return. 0 allows an unlimited number of series.</p>
|
|
985
985
|
* <p>Default: 0</p>
|
|
986
986
|
* @public
|
|
987
987
|
*/
|
|
988
|
-
influxqlMaxSelectSeries?: number;
|
|
988
|
+
influxqlMaxSelectSeries?: number | undefined;
|
|
989
989
|
/**
|
|
990
990
|
* <p>Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.</p>
|
|
991
991
|
* <p>Default: false</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
pprofDisabled?: boolean;
|
|
994
|
+
pprofDisabled?: boolean | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>Initial bytes of memory allocated for a query.</p>
|
|
997
997
|
* <p>Default: 0</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
queryInitialMemoryBytes?: number;
|
|
1000
|
+
queryInitialMemoryBytes?: number | undefined;
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.</p>
|
|
1003
1003
|
* <p>Default: 0</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
queryMaxMemoryBytes?: number;
|
|
1006
|
+
queryMaxMemoryBytes?: number | undefined;
|
|
1007
1007
|
/**
|
|
1008
1008
|
* <p>Maximum bytes of memory allowed for a single query. Must be greater or equal to queryInitialMemoryBytes.</p>
|
|
1009
1009
|
* <p>Default: 0</p>
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
queryMemoryBytes?: number;
|
|
1012
|
+
queryMemoryBytes?: number | undefined;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* <p>Specifies the Time to Live (TTL) in minutes for newly created user sessions.</p>
|
|
1015
1015
|
* <p>Default: 60</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
sessionLength?: number;
|
|
1018
|
+
sessionLength?: number | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* <p>Disables automatically extending a user’s session TTL on each request. By default, every request sets the session’s expiration time to five minutes from now. When disabled, sessions expire after the specified <a href="https://docs.influxdata.com/influxdb/v2/reference/config-options/#session-length">session length</a> and the user is redirected to the login page, even if recently active.</p>
|
|
1021
1021
|
* <p>Default: false</p>
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
sessionRenewDisabled?: boolean;
|
|
1024
|
+
sessionRenewDisabled?: boolean | undefined;
|
|
1025
1025
|
/**
|
|
1026
1026
|
* <p>Maximum size (in bytes) a shard’s cache can reach before it starts rejecting writes. Must be greater than storageCacheSnapShotMemorySize and lower than instance’s total memory capacity. We recommend setting it to below 15% of the total memory capacity.</p>
|
|
1027
1027
|
* <p>Default: 1073741824</p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
storageCacheMaxMemorySize?: number;
|
|
1030
|
+
storageCacheMaxMemorySize?: number | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p>Size (in bytes) at which the storage engine will snapshot the cache and write it to a TSM file to make more memory available. Must not be greater than storageCacheMaxMemorySize.</p>
|
|
1033
1033
|
* <p>Default: 26214400</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
storageCacheSnapshotMemorySize?: number;
|
|
1036
|
+
storageCacheSnapshotMemorySize?: number | undefined;
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p>Duration at which the storage engine will snapshot the cache and write it to a new TSM file if the shard hasn’t received writes or deletes.</p>
|
|
1039
1039
|
* <p>Default: 10 minutes</p>
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
storageCacheSnapshotWriteColdDuration?: Duration;
|
|
1042
|
+
storageCacheSnapshotWriteColdDuration?: Duration | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* <p>Duration at which the storage engine will compact all TSM files in a shard if it hasn't received writes or deletes.</p>
|
|
1045
1045
|
* <p>Default: 4 hours</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
storageCompactFullWriteColdDuration?: Duration;
|
|
1048
|
+
storageCompactFullWriteColdDuration?: Duration | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* <p>Rate limit (in bytes per second) that TSM compactions can write to disk.</p>
|
|
1051
1051
|
* <p>Default: 50331648</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
storageCompactThroughputBurst?: number;
|
|
1054
|
+
storageCompactThroughputBurst?: number | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>Maximum number of full and level compactions that can run concurrently. A value of 0 results in 50% of runtime.GOMAXPROCS(0) used at runtime. Any number greater than zero limits compactions to that value. This setting does not apply to cache snapshotting.</p>
|
|
1057
1057
|
* <p>Default: 0</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
storageMaxConcurrentCompactions?: number;
|
|
1060
|
+
storageMaxConcurrentCompactions?: number | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>Size (in bytes) at which an index write-ahead log (WAL) file will compact into an index file. Lower sizes will cause log files to be compacted more quickly and result in lower heap usage at the expense of write throughput.</p>
|
|
1063
1063
|
* <p>Default: 1048576</p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
storageMaxIndexLogFileSize?: number;
|
|
1066
|
+
storageMaxIndexLogFileSize?: number | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p>Skip field size validation on incoming write requests.</p>
|
|
1069
1069
|
* <p>Default: false</p>
|
|
1070
1070
|
* @public
|
|
1071
1071
|
*/
|
|
1072
|
-
storageNoValidateFieldSize?: boolean;
|
|
1072
|
+
storageNoValidateFieldSize?: boolean | undefined;
|
|
1073
1073
|
/**
|
|
1074
1074
|
* <p>Interval of retention policy enforcement checks. Must be greater than 0.</p>
|
|
1075
1075
|
* <p>Default: 30 minutes</p>
|
|
1076
1076
|
* @public
|
|
1077
1077
|
*/
|
|
1078
|
-
storageRetentionCheckInterval?: Duration;
|
|
1078
|
+
storageRetentionCheckInterval?: Duration | undefined;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* <p>Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.</p>
|
|
1081
1081
|
* <p>Default: 0</p>
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
storageSeriesFileMaxConcurrentSnapshotCompactions?: number;
|
|
1084
|
+
storageSeriesFileMaxConcurrentSnapshotCompactions?: number | undefined;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>Size of the internal cache used in the TSI index to store previously calculated series results. Cached results are returned quickly rather than needing to be recalculated when a subsequent query with the same tag key/value predicate is executed. Setting this value to 0 will disable the cache and may decrease query performance.</p>
|
|
1087
1087
|
* <p>Default: 100</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
storageSeriesIdSetCacheSize?: number;
|
|
1090
|
+
storageSeriesIdSetCacheSize?: number | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>Maximum number writes to the WAL directory to attempt at the same time. Setting this value to 0 results in number of processing units available x2.</p>
|
|
1093
1093
|
* <p>Default: 0</p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
storageWalMaxConcurrentWrites?: number;
|
|
1096
|
+
storageWalMaxConcurrentWrites?: number | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* <p>Maximum amount of time a write request to the WAL directory will wait when the <a href="https://docs.influxdata.com/influxdb/v2/reference/config-options/#storage-wal-max-concurrent-writes">maximum number of concurrent active writes to the WAL directory has been met</a>. Set to 0 to disable the timeout.</p>
|
|
1099
1099
|
* <p>Default: 10 minutes</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
storageWalMaxWriteDelay?: Duration;
|
|
1102
|
+
storageWalMaxWriteDelay?: Duration | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>Disable the InfluxDB user interface (UI). The UI is enabled by default.</p>
|
|
1105
1105
|
* <p>Default: false</p>
|
|
1106
1106
|
* @public
|
|
1107
1107
|
*/
|
|
1108
|
-
uiDisabled?: boolean;
|
|
1108
|
+
uiDisabled?: boolean | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
/**
|
|
1111
1111
|
* <p>The parameters that comprise the parameter group.</p>
|
|
@@ -1150,17 +1150,17 @@ export interface CreateDbParameterGroupInput {
|
|
|
1150
1150
|
* <p>A description of the DB parameter group.</p>
|
|
1151
1151
|
* @public
|
|
1152
1152
|
*/
|
|
1153
|
-
description?: string;
|
|
1153
|
+
description?: string | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* <p>A list of the parameters that comprise the DB parameter group.</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
parameters?: _Parameters;
|
|
1158
|
+
parameters?: _Parameters | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>A list of key-value pairs to associate with the DB parameter group.</p>
|
|
1161
1161
|
* @public
|
|
1162
1162
|
*/
|
|
1163
|
-
tags?: Record<string, string
|
|
1163
|
+
tags?: Record<string, string> | undefined;
|
|
1164
1164
|
}
|
|
1165
1165
|
/**
|
|
1166
1166
|
* @public
|
|
@@ -1185,12 +1185,12 @@ export interface CreateDbParameterGroupOutput {
|
|
|
1185
1185
|
* <p>The description of the DB parameter group.</p>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
description?: string;
|
|
1188
|
+
description?: string | undefined;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* <p>A list of the parameters that comprise the DB parameter group.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
parameters?: _Parameters;
|
|
1193
|
+
parameters?: _Parameters | undefined;
|
|
1194
1194
|
}
|
|
1195
1195
|
/**
|
|
1196
1196
|
* @public
|
|
@@ -1225,12 +1225,12 @@ export interface GetDbParameterGroupOutput {
|
|
|
1225
1225
|
* <p>A description of the DB parameter group.</p>
|
|
1226
1226
|
* @public
|
|
1227
1227
|
*/
|
|
1228
|
-
description?: string;
|
|
1228
|
+
description?: string | undefined;
|
|
1229
1229
|
/**
|
|
1230
1230
|
* <p>The parameters that comprise the DB parameter group.</p>
|
|
1231
1231
|
* @public
|
|
1232
1232
|
*/
|
|
1233
|
-
parameters?: _Parameters;
|
|
1233
|
+
parameters?: _Parameters | undefined;
|
|
1234
1234
|
}
|
|
1235
1235
|
/**
|
|
1236
1236
|
* @public
|
|
@@ -1240,12 +1240,12 @@ export interface ListDbParameterGroupsInput {
|
|
|
1240
1240
|
* <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
1241
1241
|
* @public
|
|
1242
1242
|
*/
|
|
1243
|
-
nextToken?: string;
|
|
1243
|
+
nextToken?: string | undefined;
|
|
1244
1244
|
/**
|
|
1245
1245
|
* <p>The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
1246
1246
|
* @public
|
|
1247
1247
|
*/
|
|
1248
|
-
maxResults?: number;
|
|
1248
|
+
maxResults?: number | undefined;
|
|
1249
1249
|
}
|
|
1250
1250
|
/**
|
|
1251
1251
|
* <p>Contains a summary of a DB parameter group.</p>
|
|
@@ -1271,7 +1271,7 @@ export interface DbParameterGroupSummary {
|
|
|
1271
1271
|
* <p>A description of the DB parameter group.</p>
|
|
1272
1272
|
* @public
|
|
1273
1273
|
*/
|
|
1274
|
-
description?: string;
|
|
1274
|
+
description?: string | undefined;
|
|
1275
1275
|
}
|
|
1276
1276
|
/**
|
|
1277
1277
|
* @public
|
|
@@ -1287,7 +1287,7 @@ export interface ListDbParameterGroupsOutput {
|
|
|
1287
1287
|
* service returns results from where the previous response left off.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
nextToken?: string;
|
|
1290
|
+
nextToken?: string | undefined;
|
|
1291
1291
|
}
|
|
1292
1292
|
/**
|
|
1293
1293
|
* @public
|
|
@@ -1307,7 +1307,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1307
1307
|
* <p>A list of tags used to categorize and track resources.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
tags?: Record<string, string
|
|
1310
|
+
tags?: Record<string, string> | undefined;
|
|
1311
1311
|
}
|
|
1312
1312
|
/**
|
|
1313
1313
|
* @public
|
|
@@ -47,21 +47,21 @@ export interface LogDeliveryConfiguration {
|
|
|
47
47
|
}
|
|
48
48
|
export interface CreateDbInstanceInput {
|
|
49
49
|
name: string | undefined;
|
|
50
|
-
username?: string;
|
|
50
|
+
username?: string | undefined;
|
|
51
51
|
password: string | undefined;
|
|
52
|
-
organization?: string;
|
|
53
|
-
bucket?: string;
|
|
52
|
+
organization?: string | undefined;
|
|
53
|
+
bucket?: string | undefined;
|
|
54
54
|
dbInstanceType: DbInstanceType | undefined;
|
|
55
55
|
vpcSubnetIds: string[] | undefined;
|
|
56
56
|
vpcSecurityGroupIds: string[] | undefined;
|
|
57
|
-
publiclyAccessible?: boolean;
|
|
58
|
-
dbStorageType?: DbStorageType;
|
|
57
|
+
publiclyAccessible?: boolean | undefined;
|
|
58
|
+
dbStorageType?: DbStorageType | undefined;
|
|
59
59
|
allocatedStorage: number | undefined;
|
|
60
|
-
dbParameterGroupIdentifier?: string;
|
|
61
|
-
deploymentType?: DeploymentType;
|
|
62
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
63
|
-
tags?: Record<string, string
|
|
64
|
-
port?: number;
|
|
60
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
61
|
+
deploymentType?: DeploymentType | undefined;
|
|
62
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
63
|
+
tags?: Record<string, string> | undefined;
|
|
64
|
+
port?: number | undefined;
|
|
65
65
|
}
|
|
66
66
|
export declare const Status: {
|
|
67
67
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -79,21 +79,21 @@ export interface CreateDbInstanceOutput {
|
|
|
79
79
|
id: string | undefined;
|
|
80
80
|
name: string | undefined;
|
|
81
81
|
arn: string | undefined;
|
|
82
|
-
status?: Status;
|
|
83
|
-
endpoint?: string;
|
|
84
|
-
port?: number;
|
|
85
|
-
dbInstanceType?: DbInstanceType;
|
|
86
|
-
dbStorageType?: DbStorageType;
|
|
87
|
-
allocatedStorage?: number;
|
|
88
|
-
deploymentType?: DeploymentType;
|
|
82
|
+
status?: Status | undefined;
|
|
83
|
+
endpoint?: string | undefined;
|
|
84
|
+
port?: number | undefined;
|
|
85
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
86
|
+
dbStorageType?: DbStorageType | undefined;
|
|
87
|
+
allocatedStorage?: number | undefined;
|
|
88
|
+
deploymentType?: DeploymentType | undefined;
|
|
89
89
|
vpcSubnetIds: string[] | undefined;
|
|
90
|
-
publiclyAccessible?: boolean;
|
|
91
|
-
vpcSecurityGroupIds?: string[];
|
|
92
|
-
dbParameterGroupIdentifier?: string;
|
|
93
|
-
availabilityZone?: string;
|
|
94
|
-
secondaryAvailabilityZone?: string;
|
|
95
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
96
|
-
influxAuthParametersSecretArn?: string;
|
|
90
|
+
publiclyAccessible?: boolean | undefined;
|
|
91
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
92
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
93
|
+
availabilityZone?: string | undefined;
|
|
94
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
95
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
96
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
97
97
|
}
|
|
98
98
|
export declare class InternalServerException extends __BaseException {
|
|
99
99
|
readonly name: "InternalServerException";
|
|
@@ -123,7 +123,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
123
123
|
readonly name: "ThrottlingException";
|
|
124
124
|
readonly $fault: "client";
|
|
125
125
|
$retryable: {};
|
|
126
|
-
retryAfterSeconds?: number;
|
|
126
|
+
retryAfterSeconds?: number | undefined;
|
|
127
127
|
constructor(
|
|
128
128
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
129
129
|
);
|
|
@@ -149,21 +149,21 @@ export interface DeleteDbInstanceOutput {
|
|
|
149
149
|
id: string | undefined;
|
|
150
150
|
name: string | undefined;
|
|
151
151
|
arn: string | undefined;
|
|
152
|
-
status?: Status;
|
|
153
|
-
endpoint?: string;
|
|
154
|
-
port?: number;
|
|
155
|
-
dbInstanceType?: DbInstanceType;
|
|
156
|
-
dbStorageType?: DbStorageType;
|
|
157
|
-
allocatedStorage?: number;
|
|
158
|
-
deploymentType?: DeploymentType;
|
|
152
|
+
status?: Status | undefined;
|
|
153
|
+
endpoint?: string | undefined;
|
|
154
|
+
port?: number | undefined;
|
|
155
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
156
|
+
dbStorageType?: DbStorageType | undefined;
|
|
157
|
+
allocatedStorage?: number | undefined;
|
|
158
|
+
deploymentType?: DeploymentType | undefined;
|
|
159
159
|
vpcSubnetIds: string[] | undefined;
|
|
160
|
-
publiclyAccessible?: boolean;
|
|
161
|
-
vpcSecurityGroupIds?: string[];
|
|
162
|
-
dbParameterGroupIdentifier?: string;
|
|
163
|
-
availabilityZone?: string;
|
|
164
|
-
secondaryAvailabilityZone?: string;
|
|
165
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
166
|
-
influxAuthParametersSecretArn?: string;
|
|
160
|
+
publiclyAccessible?: boolean | undefined;
|
|
161
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
162
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
163
|
+
availabilityZone?: string | undefined;
|
|
164
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
165
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
166
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
167
167
|
}
|
|
168
168
|
export interface GetDbInstanceInput {
|
|
169
169
|
identifier: string | undefined;
|
|
@@ -172,69 +172,69 @@ export interface GetDbInstanceOutput {
|
|
|
172
172
|
id: string | undefined;
|
|
173
173
|
name: string | undefined;
|
|
174
174
|
arn: string | undefined;
|
|
175
|
-
status?: Status;
|
|
176
|
-
endpoint?: string;
|
|
177
|
-
port?: number;
|
|
178
|
-
dbInstanceType?: DbInstanceType;
|
|
179
|
-
dbStorageType?: DbStorageType;
|
|
180
|
-
allocatedStorage?: number;
|
|
181
|
-
deploymentType?: DeploymentType;
|
|
175
|
+
status?: Status | undefined;
|
|
176
|
+
endpoint?: string | undefined;
|
|
177
|
+
port?: number | undefined;
|
|
178
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
179
|
+
dbStorageType?: DbStorageType | undefined;
|
|
180
|
+
allocatedStorage?: number | undefined;
|
|
181
|
+
deploymentType?: DeploymentType | undefined;
|
|
182
182
|
vpcSubnetIds: string[] | undefined;
|
|
183
|
-
publiclyAccessible?: boolean;
|
|
184
|
-
vpcSecurityGroupIds?: string[];
|
|
185
|
-
dbParameterGroupIdentifier?: string;
|
|
186
|
-
availabilityZone?: string;
|
|
187
|
-
secondaryAvailabilityZone?: string;
|
|
188
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
189
|
-
influxAuthParametersSecretArn?: string;
|
|
183
|
+
publiclyAccessible?: boolean | undefined;
|
|
184
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
185
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
186
|
+
availabilityZone?: string | undefined;
|
|
187
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
188
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
189
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface ListDbInstancesInput {
|
|
192
|
-
nextToken?: string;
|
|
193
|
-
maxResults?: number;
|
|
192
|
+
nextToken?: string | undefined;
|
|
193
|
+
maxResults?: number | undefined;
|
|
194
194
|
}
|
|
195
195
|
export interface DbInstanceSummary {
|
|
196
196
|
id: string | undefined;
|
|
197
197
|
name: string | undefined;
|
|
198
198
|
arn: string | undefined;
|
|
199
|
-
status?: Status;
|
|
200
|
-
endpoint?: string;
|
|
201
|
-
port?: number;
|
|
202
|
-
dbInstanceType?: DbInstanceType;
|
|
203
|
-
dbStorageType?: DbStorageType;
|
|
204
|
-
allocatedStorage?: number;
|
|
205
|
-
deploymentType?: DeploymentType;
|
|
199
|
+
status?: Status | undefined;
|
|
200
|
+
endpoint?: string | undefined;
|
|
201
|
+
port?: number | undefined;
|
|
202
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
203
|
+
dbStorageType?: DbStorageType | undefined;
|
|
204
|
+
allocatedStorage?: number | undefined;
|
|
205
|
+
deploymentType?: DeploymentType | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface ListDbInstancesOutput {
|
|
208
208
|
items: DbInstanceSummary[] | undefined;
|
|
209
|
-
nextToken?: string;
|
|
209
|
+
nextToken?: string | undefined;
|
|
210
210
|
}
|
|
211
211
|
export interface UpdateDbInstanceInput {
|
|
212
212
|
identifier: string | undefined;
|
|
213
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
214
|
-
dbParameterGroupIdentifier?: string;
|
|
215
|
-
port?: number;
|
|
216
|
-
dbInstanceType?: DbInstanceType;
|
|
217
|
-
deploymentType?: DeploymentType;
|
|
213
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
214
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
215
|
+
port?: number | undefined;
|
|
216
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
217
|
+
deploymentType?: DeploymentType | undefined;
|
|
218
218
|
}
|
|
219
219
|
export interface UpdateDbInstanceOutput {
|
|
220
220
|
id: string | undefined;
|
|
221
221
|
name: string | undefined;
|
|
222
222
|
arn: string | undefined;
|
|
223
|
-
status?: Status;
|
|
224
|
-
endpoint?: string;
|
|
225
|
-
port?: number;
|
|
226
|
-
dbInstanceType?: DbInstanceType;
|
|
227
|
-
dbStorageType?: DbStorageType;
|
|
228
|
-
allocatedStorage?: number;
|
|
229
|
-
deploymentType?: DeploymentType;
|
|
223
|
+
status?: Status | undefined;
|
|
224
|
+
endpoint?: string | undefined;
|
|
225
|
+
port?: number | undefined;
|
|
226
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
227
|
+
dbStorageType?: DbStorageType | undefined;
|
|
228
|
+
allocatedStorage?: number | undefined;
|
|
229
|
+
deploymentType?: DeploymentType | undefined;
|
|
230
230
|
vpcSubnetIds: string[] | undefined;
|
|
231
|
-
publiclyAccessible?: boolean;
|
|
232
|
-
vpcSecurityGroupIds?: string[];
|
|
233
|
-
dbParameterGroupIdentifier?: string;
|
|
234
|
-
availabilityZone?: string;
|
|
235
|
-
secondaryAvailabilityZone?: string;
|
|
236
|
-
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
237
|
-
influxAuthParametersSecretArn?: string;
|
|
231
|
+
publiclyAccessible?: boolean | undefined;
|
|
232
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
233
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
234
|
+
availabilityZone?: string | undefined;
|
|
235
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
236
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
237
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
238
238
|
}
|
|
239
239
|
export declare const DurationType: {
|
|
240
240
|
readonly HOURS: "hours";
|
|
@@ -259,40 +259,40 @@ export declare const TracingType: {
|
|
|
259
259
|
};
|
|
260
260
|
export type TracingType = (typeof TracingType)[keyof typeof TracingType];
|
|
261
261
|
export interface InfluxDBv2Parameters {
|
|
262
|
-
fluxLogEnabled?: boolean;
|
|
263
|
-
logLevel?: LogLevel;
|
|
264
|
-
noTasks?: boolean;
|
|
265
|
-
queryConcurrency?: number;
|
|
266
|
-
queryQueueSize?: number;
|
|
267
|
-
tracingType?: TracingType;
|
|
268
|
-
metricsDisabled?: boolean;
|
|
269
|
-
httpIdleTimeout?: Duration;
|
|
270
|
-
httpReadHeaderTimeout?: Duration;
|
|
271
|
-
httpReadTimeout?: Duration;
|
|
272
|
-
httpWriteTimeout?: Duration;
|
|
273
|
-
influxqlMaxSelectBuckets?: number;
|
|
274
|
-
influxqlMaxSelectPoint?: number;
|
|
275
|
-
influxqlMaxSelectSeries?: number;
|
|
276
|
-
pprofDisabled?: boolean;
|
|
277
|
-
queryInitialMemoryBytes?: number;
|
|
278
|
-
queryMaxMemoryBytes?: number;
|
|
279
|
-
queryMemoryBytes?: number;
|
|
280
|
-
sessionLength?: number;
|
|
281
|
-
sessionRenewDisabled?: boolean;
|
|
282
|
-
storageCacheMaxMemorySize?: number;
|
|
283
|
-
storageCacheSnapshotMemorySize?: number;
|
|
284
|
-
storageCacheSnapshotWriteColdDuration?: Duration;
|
|
285
|
-
storageCompactFullWriteColdDuration?: Duration;
|
|
286
|
-
storageCompactThroughputBurst?: number;
|
|
287
|
-
storageMaxConcurrentCompactions?: number;
|
|
288
|
-
storageMaxIndexLogFileSize?: number;
|
|
289
|
-
storageNoValidateFieldSize?: boolean;
|
|
290
|
-
storageRetentionCheckInterval?: Duration;
|
|
291
|
-
storageSeriesFileMaxConcurrentSnapshotCompactions?: number;
|
|
292
|
-
storageSeriesIdSetCacheSize?: number;
|
|
293
|
-
storageWalMaxConcurrentWrites?: number;
|
|
294
|
-
storageWalMaxWriteDelay?: Duration;
|
|
295
|
-
uiDisabled?: boolean;
|
|
262
|
+
fluxLogEnabled?: boolean | undefined;
|
|
263
|
+
logLevel?: LogLevel | undefined;
|
|
264
|
+
noTasks?: boolean | undefined;
|
|
265
|
+
queryConcurrency?: number | undefined;
|
|
266
|
+
queryQueueSize?: number | undefined;
|
|
267
|
+
tracingType?: TracingType | undefined;
|
|
268
|
+
metricsDisabled?: boolean | undefined;
|
|
269
|
+
httpIdleTimeout?: Duration | undefined;
|
|
270
|
+
httpReadHeaderTimeout?: Duration | undefined;
|
|
271
|
+
httpReadTimeout?: Duration | undefined;
|
|
272
|
+
httpWriteTimeout?: Duration | undefined;
|
|
273
|
+
influxqlMaxSelectBuckets?: number | undefined;
|
|
274
|
+
influxqlMaxSelectPoint?: number | undefined;
|
|
275
|
+
influxqlMaxSelectSeries?: number | undefined;
|
|
276
|
+
pprofDisabled?: boolean | undefined;
|
|
277
|
+
queryInitialMemoryBytes?: number | undefined;
|
|
278
|
+
queryMaxMemoryBytes?: number | undefined;
|
|
279
|
+
queryMemoryBytes?: number | undefined;
|
|
280
|
+
sessionLength?: number | undefined;
|
|
281
|
+
sessionRenewDisabled?: boolean | undefined;
|
|
282
|
+
storageCacheMaxMemorySize?: number | undefined;
|
|
283
|
+
storageCacheSnapshotMemorySize?: number | undefined;
|
|
284
|
+
storageCacheSnapshotWriteColdDuration?: Duration | undefined;
|
|
285
|
+
storageCompactFullWriteColdDuration?: Duration | undefined;
|
|
286
|
+
storageCompactThroughputBurst?: number | undefined;
|
|
287
|
+
storageMaxConcurrentCompactions?: number | undefined;
|
|
288
|
+
storageMaxIndexLogFileSize?: number | undefined;
|
|
289
|
+
storageNoValidateFieldSize?: boolean | undefined;
|
|
290
|
+
storageRetentionCheckInterval?: Duration | undefined;
|
|
291
|
+
storageSeriesFileMaxConcurrentSnapshotCompactions?: number | undefined;
|
|
292
|
+
storageSeriesIdSetCacheSize?: number | undefined;
|
|
293
|
+
storageWalMaxConcurrentWrites?: number | undefined;
|
|
294
|
+
storageWalMaxWriteDelay?: Duration | undefined;
|
|
295
|
+
uiDisabled?: boolean | undefined;
|
|
296
296
|
}
|
|
297
297
|
export type _Parameters =
|
|
298
298
|
| _Parameters.InfluxDBv2Member
|
|
@@ -314,16 +314,16 @@ export declare namespace _Parameters {
|
|
|
314
314
|
}
|
|
315
315
|
export interface CreateDbParameterGroupInput {
|
|
316
316
|
name: string | undefined;
|
|
317
|
-
description?: string;
|
|
318
|
-
parameters?: _Parameters;
|
|
319
|
-
tags?: Record<string, string
|
|
317
|
+
description?: string | undefined;
|
|
318
|
+
parameters?: _Parameters | undefined;
|
|
319
|
+
tags?: Record<string, string> | undefined;
|
|
320
320
|
}
|
|
321
321
|
export interface CreateDbParameterGroupOutput {
|
|
322
322
|
id: string | undefined;
|
|
323
323
|
name: string | undefined;
|
|
324
324
|
arn: string | undefined;
|
|
325
|
-
description?: string;
|
|
326
|
-
parameters?: _Parameters;
|
|
325
|
+
description?: string | undefined;
|
|
326
|
+
parameters?: _Parameters | undefined;
|
|
327
327
|
}
|
|
328
328
|
export interface GetDbParameterGroupInput {
|
|
329
329
|
identifier: string | undefined;
|
|
@@ -332,28 +332,28 @@ export interface GetDbParameterGroupOutput {
|
|
|
332
332
|
id: string | undefined;
|
|
333
333
|
name: string | undefined;
|
|
334
334
|
arn: string | undefined;
|
|
335
|
-
description?: string;
|
|
336
|
-
parameters?: _Parameters;
|
|
335
|
+
description?: string | undefined;
|
|
336
|
+
parameters?: _Parameters | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface ListDbParameterGroupsInput {
|
|
339
|
-
nextToken?: string;
|
|
340
|
-
maxResults?: number;
|
|
339
|
+
nextToken?: string | undefined;
|
|
340
|
+
maxResults?: number | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface DbParameterGroupSummary {
|
|
343
343
|
id: string | undefined;
|
|
344
344
|
name: string | undefined;
|
|
345
345
|
arn: string | undefined;
|
|
346
|
-
description?: string;
|
|
346
|
+
description?: string | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface ListDbParameterGroupsOutput {
|
|
349
349
|
items: DbParameterGroupSummary[] | undefined;
|
|
350
|
-
nextToken?: string;
|
|
350
|
+
nextToken?: string | undefined;
|
|
351
351
|
}
|
|
352
352
|
export interface ListTagsForResourceRequest {
|
|
353
353
|
resourceArn: string | undefined;
|
|
354
354
|
}
|
|
355
355
|
export interface ListTagsForResourceResponse {
|
|
356
|
-
tags?: Record<string, string
|
|
356
|
+
tags?: Record<string, string> | undefined;
|
|
357
357
|
}
|
|
358
358
|
export interface TagResourceRequest {
|
|
359
359
|
resourceArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-influxdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Influxdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|