@aws-sdk/client-timestream-influxdb 3.933.0 → 3.935.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 +12 -12
- 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
package/dist-cjs/index.js
CHANGED
|
@@ -145,42 +145,6 @@ let ConflictException$1 = class ConflictException extends TimestreamInfluxDBServ
|
|
|
145
145
|
this.resourceType = opts.resourceType;
|
|
146
146
|
}
|
|
147
147
|
};
|
|
148
|
-
const DbInstanceType = {
|
|
149
|
-
DB_INFLUX_12XLARGE: "db.influx.12xlarge",
|
|
150
|
-
DB_INFLUX_16XLARGE: "db.influx.16xlarge",
|
|
151
|
-
DB_INFLUX_24XLARGE: "db.influx.24xlarge",
|
|
152
|
-
DB_INFLUX_2XLARGE: "db.influx.2xlarge",
|
|
153
|
-
DB_INFLUX_4XLARGE: "db.influx.4xlarge",
|
|
154
|
-
DB_INFLUX_8XLARGE: "db.influx.8xlarge",
|
|
155
|
-
DB_INFLUX_LARGE: "db.influx.large",
|
|
156
|
-
DB_INFLUX_MEDIUM: "db.influx.medium",
|
|
157
|
-
DB_INFLUX_XLARGE: "db.influx.xlarge",
|
|
158
|
-
};
|
|
159
|
-
const DbStorageType = {
|
|
160
|
-
INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1",
|
|
161
|
-
INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2",
|
|
162
|
-
INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3",
|
|
163
|
-
};
|
|
164
|
-
const ClusterDeploymentType = {
|
|
165
|
-
MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS",
|
|
166
|
-
};
|
|
167
|
-
const FailoverMode = {
|
|
168
|
-
AUTOMATIC: "AUTOMATIC",
|
|
169
|
-
NO_FAILOVER: "NO_FAILOVER",
|
|
170
|
-
};
|
|
171
|
-
const NetworkType = {
|
|
172
|
-
DUAL: "DUAL",
|
|
173
|
-
IPV4: "IPV4",
|
|
174
|
-
};
|
|
175
|
-
const ClusterStatus = {
|
|
176
|
-
AVAILABLE: "AVAILABLE",
|
|
177
|
-
CREATING: "CREATING",
|
|
178
|
-
DELETED: "DELETED",
|
|
179
|
-
DELETING: "DELETING",
|
|
180
|
-
FAILED: "FAILED",
|
|
181
|
-
MAINTENANCE: "MAINTENANCE",
|
|
182
|
-
UPDATING: "UPDATING",
|
|
183
|
-
};
|
|
184
148
|
let InternalServerException$1 = class InternalServerException extends TimestreamInfluxDBServiceException$1 {
|
|
185
149
|
name = "InternalServerException";
|
|
186
150
|
$fault = "server";
|
|
@@ -237,10 +201,6 @@ let ThrottlingException$1 = class ThrottlingException extends TimestreamInfluxDB
|
|
|
237
201
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
238
202
|
}
|
|
239
203
|
};
|
|
240
|
-
const ValidationExceptionReason = {
|
|
241
|
-
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
242
|
-
OTHER: "OTHER",
|
|
243
|
-
};
|
|
244
204
|
let ValidationException$1 = class ValidationException extends TimestreamInfluxDBServiceException$1 {
|
|
245
205
|
name = "ValidationException";
|
|
246
206
|
$fault = "client";
|
|
@@ -255,60 +215,6 @@ let ValidationException$1 = class ValidationException extends TimestreamInfluxDB
|
|
|
255
215
|
this.reason = opts.reason;
|
|
256
216
|
}
|
|
257
217
|
};
|
|
258
|
-
const EngineType = {
|
|
259
|
-
INFLUXDB_V2: "INFLUXDB_V2",
|
|
260
|
-
INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE",
|
|
261
|
-
INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE",
|
|
262
|
-
};
|
|
263
|
-
const DeploymentType = {
|
|
264
|
-
SINGLE_AZ: "SINGLE_AZ",
|
|
265
|
-
WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY",
|
|
266
|
-
};
|
|
267
|
-
const InstanceMode = {
|
|
268
|
-
COMPACT: "COMPACT",
|
|
269
|
-
INGEST: "INGEST",
|
|
270
|
-
PRIMARY: "PRIMARY",
|
|
271
|
-
PROCESS: "PROCESS",
|
|
272
|
-
QUERY: "QUERY",
|
|
273
|
-
REPLICA: "REPLICA",
|
|
274
|
-
STANDBY: "STANDBY",
|
|
275
|
-
};
|
|
276
|
-
const Status = {
|
|
277
|
-
AVAILABLE: "AVAILABLE",
|
|
278
|
-
CREATING: "CREATING",
|
|
279
|
-
DELETED: "DELETED",
|
|
280
|
-
DELETING: "DELETING",
|
|
281
|
-
FAILED: "FAILED",
|
|
282
|
-
MAINTENANCE: "MAINTENANCE",
|
|
283
|
-
MODIFYING: "MODIFYING",
|
|
284
|
-
UPDATING: "UPDATING",
|
|
285
|
-
UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE",
|
|
286
|
-
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
287
|
-
};
|
|
288
|
-
const DurationType = {
|
|
289
|
-
DAYS: "days",
|
|
290
|
-
HOURS: "hours",
|
|
291
|
-
MILLISECONDS: "milliseconds",
|
|
292
|
-
MINUTES: "minutes",
|
|
293
|
-
SECONDS: "seconds",
|
|
294
|
-
};
|
|
295
|
-
const LogLevel = {
|
|
296
|
-
DEBUG: "debug",
|
|
297
|
-
ERROR: "error",
|
|
298
|
-
INFO: "info",
|
|
299
|
-
};
|
|
300
|
-
const TracingType = {
|
|
301
|
-
DISABLED: "disabled",
|
|
302
|
-
JAEGER: "jaeger",
|
|
303
|
-
LOG: "log",
|
|
304
|
-
};
|
|
305
|
-
const DataFusionRuntimeType = {
|
|
306
|
-
MULTI_THREAD: "multi-thread",
|
|
307
|
-
MULTI_THREAD_ALT: "multi-thread-alt",
|
|
308
|
-
};
|
|
309
|
-
const LogFormats = {
|
|
310
|
-
FULL: "full",
|
|
311
|
-
};
|
|
312
218
|
|
|
313
219
|
const _ADE = "AccessDeniedException";
|
|
314
220
|
const _CDC = "CreateDbCluster";
|
|
@@ -1574,6 +1480,101 @@ const paginateListDbInstances = core.createPaginator(TimestreamInfluxDBClient, L
|
|
|
1574
1480
|
|
|
1575
1481
|
const paginateListDbParameterGroups = core.createPaginator(TimestreamInfluxDBClient, ListDbParameterGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1576
1482
|
|
|
1483
|
+
const DbInstanceType = {
|
|
1484
|
+
DB_INFLUX_12XLARGE: "db.influx.12xlarge",
|
|
1485
|
+
DB_INFLUX_16XLARGE: "db.influx.16xlarge",
|
|
1486
|
+
DB_INFLUX_24XLARGE: "db.influx.24xlarge",
|
|
1487
|
+
DB_INFLUX_2XLARGE: "db.influx.2xlarge",
|
|
1488
|
+
DB_INFLUX_4XLARGE: "db.influx.4xlarge",
|
|
1489
|
+
DB_INFLUX_8XLARGE: "db.influx.8xlarge",
|
|
1490
|
+
DB_INFLUX_LARGE: "db.influx.large",
|
|
1491
|
+
DB_INFLUX_MEDIUM: "db.influx.medium",
|
|
1492
|
+
DB_INFLUX_XLARGE: "db.influx.xlarge",
|
|
1493
|
+
};
|
|
1494
|
+
const DbStorageType = {
|
|
1495
|
+
INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1",
|
|
1496
|
+
INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2",
|
|
1497
|
+
INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3",
|
|
1498
|
+
};
|
|
1499
|
+
const ClusterDeploymentType = {
|
|
1500
|
+
MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS",
|
|
1501
|
+
};
|
|
1502
|
+
const FailoverMode = {
|
|
1503
|
+
AUTOMATIC: "AUTOMATIC",
|
|
1504
|
+
NO_FAILOVER: "NO_FAILOVER",
|
|
1505
|
+
};
|
|
1506
|
+
const NetworkType = {
|
|
1507
|
+
DUAL: "DUAL",
|
|
1508
|
+
IPV4: "IPV4",
|
|
1509
|
+
};
|
|
1510
|
+
const ClusterStatus = {
|
|
1511
|
+
AVAILABLE: "AVAILABLE",
|
|
1512
|
+
CREATING: "CREATING",
|
|
1513
|
+
DELETED: "DELETED",
|
|
1514
|
+
DELETING: "DELETING",
|
|
1515
|
+
FAILED: "FAILED",
|
|
1516
|
+
MAINTENANCE: "MAINTENANCE",
|
|
1517
|
+
UPDATING: "UPDATING",
|
|
1518
|
+
};
|
|
1519
|
+
const ValidationExceptionReason = {
|
|
1520
|
+
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
1521
|
+
OTHER: "OTHER",
|
|
1522
|
+
};
|
|
1523
|
+
const EngineType = {
|
|
1524
|
+
INFLUXDB_V2: "INFLUXDB_V2",
|
|
1525
|
+
INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE",
|
|
1526
|
+
INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE",
|
|
1527
|
+
};
|
|
1528
|
+
const DeploymentType = {
|
|
1529
|
+
SINGLE_AZ: "SINGLE_AZ",
|
|
1530
|
+
WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY",
|
|
1531
|
+
};
|
|
1532
|
+
const InstanceMode = {
|
|
1533
|
+
COMPACT: "COMPACT",
|
|
1534
|
+
INGEST: "INGEST",
|
|
1535
|
+
PRIMARY: "PRIMARY",
|
|
1536
|
+
PROCESS: "PROCESS",
|
|
1537
|
+
QUERY: "QUERY",
|
|
1538
|
+
REPLICA: "REPLICA",
|
|
1539
|
+
STANDBY: "STANDBY",
|
|
1540
|
+
};
|
|
1541
|
+
const Status = {
|
|
1542
|
+
AVAILABLE: "AVAILABLE",
|
|
1543
|
+
CREATING: "CREATING",
|
|
1544
|
+
DELETED: "DELETED",
|
|
1545
|
+
DELETING: "DELETING",
|
|
1546
|
+
FAILED: "FAILED",
|
|
1547
|
+
MAINTENANCE: "MAINTENANCE",
|
|
1548
|
+
MODIFYING: "MODIFYING",
|
|
1549
|
+
UPDATING: "UPDATING",
|
|
1550
|
+
UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE",
|
|
1551
|
+
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
1552
|
+
};
|
|
1553
|
+
const DurationType = {
|
|
1554
|
+
DAYS: "days",
|
|
1555
|
+
HOURS: "hours",
|
|
1556
|
+
MILLISECONDS: "milliseconds",
|
|
1557
|
+
MINUTES: "minutes",
|
|
1558
|
+
SECONDS: "seconds",
|
|
1559
|
+
};
|
|
1560
|
+
const LogLevel = {
|
|
1561
|
+
DEBUG: "debug",
|
|
1562
|
+
ERROR: "error",
|
|
1563
|
+
INFO: "info",
|
|
1564
|
+
};
|
|
1565
|
+
const TracingType = {
|
|
1566
|
+
DISABLED: "disabled",
|
|
1567
|
+
JAEGER: "jaeger",
|
|
1568
|
+
LOG: "log",
|
|
1569
|
+
};
|
|
1570
|
+
const DataFusionRuntimeType = {
|
|
1571
|
+
MULTI_THREAD: "multi-thread",
|
|
1572
|
+
MULTI_THREAD_ALT: "multi-thread-alt",
|
|
1573
|
+
};
|
|
1574
|
+
const LogFormats = {
|
|
1575
|
+
FULL: "full",
|
|
1576
|
+
};
|
|
1577
|
+
|
|
1577
1578
|
Object.defineProperty(exports, "$Command", {
|
|
1578
1579
|
enumerable: true,
|
|
1579
1580
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./TimestreamInfluxDBClient";
|
|
|
2
2
|
export * from "./TimestreamInfluxDB";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { TimestreamInfluxDBServiceException } from "./models/TimestreamInfluxDBServiceException";
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
export const DbInstanceType = {
|
|
2
|
+
DB_INFLUX_12XLARGE: "db.influx.12xlarge",
|
|
3
|
+
DB_INFLUX_16XLARGE: "db.influx.16xlarge",
|
|
4
|
+
DB_INFLUX_24XLARGE: "db.influx.24xlarge",
|
|
5
|
+
DB_INFLUX_2XLARGE: "db.influx.2xlarge",
|
|
6
|
+
DB_INFLUX_4XLARGE: "db.influx.4xlarge",
|
|
7
|
+
DB_INFLUX_8XLARGE: "db.influx.8xlarge",
|
|
8
|
+
DB_INFLUX_LARGE: "db.influx.large",
|
|
9
|
+
DB_INFLUX_MEDIUM: "db.influx.medium",
|
|
10
|
+
DB_INFLUX_XLARGE: "db.influx.xlarge",
|
|
11
|
+
};
|
|
12
|
+
export const DbStorageType = {
|
|
13
|
+
INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1",
|
|
14
|
+
INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2",
|
|
15
|
+
INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3",
|
|
16
|
+
};
|
|
17
|
+
export const ClusterDeploymentType = {
|
|
18
|
+
MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS",
|
|
19
|
+
};
|
|
20
|
+
export const FailoverMode = {
|
|
21
|
+
AUTOMATIC: "AUTOMATIC",
|
|
22
|
+
NO_FAILOVER: "NO_FAILOVER",
|
|
23
|
+
};
|
|
24
|
+
export const NetworkType = {
|
|
25
|
+
DUAL: "DUAL",
|
|
26
|
+
IPV4: "IPV4",
|
|
27
|
+
};
|
|
28
|
+
export const ClusterStatus = {
|
|
29
|
+
AVAILABLE: "AVAILABLE",
|
|
30
|
+
CREATING: "CREATING",
|
|
31
|
+
DELETED: "DELETED",
|
|
32
|
+
DELETING: "DELETING",
|
|
33
|
+
FAILED: "FAILED",
|
|
34
|
+
MAINTENANCE: "MAINTENANCE",
|
|
35
|
+
UPDATING: "UPDATING",
|
|
36
|
+
};
|
|
37
|
+
export const ValidationExceptionReason = {
|
|
38
|
+
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
39
|
+
OTHER: "OTHER",
|
|
40
|
+
};
|
|
41
|
+
export const EngineType = {
|
|
42
|
+
INFLUXDB_V2: "INFLUXDB_V2",
|
|
43
|
+
INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE",
|
|
44
|
+
INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE",
|
|
45
|
+
};
|
|
46
|
+
export const DeploymentType = {
|
|
47
|
+
SINGLE_AZ: "SINGLE_AZ",
|
|
48
|
+
WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY",
|
|
49
|
+
};
|
|
50
|
+
export const InstanceMode = {
|
|
51
|
+
COMPACT: "COMPACT",
|
|
52
|
+
INGEST: "INGEST",
|
|
53
|
+
PRIMARY: "PRIMARY",
|
|
54
|
+
PROCESS: "PROCESS",
|
|
55
|
+
QUERY: "QUERY",
|
|
56
|
+
REPLICA: "REPLICA",
|
|
57
|
+
STANDBY: "STANDBY",
|
|
58
|
+
};
|
|
59
|
+
export const Status = {
|
|
60
|
+
AVAILABLE: "AVAILABLE",
|
|
61
|
+
CREATING: "CREATING",
|
|
62
|
+
DELETED: "DELETED",
|
|
63
|
+
DELETING: "DELETING",
|
|
64
|
+
FAILED: "FAILED",
|
|
65
|
+
MAINTENANCE: "MAINTENANCE",
|
|
66
|
+
MODIFYING: "MODIFYING",
|
|
67
|
+
UPDATING: "UPDATING",
|
|
68
|
+
UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE",
|
|
69
|
+
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
70
|
+
};
|
|
71
|
+
export const DurationType = {
|
|
72
|
+
DAYS: "days",
|
|
73
|
+
HOURS: "hours",
|
|
74
|
+
MILLISECONDS: "milliseconds",
|
|
75
|
+
MINUTES: "minutes",
|
|
76
|
+
SECONDS: "seconds",
|
|
77
|
+
};
|
|
78
|
+
export const LogLevel = {
|
|
79
|
+
DEBUG: "debug",
|
|
80
|
+
ERROR: "error",
|
|
81
|
+
INFO: "info",
|
|
82
|
+
};
|
|
83
|
+
export const TracingType = {
|
|
84
|
+
DISABLED: "disabled",
|
|
85
|
+
JAEGER: "jaeger",
|
|
86
|
+
LOG: "log",
|
|
87
|
+
};
|
|
88
|
+
export const DataFusionRuntimeType = {
|
|
89
|
+
MULTI_THREAD: "multi-thread",
|
|
90
|
+
MULTI_THREAD_ALT: "multi-thread-alt",
|
|
91
|
+
};
|
|
92
|
+
export const LogFormats = {
|
|
93
|
+
FULL: "full",
|
|
94
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ConflictException extends __BaseException {
|
|
15
|
+
name = "ConflictException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
resourceId;
|
|
18
|
+
resourceType;
|
|
19
|
+
constructor(opts) {
|
|
20
|
+
super({
|
|
21
|
+
name: "ConflictException",
|
|
22
|
+
$fault: "client",
|
|
23
|
+
...opts,
|
|
24
|
+
});
|
|
25
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
|
+
this.resourceId = opts.resourceId;
|
|
27
|
+
this.resourceType = opts.resourceType;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InternalServerException extends __BaseException {
|
|
31
|
+
name = "InternalServerException";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
$retryable = {};
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InternalServerException",
|
|
37
|
+
$fault: "server",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
44
|
+
name = "ResourceNotFoundException";
|
|
45
|
+
$fault = "client";
|
|
46
|
+
resourceId;
|
|
47
|
+
resourceType;
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "ResourceNotFoundException",
|
|
51
|
+
$fault: "client",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
55
|
+
this.resourceId = opts.resourceId;
|
|
56
|
+
this.resourceType = opts.resourceType;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
60
|
+
name = "ServiceQuotaExceededException";
|
|
61
|
+
$fault = "client";
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "ServiceQuotaExceededException",
|
|
65
|
+
$fault: "client",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
export class ThrottlingException extends __BaseException {
|
|
72
|
+
name = "ThrottlingException";
|
|
73
|
+
$fault = "client";
|
|
74
|
+
$retryable = {};
|
|
75
|
+
retryAfterSeconds;
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ThrottlingException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
83
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class ValidationException extends __BaseException {
|
|
87
|
+
name = "ValidationException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
reason;
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "ValidationException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
97
|
+
this.reason = opts.reason;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -1,193 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ConflictException extends __BaseException {
|
|
15
|
-
name = "ConflictException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
resourceId;
|
|
18
|
-
resourceType;
|
|
19
|
-
constructor(opts) {
|
|
20
|
-
super({
|
|
21
|
-
name: "ConflictException",
|
|
22
|
-
$fault: "client",
|
|
23
|
-
...opts,
|
|
24
|
-
});
|
|
25
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
|
-
this.resourceId = opts.resourceId;
|
|
27
|
-
this.resourceType = opts.resourceType;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
export const DbInstanceType = {
|
|
31
|
-
DB_INFLUX_12XLARGE: "db.influx.12xlarge",
|
|
32
|
-
DB_INFLUX_16XLARGE: "db.influx.16xlarge",
|
|
33
|
-
DB_INFLUX_24XLARGE: "db.influx.24xlarge",
|
|
34
|
-
DB_INFLUX_2XLARGE: "db.influx.2xlarge",
|
|
35
|
-
DB_INFLUX_4XLARGE: "db.influx.4xlarge",
|
|
36
|
-
DB_INFLUX_8XLARGE: "db.influx.8xlarge",
|
|
37
|
-
DB_INFLUX_LARGE: "db.influx.large",
|
|
38
|
-
DB_INFLUX_MEDIUM: "db.influx.medium",
|
|
39
|
-
DB_INFLUX_XLARGE: "db.influx.xlarge",
|
|
40
|
-
};
|
|
41
|
-
export const DbStorageType = {
|
|
42
|
-
INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1",
|
|
43
|
-
INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2",
|
|
44
|
-
INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3",
|
|
45
|
-
};
|
|
46
|
-
export const ClusterDeploymentType = {
|
|
47
|
-
MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS",
|
|
48
|
-
};
|
|
49
|
-
export const FailoverMode = {
|
|
50
|
-
AUTOMATIC: "AUTOMATIC",
|
|
51
|
-
NO_FAILOVER: "NO_FAILOVER",
|
|
52
|
-
};
|
|
53
|
-
export const NetworkType = {
|
|
54
|
-
DUAL: "DUAL",
|
|
55
|
-
IPV4: "IPV4",
|
|
56
|
-
};
|
|
57
|
-
export const ClusterStatus = {
|
|
58
|
-
AVAILABLE: "AVAILABLE",
|
|
59
|
-
CREATING: "CREATING",
|
|
60
|
-
DELETED: "DELETED",
|
|
61
|
-
DELETING: "DELETING",
|
|
62
|
-
FAILED: "FAILED",
|
|
63
|
-
MAINTENANCE: "MAINTENANCE",
|
|
64
|
-
UPDATING: "UPDATING",
|
|
65
|
-
};
|
|
66
|
-
export class InternalServerException extends __BaseException {
|
|
67
|
-
name = "InternalServerException";
|
|
68
|
-
$fault = "server";
|
|
69
|
-
$retryable = {};
|
|
70
|
-
constructor(opts) {
|
|
71
|
-
super({
|
|
72
|
-
name: "InternalServerException",
|
|
73
|
-
$fault: "server",
|
|
74
|
-
...opts,
|
|
75
|
-
});
|
|
76
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
80
|
-
name = "ResourceNotFoundException";
|
|
81
|
-
$fault = "client";
|
|
82
|
-
resourceId;
|
|
83
|
-
resourceType;
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "ResourceNotFoundException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts,
|
|
89
|
-
});
|
|
90
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
91
|
-
this.resourceId = opts.resourceId;
|
|
92
|
-
this.resourceType = opts.resourceType;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
96
|
-
name = "ServiceQuotaExceededException";
|
|
97
|
-
$fault = "client";
|
|
98
|
-
constructor(opts) {
|
|
99
|
-
super({
|
|
100
|
-
name: "ServiceQuotaExceededException",
|
|
101
|
-
$fault: "client",
|
|
102
|
-
...opts,
|
|
103
|
-
});
|
|
104
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
export class ThrottlingException extends __BaseException {
|
|
108
|
-
name = "ThrottlingException";
|
|
109
|
-
$fault = "client";
|
|
110
|
-
$retryable = {};
|
|
111
|
-
retryAfterSeconds;
|
|
112
|
-
constructor(opts) {
|
|
113
|
-
super({
|
|
114
|
-
name: "ThrottlingException",
|
|
115
|
-
$fault: "client",
|
|
116
|
-
...opts,
|
|
117
|
-
});
|
|
118
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
119
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
export const ValidationExceptionReason = {
|
|
123
|
-
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
124
|
-
OTHER: "OTHER",
|
|
125
|
-
};
|
|
126
|
-
export class ValidationException extends __BaseException {
|
|
127
|
-
name = "ValidationException";
|
|
128
|
-
$fault = "client";
|
|
129
|
-
reason;
|
|
130
|
-
constructor(opts) {
|
|
131
|
-
super({
|
|
132
|
-
name: "ValidationException",
|
|
133
|
-
$fault: "client",
|
|
134
|
-
...opts,
|
|
135
|
-
});
|
|
136
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
137
|
-
this.reason = opts.reason;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
export const EngineType = {
|
|
141
|
-
INFLUXDB_V2: "INFLUXDB_V2",
|
|
142
|
-
INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE",
|
|
143
|
-
INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE",
|
|
144
|
-
};
|
|
145
|
-
export const DeploymentType = {
|
|
146
|
-
SINGLE_AZ: "SINGLE_AZ",
|
|
147
|
-
WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY",
|
|
148
|
-
};
|
|
149
|
-
export const InstanceMode = {
|
|
150
|
-
COMPACT: "COMPACT",
|
|
151
|
-
INGEST: "INGEST",
|
|
152
|
-
PRIMARY: "PRIMARY",
|
|
153
|
-
PROCESS: "PROCESS",
|
|
154
|
-
QUERY: "QUERY",
|
|
155
|
-
REPLICA: "REPLICA",
|
|
156
|
-
STANDBY: "STANDBY",
|
|
157
|
-
};
|
|
158
|
-
export const Status = {
|
|
159
|
-
AVAILABLE: "AVAILABLE",
|
|
160
|
-
CREATING: "CREATING",
|
|
161
|
-
DELETED: "DELETED",
|
|
162
|
-
DELETING: "DELETING",
|
|
163
|
-
FAILED: "FAILED",
|
|
164
|
-
MAINTENANCE: "MAINTENANCE",
|
|
165
|
-
MODIFYING: "MODIFYING",
|
|
166
|
-
UPDATING: "UPDATING",
|
|
167
|
-
UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE",
|
|
168
|
-
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
169
|
-
};
|
|
170
|
-
export const DurationType = {
|
|
171
|
-
DAYS: "days",
|
|
172
|
-
HOURS: "hours",
|
|
173
|
-
MILLISECONDS: "milliseconds",
|
|
174
|
-
MINUTES: "minutes",
|
|
175
|
-
SECONDS: "seconds",
|
|
176
|
-
};
|
|
177
|
-
export const LogLevel = {
|
|
178
|
-
DEBUG: "debug",
|
|
179
|
-
ERROR: "error",
|
|
180
|
-
INFO: "info",
|
|
181
|
-
};
|
|
182
|
-
export const TracingType = {
|
|
183
|
-
DISABLED: "disabled",
|
|
184
|
-
JAEGER: "jaeger",
|
|
185
|
-
LOG: "log",
|
|
186
|
-
};
|
|
187
|
-
export const DataFusionRuntimeType = {
|
|
188
|
-
MULTI_THREAD: "multi-thread",
|
|
189
|
-
MULTI_THREAD_ALT: "multi-thread-alt",
|
|
190
|
-
};
|
|
191
|
-
export const LogFormats = {
|
|
192
|
-
FULL: "full",
|
|
193
|
-
};
|
|
1
|
+
export {};
|
|
@@ -221,7 +221,7 @@ const _wRFOE = "walReplayFailOnError";
|
|
|
221
221
|
const _wSS = "walSnapshotSize";
|
|
222
222
|
const n0 = "com.amazonaws.timestreaminfluxdb";
|
|
223
223
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
224
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
224
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
225
225
|
import { TimestreamInfluxDBServiceException as __TimestreamInfluxDBServiceException } from "../models/TimestreamInfluxDBServiceException";
|
|
226
226
|
export var Password = [0, n0, _P, 8, 0];
|
|
227
227
|
export var Username = [0, n0, _U, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
11
11
|
export type { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration";
|
|
12
12
|
export * from "./commands";
|
|
13
13
|
export * from "./pagination";
|
|
14
|
-
export * from "./models";
|
|
14
|
+
export * from "./models/enums";
|
|
15
|
+
export * from "./models/errors";
|
|
16
|
+
export type * from "./models/models_0";
|
|
15
17
|
export { TimestreamInfluxDBServiceException } from "./models/TimestreamInfluxDBServiceException";
|