@aws-sdk/client-timestream-influxdb 3.908.0 → 3.911.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-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +288 -3
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +32 -0
- package/dist-es/protocols/Aws_json1_0.js +256 -6
- package/dist-types/commands/CreateDbClusterCommand.d.ts +3 -3
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +4 -1
- package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +232 -12
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +4 -1
- package/dist-types/commands/GetDbClusterCommand.d.ts +1 -0
- package/dist-types/commands/GetDbInstanceCommand.d.ts +4 -1
- package/dist-types/commands/GetDbParameterGroupCommand.d.ts +116 -6
- package/dist-types/commands/ListDbClustersCommand.d.ts +1 -0
- package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +4 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +682 -6
- package/dist-types/ts3.4/models/models_0.d.ts +174 -3
- package/package.json +33 -33
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
1
|
+
import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, withBaseException, } from "@smithy/smithy-client";
|
|
4
|
-
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
3
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectString as __expectString, limitedParseFloat32 as __limitedParseFloat32, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
|
+
import { _Parameters, AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
5
5
|
import { TimestreamInfluxDBServiceException as __BaseException } from "../models/TimestreamInfluxDBServiceException";
|
|
6
6
|
export const se_CreateDbClusterCommand = async (input, context) => {
|
|
7
7
|
const headers = sharedHeaders("CreateDbCluster");
|
|
@@ -18,7 +18,7 @@ export const se_CreateDbInstanceCommand = async (input, context) => {
|
|
|
18
18
|
export const se_CreateDbParameterGroupCommand = async (input, context) => {
|
|
19
19
|
const headers = sharedHeaders("CreateDbParameterGroup");
|
|
20
20
|
let body;
|
|
21
|
-
body = JSON.stringify(
|
|
21
|
+
body = JSON.stringify(se_CreateDbParameterGroupInput(input, context));
|
|
22
22
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
23
23
|
};
|
|
24
24
|
export const se_DeleteDbClusterCommand = async (input, context) => {
|
|
@@ -137,7 +137,7 @@ export const de_CreateDbParameterGroupCommand = async (output, context) => {
|
|
|
137
137
|
}
|
|
138
138
|
const data = await parseBody(output.body, context);
|
|
139
139
|
let contents = {};
|
|
140
|
-
contents =
|
|
140
|
+
contents = de_CreateDbParameterGroupOutput(data, context);
|
|
141
141
|
const response = {
|
|
142
142
|
$metadata: deserializeMetadata(output),
|
|
143
143
|
...contents,
|
|
@@ -202,7 +202,7 @@ export const de_GetDbParameterGroupCommand = async (output, context) => {
|
|
|
202
202
|
}
|
|
203
203
|
const data = await parseBody(output.body, context);
|
|
204
204
|
let contents = {};
|
|
205
|
-
contents =
|
|
205
|
+
contents = de_GetDbParameterGroupOutput(data, context);
|
|
206
206
|
const response = {
|
|
207
207
|
$metadata: deserializeMetadata(output),
|
|
208
208
|
...contents,
|
|
@@ -420,6 +420,256 @@ const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
|
420
420
|
});
|
|
421
421
|
return __decorateServiceException(exception, body);
|
|
422
422
|
};
|
|
423
|
+
const se_CreateDbParameterGroupInput = (input, context) => {
|
|
424
|
+
return take(input, {
|
|
425
|
+
description: [],
|
|
426
|
+
name: [],
|
|
427
|
+
parameters: (_) => se__Parameters(_, context),
|
|
428
|
+
tags: _json,
|
|
429
|
+
});
|
|
430
|
+
};
|
|
431
|
+
const se_InfluxDBv3CoreParameters = (input, context) => {
|
|
432
|
+
return take(input, {
|
|
433
|
+
dataFusionConfig: [],
|
|
434
|
+
dataFusionMaxParquetFanout: [],
|
|
435
|
+
dataFusionNumThreads: [],
|
|
436
|
+
dataFusionRuntimeDisableLifoSlot: [],
|
|
437
|
+
dataFusionRuntimeEventInterval: [],
|
|
438
|
+
dataFusionRuntimeGlobalQueueInterval: [],
|
|
439
|
+
dataFusionRuntimeMaxBlockingThreads: [],
|
|
440
|
+
dataFusionRuntimeMaxIoEventsPerTick: [],
|
|
441
|
+
dataFusionRuntimeThreadKeepAlive: _json,
|
|
442
|
+
dataFusionRuntimeThreadPriority: [],
|
|
443
|
+
dataFusionRuntimeType: [],
|
|
444
|
+
dataFusionUseCachedParquetLoader: [],
|
|
445
|
+
deleteGracePeriod: _json,
|
|
446
|
+
disableParquetMemCache: [],
|
|
447
|
+
distinctCacheEvictionInterval: _json,
|
|
448
|
+
execMemPoolBytes: _json,
|
|
449
|
+
forceSnapshotMemThreshold: _json,
|
|
450
|
+
gen1Duration: _json,
|
|
451
|
+
gen1LookbackDuration: _json,
|
|
452
|
+
hardDeleteDefaultDuration: _json,
|
|
453
|
+
lastCacheEvictionInterval: _json,
|
|
454
|
+
logFilter: [],
|
|
455
|
+
logFormat: [],
|
|
456
|
+
maxHttpRequestSize: [],
|
|
457
|
+
parquetMemCachePruneInterval: _json,
|
|
458
|
+
parquetMemCachePrunePercentage: __serializeFloat,
|
|
459
|
+
parquetMemCacheQueryPathDuration: _json,
|
|
460
|
+
parquetMemCacheSize: _json,
|
|
461
|
+
preemptiveCacheAge: _json,
|
|
462
|
+
queryFileLimit: [],
|
|
463
|
+
queryLogSize: [],
|
|
464
|
+
retentionCheckInterval: _json,
|
|
465
|
+
snapshottedWalFilesToKeep: [],
|
|
466
|
+
tableIndexCacheConcurrencyLimit: [],
|
|
467
|
+
tableIndexCacheMaxEntries: [],
|
|
468
|
+
walMaxWriteBufferSize: [],
|
|
469
|
+
walReplayConcurrencyLimit: [],
|
|
470
|
+
walReplayFailOnError: [],
|
|
471
|
+
walSnapshotSize: [],
|
|
472
|
+
});
|
|
473
|
+
};
|
|
474
|
+
const se_InfluxDBv3EnterpriseParameters = (input, context) => {
|
|
475
|
+
return take(input, {
|
|
476
|
+
catalogSyncInterval: _json,
|
|
477
|
+
compactionCheckInterval: _json,
|
|
478
|
+
compactionCleanupWait: _json,
|
|
479
|
+
compactionGen2Duration: _json,
|
|
480
|
+
compactionMaxNumFilesPerPlan: [],
|
|
481
|
+
compactionMultipliers: [],
|
|
482
|
+
compactionRowLimit: [],
|
|
483
|
+
dataFusionConfig: [],
|
|
484
|
+
dataFusionMaxParquetFanout: [],
|
|
485
|
+
dataFusionNumThreads: [],
|
|
486
|
+
dataFusionRuntimeDisableLifoSlot: [],
|
|
487
|
+
dataFusionRuntimeEventInterval: [],
|
|
488
|
+
dataFusionRuntimeGlobalQueueInterval: [],
|
|
489
|
+
dataFusionRuntimeMaxBlockingThreads: [],
|
|
490
|
+
dataFusionRuntimeMaxIoEventsPerTick: [],
|
|
491
|
+
dataFusionRuntimeThreadKeepAlive: _json,
|
|
492
|
+
dataFusionRuntimeThreadPriority: [],
|
|
493
|
+
dataFusionRuntimeType: [],
|
|
494
|
+
dataFusionUseCachedParquetLoader: [],
|
|
495
|
+
dedicatedCompactor: [],
|
|
496
|
+
deleteGracePeriod: _json,
|
|
497
|
+
disableParquetMemCache: [],
|
|
498
|
+
distinctCacheEvictionInterval: _json,
|
|
499
|
+
distinctValueCacheDisableFromHistory: [],
|
|
500
|
+
execMemPoolBytes: _json,
|
|
501
|
+
forceSnapshotMemThreshold: _json,
|
|
502
|
+
gen1Duration: _json,
|
|
503
|
+
gen1LookbackDuration: _json,
|
|
504
|
+
hardDeleteDefaultDuration: _json,
|
|
505
|
+
ingestQueryInstances: [],
|
|
506
|
+
lastCacheEvictionInterval: _json,
|
|
507
|
+
lastValueCacheDisableFromHistory: [],
|
|
508
|
+
logFilter: [],
|
|
509
|
+
logFormat: [],
|
|
510
|
+
maxHttpRequestSize: [],
|
|
511
|
+
parquetMemCachePruneInterval: _json,
|
|
512
|
+
parquetMemCachePrunePercentage: __serializeFloat,
|
|
513
|
+
parquetMemCacheQueryPathDuration: _json,
|
|
514
|
+
parquetMemCacheSize: _json,
|
|
515
|
+
preemptiveCacheAge: _json,
|
|
516
|
+
queryFileLimit: [],
|
|
517
|
+
queryLogSize: [],
|
|
518
|
+
queryOnlyInstances: [],
|
|
519
|
+
replicationInterval: _json,
|
|
520
|
+
retentionCheckInterval: _json,
|
|
521
|
+
snapshottedWalFilesToKeep: [],
|
|
522
|
+
tableIndexCacheConcurrencyLimit: [],
|
|
523
|
+
tableIndexCacheMaxEntries: [],
|
|
524
|
+
walMaxWriteBufferSize: [],
|
|
525
|
+
walReplayConcurrencyLimit: [],
|
|
526
|
+
walReplayFailOnError: [],
|
|
527
|
+
walSnapshotSize: [],
|
|
528
|
+
});
|
|
529
|
+
};
|
|
530
|
+
const se__Parameters = (input, context) => {
|
|
531
|
+
return _Parameters.visit(input, {
|
|
532
|
+
InfluxDBv2: (value) => ({ InfluxDBv2: _json(value) }),
|
|
533
|
+
InfluxDBv3Core: (value) => ({ InfluxDBv3Core: se_InfluxDBv3CoreParameters(value, context) }),
|
|
534
|
+
InfluxDBv3Enterprise: (value) => ({ InfluxDBv3Enterprise: se_InfluxDBv3EnterpriseParameters(value, context) }),
|
|
535
|
+
_: (name, value) => ({ [name]: value }),
|
|
536
|
+
});
|
|
537
|
+
};
|
|
538
|
+
const de_CreateDbParameterGroupOutput = (output, context) => {
|
|
539
|
+
return take(output, {
|
|
540
|
+
arn: __expectString,
|
|
541
|
+
description: __expectString,
|
|
542
|
+
id: __expectString,
|
|
543
|
+
name: __expectString,
|
|
544
|
+
parameters: (_) => de__Parameters(__expectUnion(_), context),
|
|
545
|
+
});
|
|
546
|
+
};
|
|
547
|
+
const de_GetDbParameterGroupOutput = (output, context) => {
|
|
548
|
+
return take(output, {
|
|
549
|
+
arn: __expectString,
|
|
550
|
+
description: __expectString,
|
|
551
|
+
id: __expectString,
|
|
552
|
+
name: __expectString,
|
|
553
|
+
parameters: (_) => de__Parameters(__expectUnion(_), context),
|
|
554
|
+
});
|
|
555
|
+
};
|
|
556
|
+
const de_InfluxDBv3CoreParameters = (output, context) => {
|
|
557
|
+
return take(output, {
|
|
558
|
+
dataFusionConfig: __expectString,
|
|
559
|
+
dataFusionMaxParquetFanout: __expectInt32,
|
|
560
|
+
dataFusionNumThreads: __expectInt32,
|
|
561
|
+
dataFusionRuntimeDisableLifoSlot: __expectBoolean,
|
|
562
|
+
dataFusionRuntimeEventInterval: __expectInt32,
|
|
563
|
+
dataFusionRuntimeGlobalQueueInterval: __expectInt32,
|
|
564
|
+
dataFusionRuntimeMaxBlockingThreads: __expectInt32,
|
|
565
|
+
dataFusionRuntimeMaxIoEventsPerTick: __expectInt32,
|
|
566
|
+
dataFusionRuntimeThreadKeepAlive: _json,
|
|
567
|
+
dataFusionRuntimeThreadPriority: __expectInt32,
|
|
568
|
+
dataFusionRuntimeType: __expectString,
|
|
569
|
+
dataFusionUseCachedParquetLoader: __expectBoolean,
|
|
570
|
+
deleteGracePeriod: _json,
|
|
571
|
+
disableParquetMemCache: __expectBoolean,
|
|
572
|
+
distinctCacheEvictionInterval: _json,
|
|
573
|
+
execMemPoolBytes: (_) => _json(__expectUnion(_)),
|
|
574
|
+
forceSnapshotMemThreshold: (_) => _json(__expectUnion(_)),
|
|
575
|
+
gen1Duration: _json,
|
|
576
|
+
gen1LookbackDuration: _json,
|
|
577
|
+
hardDeleteDefaultDuration: _json,
|
|
578
|
+
lastCacheEvictionInterval: _json,
|
|
579
|
+
logFilter: __expectString,
|
|
580
|
+
logFormat: __expectString,
|
|
581
|
+
maxHttpRequestSize: __expectLong,
|
|
582
|
+
parquetMemCachePruneInterval: _json,
|
|
583
|
+
parquetMemCachePrunePercentage: __limitedParseFloat32,
|
|
584
|
+
parquetMemCacheQueryPathDuration: _json,
|
|
585
|
+
parquetMemCacheSize: (_) => _json(__expectUnion(_)),
|
|
586
|
+
preemptiveCacheAge: _json,
|
|
587
|
+
queryFileLimit: __expectInt32,
|
|
588
|
+
queryLogSize: __expectInt32,
|
|
589
|
+
retentionCheckInterval: _json,
|
|
590
|
+
snapshottedWalFilesToKeep: __expectInt32,
|
|
591
|
+
tableIndexCacheConcurrencyLimit: __expectInt32,
|
|
592
|
+
tableIndexCacheMaxEntries: __expectInt32,
|
|
593
|
+
walMaxWriteBufferSize: __expectInt32,
|
|
594
|
+
walReplayConcurrencyLimit: __expectInt32,
|
|
595
|
+
walReplayFailOnError: __expectBoolean,
|
|
596
|
+
walSnapshotSize: __expectInt32,
|
|
597
|
+
});
|
|
598
|
+
};
|
|
599
|
+
const de_InfluxDBv3EnterpriseParameters = (output, context) => {
|
|
600
|
+
return take(output, {
|
|
601
|
+
catalogSyncInterval: _json,
|
|
602
|
+
compactionCheckInterval: _json,
|
|
603
|
+
compactionCleanupWait: _json,
|
|
604
|
+
compactionGen2Duration: _json,
|
|
605
|
+
compactionMaxNumFilesPerPlan: __expectInt32,
|
|
606
|
+
compactionMultipliers: __expectString,
|
|
607
|
+
compactionRowLimit: __expectInt32,
|
|
608
|
+
dataFusionConfig: __expectString,
|
|
609
|
+
dataFusionMaxParquetFanout: __expectInt32,
|
|
610
|
+
dataFusionNumThreads: __expectInt32,
|
|
611
|
+
dataFusionRuntimeDisableLifoSlot: __expectBoolean,
|
|
612
|
+
dataFusionRuntimeEventInterval: __expectInt32,
|
|
613
|
+
dataFusionRuntimeGlobalQueueInterval: __expectInt32,
|
|
614
|
+
dataFusionRuntimeMaxBlockingThreads: __expectInt32,
|
|
615
|
+
dataFusionRuntimeMaxIoEventsPerTick: __expectInt32,
|
|
616
|
+
dataFusionRuntimeThreadKeepAlive: _json,
|
|
617
|
+
dataFusionRuntimeThreadPriority: __expectInt32,
|
|
618
|
+
dataFusionRuntimeType: __expectString,
|
|
619
|
+
dataFusionUseCachedParquetLoader: __expectBoolean,
|
|
620
|
+
dedicatedCompactor: __expectBoolean,
|
|
621
|
+
deleteGracePeriod: _json,
|
|
622
|
+
disableParquetMemCache: __expectBoolean,
|
|
623
|
+
distinctCacheEvictionInterval: _json,
|
|
624
|
+
distinctValueCacheDisableFromHistory: __expectBoolean,
|
|
625
|
+
execMemPoolBytes: (_) => _json(__expectUnion(_)),
|
|
626
|
+
forceSnapshotMemThreshold: (_) => _json(__expectUnion(_)),
|
|
627
|
+
gen1Duration: _json,
|
|
628
|
+
gen1LookbackDuration: _json,
|
|
629
|
+
hardDeleteDefaultDuration: _json,
|
|
630
|
+
ingestQueryInstances: __expectInt32,
|
|
631
|
+
lastCacheEvictionInterval: _json,
|
|
632
|
+
lastValueCacheDisableFromHistory: __expectBoolean,
|
|
633
|
+
logFilter: __expectString,
|
|
634
|
+
logFormat: __expectString,
|
|
635
|
+
maxHttpRequestSize: __expectLong,
|
|
636
|
+
parquetMemCachePruneInterval: _json,
|
|
637
|
+
parquetMemCachePrunePercentage: __limitedParseFloat32,
|
|
638
|
+
parquetMemCacheQueryPathDuration: _json,
|
|
639
|
+
parquetMemCacheSize: (_) => _json(__expectUnion(_)),
|
|
640
|
+
preemptiveCacheAge: _json,
|
|
641
|
+
queryFileLimit: __expectInt32,
|
|
642
|
+
queryLogSize: __expectInt32,
|
|
643
|
+
queryOnlyInstances: __expectInt32,
|
|
644
|
+
replicationInterval: _json,
|
|
645
|
+
retentionCheckInterval: _json,
|
|
646
|
+
snapshottedWalFilesToKeep: __expectInt32,
|
|
647
|
+
tableIndexCacheConcurrencyLimit: __expectInt32,
|
|
648
|
+
tableIndexCacheMaxEntries: __expectInt32,
|
|
649
|
+
walMaxWriteBufferSize: __expectInt32,
|
|
650
|
+
walReplayConcurrencyLimit: __expectInt32,
|
|
651
|
+
walReplayFailOnError: __expectBoolean,
|
|
652
|
+
walSnapshotSize: __expectInt32,
|
|
653
|
+
});
|
|
654
|
+
};
|
|
655
|
+
const de__Parameters = (output, context) => {
|
|
656
|
+
if (output.InfluxDBv2 != null) {
|
|
657
|
+
return {
|
|
658
|
+
InfluxDBv2: _json(output.InfluxDBv2),
|
|
659
|
+
};
|
|
660
|
+
}
|
|
661
|
+
if (output.InfluxDBv3Core != null) {
|
|
662
|
+
return {
|
|
663
|
+
InfluxDBv3Core: de_InfluxDBv3CoreParameters(output.InfluxDBv3Core, context),
|
|
664
|
+
};
|
|
665
|
+
}
|
|
666
|
+
if (output.InfluxDBv3Enterprise != null) {
|
|
667
|
+
return {
|
|
668
|
+
InfluxDBv3Enterprise: de_InfluxDBv3EnterpriseParameters(output.InfluxDBv3Enterprise, context),
|
|
669
|
+
};
|
|
670
|
+
}
|
|
671
|
+
return { $unknown: Object.entries(output)[0] };
|
|
672
|
+
};
|
|
423
673
|
const deserializeMetadata = (output) => ({
|
|
424
674
|
httpStatusCode: output.statusCode,
|
|
425
675
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -39,14 +39,14 @@ declare const CreateDbClusterCommand_base: {
|
|
|
39
39
|
* const input = { // CreateDbClusterInput
|
|
40
40
|
* name: "STRING_VALUE", // required
|
|
41
41
|
* username: "STRING_VALUE",
|
|
42
|
-
* password: "STRING_VALUE",
|
|
42
|
+
* password: "STRING_VALUE",
|
|
43
43
|
* organization: "STRING_VALUE",
|
|
44
44
|
* bucket: "STRING_VALUE",
|
|
45
45
|
* port: Number("int"),
|
|
46
46
|
* dbParameterGroupIdentifier: "STRING_VALUE",
|
|
47
47
|
* dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge" || "db.influx.24xlarge", // required
|
|
48
48
|
* dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
49
|
-
* allocatedStorage: Number("int"),
|
|
49
|
+
* allocatedStorage: Number("int"),
|
|
50
50
|
* networkType: "IPV4" || "DUAL",
|
|
51
51
|
* publiclyAccessible: true || false,
|
|
52
52
|
* vpcSubnetIds: [ // VpcSubnetIdList // required
|
|
@@ -55,7 +55,7 @@ declare const CreateDbClusterCommand_base: {
|
|
|
55
55
|
* vpcSecurityGroupIds: [ // VpcSecurityGroupIdList // required
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
|
-
* deploymentType: "MULTI_NODE_READ_REPLICAS",
|
|
58
|
+
* deploymentType: "MULTI_NODE_READ_REPLICAS",
|
|
59
59
|
* failoverMode: "AUTOMATIC" || "NO_FAILOVER",
|
|
60
60
|
* logDeliveryConfiguration: { // LogDeliveryConfiguration
|
|
61
61
|
* s3Configuration: { // S3Configuration
|
|
@@ -98,7 +98,10 @@ declare const CreateDbInstanceCommand_base: {
|
|
|
98
98
|
* // },
|
|
99
99
|
* // influxAuthParametersSecretArn: "STRING_VALUE",
|
|
100
100
|
* // dbClusterId: "STRING_VALUE",
|
|
101
|
-
* // instanceMode: "PRIMARY" || "STANDBY" || "REPLICA",
|
|
101
|
+
* // instanceMode: "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
102
|
+
* // instanceModes: [ // InstanceModeList
|
|
103
|
+
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
104
|
+
* // ],
|
|
102
105
|
* // };
|
|
103
106
|
*
|
|
104
107
|
* ```
|
|
@@ -46,22 +46,22 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
46
46
|
* noTasks: true || false,
|
|
47
47
|
* queryConcurrency: Number("int"),
|
|
48
48
|
* queryQueueSize: Number("int"),
|
|
49
|
-
* tracingType: "log" || "jaeger",
|
|
49
|
+
* tracingType: "log" || "jaeger" || "disabled",
|
|
50
50
|
* metricsDisabled: true || false,
|
|
51
51
|
* httpIdleTimeout: { // Duration
|
|
52
|
-
* durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
52
|
+
* durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
53
53
|
* value: Number("long"), // required
|
|
54
54
|
* },
|
|
55
55
|
* httpReadHeaderTimeout: {
|
|
56
|
-
* durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
56
|
+
* durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
57
57
|
* value: Number("long"), // required
|
|
58
58
|
* },
|
|
59
59
|
* httpReadTimeout: {
|
|
60
|
-
* durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
60
|
+
* durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
61
61
|
* value: Number("long"), // required
|
|
62
62
|
* },
|
|
63
63
|
* httpWriteTimeout: {
|
|
64
|
-
* durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
64
|
+
* durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
65
65
|
* value: Number("long"), // required
|
|
66
66
|
* },
|
|
67
67
|
* influxqlMaxSelectBuckets: Number("long"),
|
|
@@ -76,7 +76,7 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
76
76
|
* storageCacheMaxMemorySize: Number("long"),
|
|
77
77
|
* storageCacheSnapshotMemorySize: Number("long"),
|
|
78
78
|
* storageCacheSnapshotWriteColdDuration: {
|
|
79
|
-
* durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
79
|
+
* durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
80
80
|
* value: Number("long"), // required
|
|
81
81
|
* },
|
|
82
82
|
* storageCompactFullWriteColdDuration: "<Duration>",
|
|
@@ -91,6 +91,116 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
91
91
|
* storageWalMaxWriteDelay: "<Duration>",
|
|
92
92
|
* uiDisabled: true || false,
|
|
93
93
|
* },
|
|
94
|
+
* InfluxDBv3Core: { // InfluxDBv3CoreParameters
|
|
95
|
+
* queryFileLimit: Number("int"),
|
|
96
|
+
* queryLogSize: Number("int"),
|
|
97
|
+
* logFilter: "STRING_VALUE",
|
|
98
|
+
* logFormat: "full",
|
|
99
|
+
* dataFusionNumThreads: Number("int"),
|
|
100
|
+
* dataFusionRuntimeType: "multi-thread" || "multi-thread-alt",
|
|
101
|
+
* dataFusionRuntimeDisableLifoSlot: true || false,
|
|
102
|
+
* dataFusionRuntimeEventInterval: Number("int"),
|
|
103
|
+
* dataFusionRuntimeGlobalQueueInterval: Number("int"),
|
|
104
|
+
* dataFusionRuntimeMaxBlockingThreads: Number("int"),
|
|
105
|
+
* dataFusionRuntimeMaxIoEventsPerTick: Number("int"),
|
|
106
|
+
* dataFusionRuntimeThreadKeepAlive: "<Duration>",
|
|
107
|
+
* dataFusionRuntimeThreadPriority: Number("int"),
|
|
108
|
+
* dataFusionMaxParquetFanout: Number("int"),
|
|
109
|
+
* dataFusionUseCachedParquetLoader: true || false,
|
|
110
|
+
* dataFusionConfig: "STRING_VALUE",
|
|
111
|
+
* maxHttpRequestSize: Number("long"),
|
|
112
|
+
* forceSnapshotMemThreshold: { // PercentOrAbsoluteLong Union: only one key present
|
|
113
|
+
* percent: "STRING_VALUE",
|
|
114
|
+
* absolute: Number("long"),
|
|
115
|
+
* },
|
|
116
|
+
* walSnapshotSize: Number("int"),
|
|
117
|
+
* walMaxWriteBufferSize: Number("int"),
|
|
118
|
+
* snapshottedWalFilesToKeep: Number("int"),
|
|
119
|
+
* preemptiveCacheAge: "<Duration>",
|
|
120
|
+
* parquetMemCachePrunePercentage: Number("float"),
|
|
121
|
+
* parquetMemCachePruneInterval: "<Duration>",
|
|
122
|
+
* disableParquetMemCache: true || false,
|
|
123
|
+
* parquetMemCacheQueryPathDuration: "<Duration>",
|
|
124
|
+
* lastCacheEvictionInterval: "<Duration>",
|
|
125
|
+
* distinctCacheEvictionInterval: "<Duration>",
|
|
126
|
+
* gen1Duration: "<Duration>",
|
|
127
|
+
* execMemPoolBytes: {// Union: only one key present
|
|
128
|
+
* percent: "STRING_VALUE",
|
|
129
|
+
* absolute: Number("long"),
|
|
130
|
+
* },
|
|
131
|
+
* parquetMemCacheSize: {// Union: only one key present
|
|
132
|
+
* percent: "STRING_VALUE",
|
|
133
|
+
* absolute: Number("long"),
|
|
134
|
+
* },
|
|
135
|
+
* walReplayFailOnError: true || false,
|
|
136
|
+
* walReplayConcurrencyLimit: Number("int"),
|
|
137
|
+
* tableIndexCacheMaxEntries: Number("int"),
|
|
138
|
+
* tableIndexCacheConcurrencyLimit: Number("int"),
|
|
139
|
+
* gen1LookbackDuration: "<Duration>",
|
|
140
|
+
* retentionCheckInterval: "<Duration>",
|
|
141
|
+
* deleteGracePeriod: "<Duration>",
|
|
142
|
+
* hardDeleteDefaultDuration: "<Duration>",
|
|
143
|
+
* },
|
|
144
|
+
* InfluxDBv3Enterprise: { // InfluxDBv3EnterpriseParameters
|
|
145
|
+
* queryFileLimit: Number("int"),
|
|
146
|
+
* queryLogSize: Number("int"),
|
|
147
|
+
* logFilter: "STRING_VALUE",
|
|
148
|
+
* logFormat: "full",
|
|
149
|
+
* dataFusionNumThreads: Number("int"),
|
|
150
|
+
* dataFusionRuntimeType: "multi-thread" || "multi-thread-alt",
|
|
151
|
+
* dataFusionRuntimeDisableLifoSlot: true || false,
|
|
152
|
+
* dataFusionRuntimeEventInterval: Number("int"),
|
|
153
|
+
* dataFusionRuntimeGlobalQueueInterval: Number("int"),
|
|
154
|
+
* dataFusionRuntimeMaxBlockingThreads: Number("int"),
|
|
155
|
+
* dataFusionRuntimeMaxIoEventsPerTick: Number("int"),
|
|
156
|
+
* dataFusionRuntimeThreadKeepAlive: "<Duration>",
|
|
157
|
+
* dataFusionRuntimeThreadPriority: Number("int"),
|
|
158
|
+
* dataFusionMaxParquetFanout: Number("int"),
|
|
159
|
+
* dataFusionUseCachedParquetLoader: true || false,
|
|
160
|
+
* dataFusionConfig: "STRING_VALUE",
|
|
161
|
+
* maxHttpRequestSize: Number("long"),
|
|
162
|
+
* forceSnapshotMemThreshold: {// Union: only one key present
|
|
163
|
+
* percent: "STRING_VALUE",
|
|
164
|
+
* absolute: Number("long"),
|
|
165
|
+
* },
|
|
166
|
+
* walSnapshotSize: Number("int"),
|
|
167
|
+
* walMaxWriteBufferSize: Number("int"),
|
|
168
|
+
* snapshottedWalFilesToKeep: Number("int"),
|
|
169
|
+
* preemptiveCacheAge: "<Duration>",
|
|
170
|
+
* parquetMemCachePrunePercentage: Number("float"),
|
|
171
|
+
* parquetMemCachePruneInterval: "<Duration>",
|
|
172
|
+
* disableParquetMemCache: true || false,
|
|
173
|
+
* parquetMemCacheQueryPathDuration: "<Duration>",
|
|
174
|
+
* lastCacheEvictionInterval: "<Duration>",
|
|
175
|
+
* distinctCacheEvictionInterval: "<Duration>",
|
|
176
|
+
* gen1Duration: "<Duration>",
|
|
177
|
+
* execMemPoolBytes: {// Union: only one key present
|
|
178
|
+
* percent: "STRING_VALUE",
|
|
179
|
+
* absolute: Number("long"),
|
|
180
|
+
* },
|
|
181
|
+
* parquetMemCacheSize: "<PercentOrAbsoluteLong>",
|
|
182
|
+
* walReplayFailOnError: true || false,
|
|
183
|
+
* walReplayConcurrencyLimit: Number("int"),
|
|
184
|
+
* tableIndexCacheMaxEntries: Number("int"),
|
|
185
|
+
* tableIndexCacheConcurrencyLimit: Number("int"),
|
|
186
|
+
* gen1LookbackDuration: "<Duration>",
|
|
187
|
+
* retentionCheckInterval: "<Duration>",
|
|
188
|
+
* deleteGracePeriod: "<Duration>",
|
|
189
|
+
* hardDeleteDefaultDuration: "<Duration>",
|
|
190
|
+
* ingestQueryInstances: Number("int"), // required
|
|
191
|
+
* queryOnlyInstances: Number("int"), // required
|
|
192
|
+
* dedicatedCompactor: true || false, // required
|
|
193
|
+
* compactionRowLimit: Number("int"),
|
|
194
|
+
* compactionMaxNumFilesPerPlan: Number("int"),
|
|
195
|
+
* compactionGen2Duration: "<Duration>",
|
|
196
|
+
* compactionMultipliers: "STRING_VALUE",
|
|
197
|
+
* compactionCleanupWait: "<Duration>",
|
|
198
|
+
* compactionCheckInterval: "<Duration>",
|
|
199
|
+
* lastValueCacheDisableFromHistory: true || false,
|
|
200
|
+
* distinctValueCacheDisableFromHistory: true || false,
|
|
201
|
+
* replicationInterval: "<Duration>",
|
|
202
|
+
* catalogSyncInterval: "<Duration>",
|
|
203
|
+
* },
|
|
94
204
|
* },
|
|
95
205
|
* tags: { // RequestTagMap
|
|
96
206
|
* "<keys>": "STRING_VALUE",
|
|
@@ -110,22 +220,22 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
110
220
|
* // noTasks: true || false,
|
|
111
221
|
* // queryConcurrency: Number("int"),
|
|
112
222
|
* // queryQueueSize: Number("int"),
|
|
113
|
-
* // tracingType: "log" || "jaeger",
|
|
223
|
+
* // tracingType: "log" || "jaeger" || "disabled",
|
|
114
224
|
* // metricsDisabled: true || false,
|
|
115
225
|
* // httpIdleTimeout: { // Duration
|
|
116
|
-
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
226
|
+
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
117
227
|
* // value: Number("long"), // required
|
|
118
228
|
* // },
|
|
119
229
|
* // httpReadHeaderTimeout: {
|
|
120
|
-
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
230
|
+
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
121
231
|
* // value: Number("long"), // required
|
|
122
232
|
* // },
|
|
123
233
|
* // httpReadTimeout: {
|
|
124
|
-
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
234
|
+
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
125
235
|
* // value: Number("long"), // required
|
|
126
236
|
* // },
|
|
127
237
|
* // httpWriteTimeout: {
|
|
128
|
-
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
238
|
+
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
129
239
|
* // value: Number("long"), // required
|
|
130
240
|
* // },
|
|
131
241
|
* // influxqlMaxSelectBuckets: Number("long"),
|
|
@@ -140,7 +250,7 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
140
250
|
* // storageCacheMaxMemorySize: Number("long"),
|
|
141
251
|
* // storageCacheSnapshotMemorySize: Number("long"),
|
|
142
252
|
* // storageCacheSnapshotWriteColdDuration: {
|
|
143
|
-
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds", // required
|
|
253
|
+
* // durationType: "hours" || "minutes" || "seconds" || "milliseconds" || "days", // required
|
|
144
254
|
* // value: Number("long"), // required
|
|
145
255
|
* // },
|
|
146
256
|
* // storageCompactFullWriteColdDuration: "<Duration>",
|
|
@@ -155,6 +265,116 @@ declare const CreateDbParameterGroupCommand_base: {
|
|
|
155
265
|
* // storageWalMaxWriteDelay: "<Duration>",
|
|
156
266
|
* // uiDisabled: true || false,
|
|
157
267
|
* // },
|
|
268
|
+
* // InfluxDBv3Core: { // InfluxDBv3CoreParameters
|
|
269
|
+
* // queryFileLimit: Number("int"),
|
|
270
|
+
* // queryLogSize: Number("int"),
|
|
271
|
+
* // logFilter: "STRING_VALUE",
|
|
272
|
+
* // logFormat: "full",
|
|
273
|
+
* // dataFusionNumThreads: Number("int"),
|
|
274
|
+
* // dataFusionRuntimeType: "multi-thread" || "multi-thread-alt",
|
|
275
|
+
* // dataFusionRuntimeDisableLifoSlot: true || false,
|
|
276
|
+
* // dataFusionRuntimeEventInterval: Number("int"),
|
|
277
|
+
* // dataFusionRuntimeGlobalQueueInterval: Number("int"),
|
|
278
|
+
* // dataFusionRuntimeMaxBlockingThreads: Number("int"),
|
|
279
|
+
* // dataFusionRuntimeMaxIoEventsPerTick: Number("int"),
|
|
280
|
+
* // dataFusionRuntimeThreadKeepAlive: "<Duration>",
|
|
281
|
+
* // dataFusionRuntimeThreadPriority: Number("int"),
|
|
282
|
+
* // dataFusionMaxParquetFanout: Number("int"),
|
|
283
|
+
* // dataFusionUseCachedParquetLoader: true || false,
|
|
284
|
+
* // dataFusionConfig: "STRING_VALUE",
|
|
285
|
+
* // maxHttpRequestSize: Number("long"),
|
|
286
|
+
* // forceSnapshotMemThreshold: { // PercentOrAbsoluteLong Union: only one key present
|
|
287
|
+
* // percent: "STRING_VALUE",
|
|
288
|
+
* // absolute: Number("long"),
|
|
289
|
+
* // },
|
|
290
|
+
* // walSnapshotSize: Number("int"),
|
|
291
|
+
* // walMaxWriteBufferSize: Number("int"),
|
|
292
|
+
* // snapshottedWalFilesToKeep: Number("int"),
|
|
293
|
+
* // preemptiveCacheAge: "<Duration>",
|
|
294
|
+
* // parquetMemCachePrunePercentage: Number("float"),
|
|
295
|
+
* // parquetMemCachePruneInterval: "<Duration>",
|
|
296
|
+
* // disableParquetMemCache: true || false,
|
|
297
|
+
* // parquetMemCacheQueryPathDuration: "<Duration>",
|
|
298
|
+
* // lastCacheEvictionInterval: "<Duration>",
|
|
299
|
+
* // distinctCacheEvictionInterval: "<Duration>",
|
|
300
|
+
* // gen1Duration: "<Duration>",
|
|
301
|
+
* // execMemPoolBytes: {// Union: only one key present
|
|
302
|
+
* // percent: "STRING_VALUE",
|
|
303
|
+
* // absolute: Number("long"),
|
|
304
|
+
* // },
|
|
305
|
+
* // parquetMemCacheSize: {// Union: only one key present
|
|
306
|
+
* // percent: "STRING_VALUE",
|
|
307
|
+
* // absolute: Number("long"),
|
|
308
|
+
* // },
|
|
309
|
+
* // walReplayFailOnError: true || false,
|
|
310
|
+
* // walReplayConcurrencyLimit: Number("int"),
|
|
311
|
+
* // tableIndexCacheMaxEntries: Number("int"),
|
|
312
|
+
* // tableIndexCacheConcurrencyLimit: Number("int"),
|
|
313
|
+
* // gen1LookbackDuration: "<Duration>",
|
|
314
|
+
* // retentionCheckInterval: "<Duration>",
|
|
315
|
+
* // deleteGracePeriod: "<Duration>",
|
|
316
|
+
* // hardDeleteDefaultDuration: "<Duration>",
|
|
317
|
+
* // },
|
|
318
|
+
* // InfluxDBv3Enterprise: { // InfluxDBv3EnterpriseParameters
|
|
319
|
+
* // queryFileLimit: Number("int"),
|
|
320
|
+
* // queryLogSize: Number("int"),
|
|
321
|
+
* // logFilter: "STRING_VALUE",
|
|
322
|
+
* // logFormat: "full",
|
|
323
|
+
* // dataFusionNumThreads: Number("int"),
|
|
324
|
+
* // dataFusionRuntimeType: "multi-thread" || "multi-thread-alt",
|
|
325
|
+
* // dataFusionRuntimeDisableLifoSlot: true || false,
|
|
326
|
+
* // dataFusionRuntimeEventInterval: Number("int"),
|
|
327
|
+
* // dataFusionRuntimeGlobalQueueInterval: Number("int"),
|
|
328
|
+
* // dataFusionRuntimeMaxBlockingThreads: Number("int"),
|
|
329
|
+
* // dataFusionRuntimeMaxIoEventsPerTick: Number("int"),
|
|
330
|
+
* // dataFusionRuntimeThreadKeepAlive: "<Duration>",
|
|
331
|
+
* // dataFusionRuntimeThreadPriority: Number("int"),
|
|
332
|
+
* // dataFusionMaxParquetFanout: Number("int"),
|
|
333
|
+
* // dataFusionUseCachedParquetLoader: true || false,
|
|
334
|
+
* // dataFusionConfig: "STRING_VALUE",
|
|
335
|
+
* // maxHttpRequestSize: Number("long"),
|
|
336
|
+
* // forceSnapshotMemThreshold: {// Union: only one key present
|
|
337
|
+
* // percent: "STRING_VALUE",
|
|
338
|
+
* // absolute: Number("long"),
|
|
339
|
+
* // },
|
|
340
|
+
* // walSnapshotSize: Number("int"),
|
|
341
|
+
* // walMaxWriteBufferSize: Number("int"),
|
|
342
|
+
* // snapshottedWalFilesToKeep: Number("int"),
|
|
343
|
+
* // preemptiveCacheAge: "<Duration>",
|
|
344
|
+
* // parquetMemCachePrunePercentage: Number("float"),
|
|
345
|
+
* // parquetMemCachePruneInterval: "<Duration>",
|
|
346
|
+
* // disableParquetMemCache: true || false,
|
|
347
|
+
* // parquetMemCacheQueryPathDuration: "<Duration>",
|
|
348
|
+
* // lastCacheEvictionInterval: "<Duration>",
|
|
349
|
+
* // distinctCacheEvictionInterval: "<Duration>",
|
|
350
|
+
* // gen1Duration: "<Duration>",
|
|
351
|
+
* // execMemPoolBytes: {// Union: only one key present
|
|
352
|
+
* // percent: "STRING_VALUE",
|
|
353
|
+
* // absolute: Number("long"),
|
|
354
|
+
* // },
|
|
355
|
+
* // parquetMemCacheSize: "<PercentOrAbsoluteLong>",
|
|
356
|
+
* // walReplayFailOnError: true || false,
|
|
357
|
+
* // walReplayConcurrencyLimit: Number("int"),
|
|
358
|
+
* // tableIndexCacheMaxEntries: Number("int"),
|
|
359
|
+
* // tableIndexCacheConcurrencyLimit: Number("int"),
|
|
360
|
+
* // gen1LookbackDuration: "<Duration>",
|
|
361
|
+
* // retentionCheckInterval: "<Duration>",
|
|
362
|
+
* // deleteGracePeriod: "<Duration>",
|
|
363
|
+
* // hardDeleteDefaultDuration: "<Duration>",
|
|
364
|
+
* // ingestQueryInstances: Number("int"), // required
|
|
365
|
+
* // queryOnlyInstances: Number("int"), // required
|
|
366
|
+
* // dedicatedCompactor: true || false, // required
|
|
367
|
+
* // compactionRowLimit: Number("int"),
|
|
368
|
+
* // compactionMaxNumFilesPerPlan: Number("int"),
|
|
369
|
+
* // compactionGen2Duration: "<Duration>",
|
|
370
|
+
* // compactionMultipliers: "STRING_VALUE",
|
|
371
|
+
* // compactionCleanupWait: "<Duration>",
|
|
372
|
+
* // compactionCheckInterval: "<Duration>",
|
|
373
|
+
* // lastValueCacheDisableFromHistory: true || false,
|
|
374
|
+
* // distinctValueCacheDisableFromHistory: true || false,
|
|
375
|
+
* // replicationInterval: "<Duration>",
|
|
376
|
+
* // catalogSyncInterval: "<Duration>",
|
|
377
|
+
* // },
|
|
158
378
|
* // },
|
|
159
379
|
* // };
|
|
160
380
|
*
|
|
@@ -71,7 +71,10 @@ declare const DeleteDbInstanceCommand_base: {
|
|
|
71
71
|
* // },
|
|
72
72
|
* // influxAuthParametersSecretArn: "STRING_VALUE",
|
|
73
73
|
* // dbClusterId: "STRING_VALUE",
|
|
74
|
-
* // instanceMode: "PRIMARY" || "STANDBY" || "REPLICA",
|
|
74
|
+
* // instanceMode: "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
75
|
+
* // instanceModes: [ // InstanceModeList
|
|
76
|
+
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
77
|
+
* // ],
|
|
75
78
|
* // };
|
|
76
79
|
*
|
|
77
80
|
* ```
|
|
@@ -54,6 +54,7 @@ declare const GetDbClusterCommand_base: {
|
|
|
54
54
|
* // networkType: "IPV4" || "DUAL",
|
|
55
55
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
56
56
|
* // allocatedStorage: Number("int"),
|
|
57
|
+
* // engineType: "INFLUXDB_V2" || "INFLUXDB_V3_CORE" || "INFLUXDB_V3_ENTERPRISE",
|
|
57
58
|
* // publiclyAccessible: true || false,
|
|
58
59
|
* // dbParameterGroupIdentifier: "STRING_VALUE",
|
|
59
60
|
* // logDeliveryConfiguration: { // LogDeliveryConfiguration
|