@aws-sdk/client-timestream-influxdb 3.934.0 → 3.936.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/index.js +95 -94
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +94 -0
- package/dist-es/models/errors.js +99 -0
- package/dist-es/models/models_0.js +1 -193
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +222 -0
- package/dist-types/models/errors.d.ts +119 -0
- package/dist-types/models/models_0.d.ts +1 -340
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +115 -0
- package/dist-types/ts3.4/models/errors.d.ts +58 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -172
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,94 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* <p>The request conflicts with an existing resource in Timestream for InfluxDB.</p>
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
export declare class ConflictException extends __BaseException {
|
|
20
|
-
readonly name: "ConflictException";
|
|
21
|
-
readonly $fault: "client";
|
|
22
|
-
/**
|
|
23
|
-
* <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
resourceId: string | undefined;
|
|
27
|
-
/**
|
|
28
|
-
* <p>The type of Timestream for InfluxDB resource associated with the request.</p>
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
resourceType: string | undefined;
|
|
32
|
-
/**
|
|
33
|
-
* @internal
|
|
34
|
-
*/
|
|
35
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* @public
|
|
39
|
-
* @enum
|
|
40
|
-
*/
|
|
41
|
-
export declare const DbInstanceType: {
|
|
42
|
-
readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
|
|
43
|
-
readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
|
|
44
|
-
readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge";
|
|
45
|
-
readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
|
|
46
|
-
readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
|
|
47
|
-
readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
|
|
48
|
-
readonly DB_INFLUX_LARGE: "db.influx.large";
|
|
49
|
-
readonly DB_INFLUX_MEDIUM: "db.influx.medium";
|
|
50
|
-
readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
|
|
51
|
-
};
|
|
52
|
-
/**
|
|
53
|
-
* @public
|
|
54
|
-
*/
|
|
55
|
-
export type DbInstanceType = (typeof DbInstanceType)[keyof typeof DbInstanceType];
|
|
56
|
-
/**
|
|
57
|
-
* @public
|
|
58
|
-
* @enum
|
|
59
|
-
*/
|
|
60
|
-
export declare const DbStorageType: {
|
|
61
|
-
readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
|
|
62
|
-
readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
|
|
63
|
-
readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
|
|
64
|
-
};
|
|
65
|
-
/**
|
|
66
|
-
* @public
|
|
67
|
-
*/
|
|
68
|
-
export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
|
|
69
|
-
/**
|
|
70
|
-
* @public
|
|
71
|
-
* @enum
|
|
72
|
-
*/
|
|
73
|
-
export declare const ClusterDeploymentType: {
|
|
74
|
-
readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* @public
|
|
78
|
-
*/
|
|
79
|
-
export type ClusterDeploymentType = (typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType];
|
|
80
|
-
/**
|
|
81
|
-
* @public
|
|
82
|
-
* @enum
|
|
83
|
-
*/
|
|
84
|
-
export declare const FailoverMode: {
|
|
85
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
86
|
-
readonly NO_FAILOVER: "NO_FAILOVER";
|
|
87
|
-
};
|
|
88
|
-
/**
|
|
89
|
-
* @public
|
|
90
|
-
*/
|
|
91
|
-
export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
|
|
1
|
+
import { ClusterDeploymentType, ClusterStatus, DataFusionRuntimeType, DbInstanceType, DbStorageType, DeploymentType, DurationType, EngineType, FailoverMode, InstanceMode, LogFormats, LogLevel, NetworkType, Status, TracingType } from "./enums";
|
|
92
2
|
/**
|
|
93
3
|
* <p>Configuration for S3 bucket log delivery.</p>
|
|
94
4
|
* @public
|
|
@@ -116,18 +26,6 @@ export interface LogDeliveryConfiguration {
|
|
|
116
26
|
*/
|
|
117
27
|
s3Configuration: S3Configuration | undefined;
|
|
118
28
|
}
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
* @enum
|
|
122
|
-
*/
|
|
123
|
-
export declare const NetworkType: {
|
|
124
|
-
readonly DUAL: "DUAL";
|
|
125
|
-
readonly IPV4: "IPV4";
|
|
126
|
-
};
|
|
127
|
-
/**
|
|
128
|
-
* @public
|
|
129
|
-
*/
|
|
130
|
-
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
131
29
|
/**
|
|
132
30
|
* @public
|
|
133
31
|
*/
|
|
@@ -240,23 +138,6 @@ export interface CreateDbClusterInput {
|
|
|
240
138
|
*/
|
|
241
139
|
tags?: Record<string, string> | undefined;
|
|
242
140
|
}
|
|
243
|
-
/**
|
|
244
|
-
* @public
|
|
245
|
-
* @enum
|
|
246
|
-
*/
|
|
247
|
-
export declare const ClusterStatus: {
|
|
248
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
249
|
-
readonly CREATING: "CREATING";
|
|
250
|
-
readonly DELETED: "DELETED";
|
|
251
|
-
readonly DELETING: "DELETING";
|
|
252
|
-
readonly FAILED: "FAILED";
|
|
253
|
-
readonly MAINTENANCE: "MAINTENANCE";
|
|
254
|
-
readonly UPDATING: "UPDATING";
|
|
255
|
-
};
|
|
256
|
-
/**
|
|
257
|
-
* @public
|
|
258
|
-
*/
|
|
259
|
-
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
260
141
|
/**
|
|
261
142
|
* @public
|
|
262
143
|
*/
|
|
@@ -272,100 +153,6 @@ export interface CreateDbClusterOutput {
|
|
|
272
153
|
*/
|
|
273
154
|
dbClusterStatus?: ClusterStatus | undefined;
|
|
274
155
|
}
|
|
275
|
-
/**
|
|
276
|
-
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
277
|
-
* @public
|
|
278
|
-
*/
|
|
279
|
-
export declare class InternalServerException extends __BaseException {
|
|
280
|
-
readonly name: "InternalServerException";
|
|
281
|
-
readonly $fault: "server";
|
|
282
|
-
$retryable: {};
|
|
283
|
-
/**
|
|
284
|
-
* @internal
|
|
285
|
-
*/
|
|
286
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
287
|
-
}
|
|
288
|
-
/**
|
|
289
|
-
* <p>The requested resource was not found or does not exist.</p>
|
|
290
|
-
* @public
|
|
291
|
-
*/
|
|
292
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
293
|
-
readonly name: "ResourceNotFoundException";
|
|
294
|
-
readonly $fault: "client";
|
|
295
|
-
/**
|
|
296
|
-
* <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
|
|
297
|
-
* @public
|
|
298
|
-
*/
|
|
299
|
-
resourceId: string | undefined;
|
|
300
|
-
/**
|
|
301
|
-
* <p>The type of Timestream for InfluxDB resource associated with the request.</p>
|
|
302
|
-
* @public
|
|
303
|
-
*/
|
|
304
|
-
resourceType: string | undefined;
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
309
|
-
}
|
|
310
|
-
/**
|
|
311
|
-
* <p>The request exceeds the service quota.</p>
|
|
312
|
-
* @public
|
|
313
|
-
*/
|
|
314
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
315
|
-
readonly name: "ServiceQuotaExceededException";
|
|
316
|
-
readonly $fault: "client";
|
|
317
|
-
/**
|
|
318
|
-
* @internal
|
|
319
|
-
*/
|
|
320
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
321
|
-
}
|
|
322
|
-
/**
|
|
323
|
-
* <p>The request was denied due to request throttling.</p>
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
export declare class ThrottlingException extends __BaseException {
|
|
327
|
-
readonly name: "ThrottlingException";
|
|
328
|
-
readonly $fault: "client";
|
|
329
|
-
$retryable: {};
|
|
330
|
-
/**
|
|
331
|
-
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
332
|
-
* @public
|
|
333
|
-
*/
|
|
334
|
-
retryAfterSeconds?: number | undefined;
|
|
335
|
-
/**
|
|
336
|
-
* @internal
|
|
337
|
-
*/
|
|
338
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
339
|
-
}
|
|
340
|
-
/**
|
|
341
|
-
* @public
|
|
342
|
-
* @enum
|
|
343
|
-
*/
|
|
344
|
-
export declare const ValidationExceptionReason: {
|
|
345
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
346
|
-
readonly OTHER: "OTHER";
|
|
347
|
-
};
|
|
348
|
-
/**
|
|
349
|
-
* @public
|
|
350
|
-
*/
|
|
351
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
352
|
-
/**
|
|
353
|
-
* <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
|
|
354
|
-
* @public
|
|
355
|
-
*/
|
|
356
|
-
export declare class ValidationException extends __BaseException {
|
|
357
|
-
readonly name: "ValidationException";
|
|
358
|
-
readonly $fault: "client";
|
|
359
|
-
/**
|
|
360
|
-
* <p>The reason that validation failed.</p>
|
|
361
|
-
* @public
|
|
362
|
-
*/
|
|
363
|
-
reason: ValidationExceptionReason | undefined;
|
|
364
|
-
/**
|
|
365
|
-
* @internal
|
|
366
|
-
*/
|
|
367
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
368
|
-
}
|
|
369
156
|
/**
|
|
370
157
|
* @public
|
|
371
158
|
*/
|
|
@@ -396,19 +183,6 @@ export interface GetDbClusterInput {
|
|
|
396
183
|
*/
|
|
397
184
|
dbClusterId: string | undefined;
|
|
398
185
|
}
|
|
399
|
-
/**
|
|
400
|
-
* @public
|
|
401
|
-
* @enum
|
|
402
|
-
*/
|
|
403
|
-
export declare const EngineType: {
|
|
404
|
-
readonly INFLUXDB_V2: "INFLUXDB_V2";
|
|
405
|
-
readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE";
|
|
406
|
-
readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE";
|
|
407
|
-
};
|
|
408
|
-
/**
|
|
409
|
-
* @public
|
|
410
|
-
*/
|
|
411
|
-
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
412
186
|
/**
|
|
413
187
|
* @public
|
|
414
188
|
*/
|
|
@@ -636,55 +410,6 @@ export interface ListDbInstancesForClusterInput {
|
|
|
636
410
|
*/
|
|
637
411
|
maxResults?: number | undefined;
|
|
638
412
|
}
|
|
639
|
-
/**
|
|
640
|
-
* @public
|
|
641
|
-
* @enum
|
|
642
|
-
*/
|
|
643
|
-
export declare const DeploymentType: {
|
|
644
|
-
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
645
|
-
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
646
|
-
};
|
|
647
|
-
/**
|
|
648
|
-
* @public
|
|
649
|
-
*/
|
|
650
|
-
export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType];
|
|
651
|
-
/**
|
|
652
|
-
* @public
|
|
653
|
-
* @enum
|
|
654
|
-
*/
|
|
655
|
-
export declare const InstanceMode: {
|
|
656
|
-
readonly COMPACT: "COMPACT";
|
|
657
|
-
readonly INGEST: "INGEST";
|
|
658
|
-
readonly PRIMARY: "PRIMARY";
|
|
659
|
-
readonly PROCESS: "PROCESS";
|
|
660
|
-
readonly QUERY: "QUERY";
|
|
661
|
-
readonly REPLICA: "REPLICA";
|
|
662
|
-
readonly STANDBY: "STANDBY";
|
|
663
|
-
};
|
|
664
|
-
/**
|
|
665
|
-
* @public
|
|
666
|
-
*/
|
|
667
|
-
export type InstanceMode = (typeof InstanceMode)[keyof typeof InstanceMode];
|
|
668
|
-
/**
|
|
669
|
-
* @public
|
|
670
|
-
* @enum
|
|
671
|
-
*/
|
|
672
|
-
export declare const Status: {
|
|
673
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
674
|
-
readonly CREATING: "CREATING";
|
|
675
|
-
readonly DELETED: "DELETED";
|
|
676
|
-
readonly DELETING: "DELETING";
|
|
677
|
-
readonly FAILED: "FAILED";
|
|
678
|
-
readonly MAINTENANCE: "MAINTENANCE";
|
|
679
|
-
readonly MODIFYING: "MODIFYING";
|
|
680
|
-
readonly UPDATING: "UPDATING";
|
|
681
|
-
readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
|
|
682
|
-
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
683
|
-
};
|
|
684
|
-
/**
|
|
685
|
-
* @public
|
|
686
|
-
*/
|
|
687
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
688
413
|
/**
|
|
689
414
|
* <p>Contains a summary of a DB instance belonging to a DB cluster.</p>
|
|
690
415
|
* @public
|
|
@@ -1548,21 +1273,6 @@ export interface UpdateDbInstanceOutput {
|
|
|
1548
1273
|
*/
|
|
1549
1274
|
instanceModes?: InstanceMode[] | undefined;
|
|
1550
1275
|
}
|
|
1551
|
-
/**
|
|
1552
|
-
* @public
|
|
1553
|
-
* @enum
|
|
1554
|
-
*/
|
|
1555
|
-
export declare const DurationType: {
|
|
1556
|
-
readonly DAYS: "days";
|
|
1557
|
-
readonly HOURS: "hours";
|
|
1558
|
-
readonly MILLISECONDS: "milliseconds";
|
|
1559
|
-
readonly MINUTES: "minutes";
|
|
1560
|
-
readonly SECONDS: "seconds";
|
|
1561
|
-
};
|
|
1562
|
-
/**
|
|
1563
|
-
* @public
|
|
1564
|
-
*/
|
|
1565
|
-
export type DurationType = (typeof DurationType)[keyof typeof DurationType];
|
|
1566
1276
|
/**
|
|
1567
1277
|
* <p>Duration for InfluxDB parameters in Timestream for InfluxDB.</p>
|
|
1568
1278
|
* @public
|
|
@@ -1579,32 +1289,6 @@ export interface Duration {
|
|
|
1579
1289
|
*/
|
|
1580
1290
|
value: number | undefined;
|
|
1581
1291
|
}
|
|
1582
|
-
/**
|
|
1583
|
-
* @public
|
|
1584
|
-
* @enum
|
|
1585
|
-
*/
|
|
1586
|
-
export declare const LogLevel: {
|
|
1587
|
-
readonly DEBUG: "debug";
|
|
1588
|
-
readonly ERROR: "error";
|
|
1589
|
-
readonly INFO: "info";
|
|
1590
|
-
};
|
|
1591
|
-
/**
|
|
1592
|
-
* @public
|
|
1593
|
-
*/
|
|
1594
|
-
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
1595
|
-
/**
|
|
1596
|
-
* @public
|
|
1597
|
-
* @enum
|
|
1598
|
-
*/
|
|
1599
|
-
export declare const TracingType: {
|
|
1600
|
-
readonly DISABLED: "disabled";
|
|
1601
|
-
readonly JAEGER: "jaeger";
|
|
1602
|
-
readonly LOG: "log";
|
|
1603
|
-
};
|
|
1604
|
-
/**
|
|
1605
|
-
* @public
|
|
1606
|
-
*/
|
|
1607
|
-
export type TracingType = (typeof TracingType)[keyof typeof TracingType];
|
|
1608
1292
|
/**
|
|
1609
1293
|
* <p>All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.</p>
|
|
1610
1294
|
* @public
|
|
@@ -1814,18 +1498,6 @@ export interface InfluxDBv2Parameters {
|
|
|
1814
1498
|
*/
|
|
1815
1499
|
uiDisabled?: boolean | undefined;
|
|
1816
1500
|
}
|
|
1817
|
-
/**
|
|
1818
|
-
* @public
|
|
1819
|
-
* @enum
|
|
1820
|
-
*/
|
|
1821
|
-
export declare const DataFusionRuntimeType: {
|
|
1822
|
-
readonly MULTI_THREAD: "multi-thread";
|
|
1823
|
-
readonly MULTI_THREAD_ALT: "multi-thread-alt";
|
|
1824
|
-
};
|
|
1825
|
-
/**
|
|
1826
|
-
* @public
|
|
1827
|
-
*/
|
|
1828
|
-
export type DataFusionRuntimeType = (typeof DataFusionRuntimeType)[keyof typeof DataFusionRuntimeType];
|
|
1829
1501
|
/**
|
|
1830
1502
|
* <p>Percent or Absolute Long for InfluxDB parameters</p>
|
|
1831
1503
|
* @public
|
|
@@ -1871,17 +1543,6 @@ export declare namespace PercentOrAbsoluteLong {
|
|
|
1871
1543
|
_: (name: string, value: any) => T;
|
|
1872
1544
|
}
|
|
1873
1545
|
}
|
|
1874
|
-
/**
|
|
1875
|
-
* @public
|
|
1876
|
-
* @enum
|
|
1877
|
-
*/
|
|
1878
|
-
export declare const LogFormats: {
|
|
1879
|
-
readonly FULL: "full";
|
|
1880
|
-
};
|
|
1881
|
-
/**
|
|
1882
|
-
* @public
|
|
1883
|
-
*/
|
|
1884
|
-
export type LogFormats = (typeof LogFormats)[keyof typeof LogFormats];
|
|
1885
1546
|
/**
|
|
1886
1547
|
* <p>All the customer-modifiable InfluxDB v3 Core parameters in Timestream for InfluxDB.</p>
|
|
1887
1548
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { TimestreamInfluxDBServiceException } from "./models/TimestreamInfluxDBServiceException";
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
export declare const DbInstanceType: {
|
|
2
|
+
readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
|
|
3
|
+
readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
|
|
4
|
+
readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge";
|
|
5
|
+
readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
|
|
6
|
+
readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
|
|
7
|
+
readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
|
|
8
|
+
readonly DB_INFLUX_LARGE: "db.influx.large";
|
|
9
|
+
readonly DB_INFLUX_MEDIUM: "db.influx.medium";
|
|
10
|
+
readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
|
|
11
|
+
};
|
|
12
|
+
export type DbInstanceType =
|
|
13
|
+
(typeof DbInstanceType)[keyof typeof DbInstanceType];
|
|
14
|
+
export declare const DbStorageType: {
|
|
15
|
+
readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
|
|
16
|
+
readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
|
|
17
|
+
readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
|
|
18
|
+
};
|
|
19
|
+
export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
|
|
20
|
+
export declare const ClusterDeploymentType: {
|
|
21
|
+
readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
|
|
22
|
+
};
|
|
23
|
+
export type ClusterDeploymentType =
|
|
24
|
+
(typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType];
|
|
25
|
+
export declare const FailoverMode: {
|
|
26
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
27
|
+
readonly NO_FAILOVER: "NO_FAILOVER";
|
|
28
|
+
};
|
|
29
|
+
export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
|
|
30
|
+
export declare const NetworkType: {
|
|
31
|
+
readonly DUAL: "DUAL";
|
|
32
|
+
readonly IPV4: "IPV4";
|
|
33
|
+
};
|
|
34
|
+
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
35
|
+
export declare const ClusterStatus: {
|
|
36
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
37
|
+
readonly CREATING: "CREATING";
|
|
38
|
+
readonly DELETED: "DELETED";
|
|
39
|
+
readonly DELETING: "DELETING";
|
|
40
|
+
readonly FAILED: "FAILED";
|
|
41
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
42
|
+
readonly UPDATING: "UPDATING";
|
|
43
|
+
};
|
|
44
|
+
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
45
|
+
export declare const ValidationExceptionReason: {
|
|
46
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
47
|
+
readonly OTHER: "OTHER";
|
|
48
|
+
};
|
|
49
|
+
export type ValidationExceptionReason =
|
|
50
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
51
|
+
export declare const EngineType: {
|
|
52
|
+
readonly INFLUXDB_V2: "INFLUXDB_V2";
|
|
53
|
+
readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE";
|
|
54
|
+
readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE";
|
|
55
|
+
};
|
|
56
|
+
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
57
|
+
export declare const DeploymentType: {
|
|
58
|
+
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
59
|
+
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
60
|
+
};
|
|
61
|
+
export type DeploymentType =
|
|
62
|
+
(typeof DeploymentType)[keyof typeof DeploymentType];
|
|
63
|
+
export declare const InstanceMode: {
|
|
64
|
+
readonly COMPACT: "COMPACT";
|
|
65
|
+
readonly INGEST: "INGEST";
|
|
66
|
+
readonly PRIMARY: "PRIMARY";
|
|
67
|
+
readonly PROCESS: "PROCESS";
|
|
68
|
+
readonly QUERY: "QUERY";
|
|
69
|
+
readonly REPLICA: "REPLICA";
|
|
70
|
+
readonly STANDBY: "STANDBY";
|
|
71
|
+
};
|
|
72
|
+
export type InstanceMode = (typeof InstanceMode)[keyof typeof InstanceMode];
|
|
73
|
+
export declare const Status: {
|
|
74
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
75
|
+
readonly CREATING: "CREATING";
|
|
76
|
+
readonly DELETED: "DELETED";
|
|
77
|
+
readonly DELETING: "DELETING";
|
|
78
|
+
readonly FAILED: "FAILED";
|
|
79
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
80
|
+
readonly MODIFYING: "MODIFYING";
|
|
81
|
+
readonly UPDATING: "UPDATING";
|
|
82
|
+
readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
|
|
83
|
+
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
84
|
+
};
|
|
85
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
86
|
+
export declare const DurationType: {
|
|
87
|
+
readonly DAYS: "days";
|
|
88
|
+
readonly HOURS: "hours";
|
|
89
|
+
readonly MILLISECONDS: "milliseconds";
|
|
90
|
+
readonly MINUTES: "minutes";
|
|
91
|
+
readonly SECONDS: "seconds";
|
|
92
|
+
};
|
|
93
|
+
export type DurationType = (typeof DurationType)[keyof typeof DurationType];
|
|
94
|
+
export declare const LogLevel: {
|
|
95
|
+
readonly DEBUG: "debug";
|
|
96
|
+
readonly ERROR: "error";
|
|
97
|
+
readonly INFO: "info";
|
|
98
|
+
};
|
|
99
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
100
|
+
export declare const TracingType: {
|
|
101
|
+
readonly DISABLED: "disabled";
|
|
102
|
+
readonly JAEGER: "jaeger";
|
|
103
|
+
readonly LOG: "log";
|
|
104
|
+
};
|
|
105
|
+
export type TracingType = (typeof TracingType)[keyof typeof TracingType];
|
|
106
|
+
export declare const DataFusionRuntimeType: {
|
|
107
|
+
readonly MULTI_THREAD: "multi-thread";
|
|
108
|
+
readonly MULTI_THREAD_ALT: "multi-thread-alt";
|
|
109
|
+
};
|
|
110
|
+
export type DataFusionRuntimeType =
|
|
111
|
+
(typeof DataFusionRuntimeType)[keyof typeof DataFusionRuntimeType];
|
|
112
|
+
export declare const LogFormats: {
|
|
113
|
+
readonly FULL: "full";
|
|
114
|
+
};
|
|
115
|
+
export type LogFormats = (typeof LogFormats)[keyof typeof LogFormats];
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
resourceId: string | undefined;
|
|
15
|
+
resourceType: string | undefined;
|
|
16
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
17
|
+
}
|
|
18
|
+
export declare class InternalServerException extends __BaseException {
|
|
19
|
+
readonly name: "InternalServerException";
|
|
20
|
+
readonly $fault: "server";
|
|
21
|
+
$retryable: {};
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
readonly name: "ResourceNotFoundException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
resourceId: string | undefined;
|
|
30
|
+
resourceType: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
36
|
+
readonly name: "ServiceQuotaExceededException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
constructor(
|
|
39
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export declare class ThrottlingException extends __BaseException {
|
|
43
|
+
readonly name: "ThrottlingException";
|
|
44
|
+
readonly $fault: "client";
|
|
45
|
+
$retryable: {};
|
|
46
|
+
retryAfterSeconds?: number | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export declare class ValidationException extends __BaseException {
|
|
52
|
+
readonly name: "ValidationException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
reason: ValidationExceptionReason | undefined;
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|