@aws-sdk/client-timestream-influxdb 3.934.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
|
@@ -1,48 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
|
|
19
|
-
readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
|
|
20
|
-
readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge";
|
|
21
|
-
readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
|
|
22
|
-
readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
|
|
23
|
-
readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
|
|
24
|
-
readonly DB_INFLUX_LARGE: "db.influx.large";
|
|
25
|
-
readonly DB_INFLUX_MEDIUM: "db.influx.medium";
|
|
26
|
-
readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
|
|
27
|
-
};
|
|
28
|
-
export type DbInstanceType =
|
|
29
|
-
(typeof DbInstanceType)[keyof typeof DbInstanceType];
|
|
30
|
-
export declare const DbStorageType: {
|
|
31
|
-
readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
|
|
32
|
-
readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
|
|
33
|
-
readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
|
|
34
|
-
};
|
|
35
|
-
export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
|
|
36
|
-
export declare const ClusterDeploymentType: {
|
|
37
|
-
readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
|
|
38
|
-
};
|
|
39
|
-
export type ClusterDeploymentType =
|
|
40
|
-
(typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType];
|
|
41
|
-
export declare const FailoverMode: {
|
|
42
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
43
|
-
readonly NO_FAILOVER: "NO_FAILOVER";
|
|
44
|
-
};
|
|
45
|
-
export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
|
|
1
|
+
import {
|
|
2
|
+
ClusterDeploymentType,
|
|
3
|
+
ClusterStatus,
|
|
4
|
+
DataFusionRuntimeType,
|
|
5
|
+
DbInstanceType,
|
|
6
|
+
DbStorageType,
|
|
7
|
+
DeploymentType,
|
|
8
|
+
DurationType,
|
|
9
|
+
EngineType,
|
|
10
|
+
FailoverMode,
|
|
11
|
+
InstanceMode,
|
|
12
|
+
LogFormats,
|
|
13
|
+
LogLevel,
|
|
14
|
+
NetworkType,
|
|
15
|
+
Status,
|
|
16
|
+
TracingType,
|
|
17
|
+
} from "./enums";
|
|
46
18
|
export interface S3Configuration {
|
|
47
19
|
bucketName: string | undefined;
|
|
48
20
|
enabled: boolean | undefined;
|
|
@@ -50,11 +22,6 @@ export interface S3Configuration {
|
|
|
50
22
|
export interface LogDeliveryConfiguration {
|
|
51
23
|
s3Configuration: S3Configuration | undefined;
|
|
52
24
|
}
|
|
53
|
-
export declare const NetworkType: {
|
|
54
|
-
readonly DUAL: "DUAL";
|
|
55
|
-
readonly IPV4: "IPV4";
|
|
56
|
-
};
|
|
57
|
-
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
58
25
|
export interface CreateDbClusterInput {
|
|
59
26
|
name: string | undefined;
|
|
60
27
|
username?: string | undefined;
|
|
@@ -75,67 +42,10 @@ export interface CreateDbClusterInput {
|
|
|
75
42
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
76
43
|
tags?: Record<string, string> | undefined;
|
|
77
44
|
}
|
|
78
|
-
export declare const ClusterStatus: {
|
|
79
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
80
|
-
readonly CREATING: "CREATING";
|
|
81
|
-
readonly DELETED: "DELETED";
|
|
82
|
-
readonly DELETING: "DELETING";
|
|
83
|
-
readonly FAILED: "FAILED";
|
|
84
|
-
readonly MAINTENANCE: "MAINTENANCE";
|
|
85
|
-
readonly UPDATING: "UPDATING";
|
|
86
|
-
};
|
|
87
|
-
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
88
45
|
export interface CreateDbClusterOutput {
|
|
89
46
|
dbClusterId?: string | undefined;
|
|
90
47
|
dbClusterStatus?: ClusterStatus | undefined;
|
|
91
48
|
}
|
|
92
|
-
export declare class InternalServerException extends __BaseException {
|
|
93
|
-
readonly name: "InternalServerException";
|
|
94
|
-
readonly $fault: "server";
|
|
95
|
-
$retryable: {};
|
|
96
|
-
constructor(
|
|
97
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
101
|
-
readonly name: "ResourceNotFoundException";
|
|
102
|
-
readonly $fault: "client";
|
|
103
|
-
resourceId: string | undefined;
|
|
104
|
-
resourceType: string | undefined;
|
|
105
|
-
constructor(
|
|
106
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
107
|
-
);
|
|
108
|
-
}
|
|
109
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
110
|
-
readonly name: "ServiceQuotaExceededException";
|
|
111
|
-
readonly $fault: "client";
|
|
112
|
-
constructor(
|
|
113
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
114
|
-
);
|
|
115
|
-
}
|
|
116
|
-
export declare class ThrottlingException extends __BaseException {
|
|
117
|
-
readonly name: "ThrottlingException";
|
|
118
|
-
readonly $fault: "client";
|
|
119
|
-
$retryable: {};
|
|
120
|
-
retryAfterSeconds?: number | undefined;
|
|
121
|
-
constructor(
|
|
122
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
123
|
-
);
|
|
124
|
-
}
|
|
125
|
-
export declare const ValidationExceptionReason: {
|
|
126
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
127
|
-
readonly OTHER: "OTHER";
|
|
128
|
-
};
|
|
129
|
-
export type ValidationExceptionReason =
|
|
130
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
131
|
-
export declare class ValidationException extends __BaseException {
|
|
132
|
-
readonly name: "ValidationException";
|
|
133
|
-
readonly $fault: "client";
|
|
134
|
-
reason: ValidationExceptionReason | undefined;
|
|
135
|
-
constructor(
|
|
136
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
137
|
-
);
|
|
138
|
-
}
|
|
139
49
|
export interface DeleteDbClusterInput {
|
|
140
50
|
dbClusterId: string | undefined;
|
|
141
51
|
}
|
|
@@ -145,12 +55,6 @@ export interface DeleteDbClusterOutput {
|
|
|
145
55
|
export interface GetDbClusterInput {
|
|
146
56
|
dbClusterId: string | undefined;
|
|
147
57
|
}
|
|
148
|
-
export declare const EngineType: {
|
|
149
|
-
readonly INFLUXDB_V2: "INFLUXDB_V2";
|
|
150
|
-
readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE";
|
|
151
|
-
readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE";
|
|
152
|
-
};
|
|
153
|
-
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
154
58
|
export interface GetDbClusterOutput {
|
|
155
59
|
id: string | undefined;
|
|
156
60
|
name: string | undefined;
|
|
@@ -201,35 +105,6 @@ export interface ListDbInstancesForClusterInput {
|
|
|
201
105
|
nextToken?: string | undefined;
|
|
202
106
|
maxResults?: number | undefined;
|
|
203
107
|
}
|
|
204
|
-
export declare const DeploymentType: {
|
|
205
|
-
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
206
|
-
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
207
|
-
};
|
|
208
|
-
export type DeploymentType =
|
|
209
|
-
(typeof DeploymentType)[keyof typeof DeploymentType];
|
|
210
|
-
export declare const InstanceMode: {
|
|
211
|
-
readonly COMPACT: "COMPACT";
|
|
212
|
-
readonly INGEST: "INGEST";
|
|
213
|
-
readonly PRIMARY: "PRIMARY";
|
|
214
|
-
readonly PROCESS: "PROCESS";
|
|
215
|
-
readonly QUERY: "QUERY";
|
|
216
|
-
readonly REPLICA: "REPLICA";
|
|
217
|
-
readonly STANDBY: "STANDBY";
|
|
218
|
-
};
|
|
219
|
-
export type InstanceMode = (typeof InstanceMode)[keyof typeof InstanceMode];
|
|
220
|
-
export declare const Status: {
|
|
221
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
222
|
-
readonly CREATING: "CREATING";
|
|
223
|
-
readonly DELETED: "DELETED";
|
|
224
|
-
readonly DELETING: "DELETING";
|
|
225
|
-
readonly FAILED: "FAILED";
|
|
226
|
-
readonly MAINTENANCE: "MAINTENANCE";
|
|
227
|
-
readonly MODIFYING: "MODIFYING";
|
|
228
|
-
readonly UPDATING: "UPDATING";
|
|
229
|
-
readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
|
|
230
|
-
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
231
|
-
};
|
|
232
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
233
108
|
export interface DbInstanceForClusterSummary {
|
|
234
109
|
id: string | undefined;
|
|
235
110
|
name: string | undefined;
|
|
@@ -412,30 +287,10 @@ export interface UpdateDbInstanceOutput {
|
|
|
412
287
|
instanceMode?: InstanceMode | undefined;
|
|
413
288
|
instanceModes?: InstanceMode[] | undefined;
|
|
414
289
|
}
|
|
415
|
-
export declare const DurationType: {
|
|
416
|
-
readonly DAYS: "days";
|
|
417
|
-
readonly HOURS: "hours";
|
|
418
|
-
readonly MILLISECONDS: "milliseconds";
|
|
419
|
-
readonly MINUTES: "minutes";
|
|
420
|
-
readonly SECONDS: "seconds";
|
|
421
|
-
};
|
|
422
|
-
export type DurationType = (typeof DurationType)[keyof typeof DurationType];
|
|
423
290
|
export interface Duration {
|
|
424
291
|
durationType: DurationType | undefined;
|
|
425
292
|
value: number | undefined;
|
|
426
293
|
}
|
|
427
|
-
export declare const LogLevel: {
|
|
428
|
-
readonly DEBUG: "debug";
|
|
429
|
-
readonly ERROR: "error";
|
|
430
|
-
readonly INFO: "info";
|
|
431
|
-
};
|
|
432
|
-
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
433
|
-
export declare const TracingType: {
|
|
434
|
-
readonly DISABLED: "disabled";
|
|
435
|
-
readonly JAEGER: "jaeger";
|
|
436
|
-
readonly LOG: "log";
|
|
437
|
-
};
|
|
438
|
-
export type TracingType = (typeof TracingType)[keyof typeof TracingType];
|
|
439
294
|
export interface InfluxDBv2Parameters {
|
|
440
295
|
fluxLogEnabled?: boolean | undefined;
|
|
441
296
|
logLevel?: LogLevel | undefined;
|
|
@@ -472,12 +327,6 @@ export interface InfluxDBv2Parameters {
|
|
|
472
327
|
storageWalMaxWriteDelay?: Duration | undefined;
|
|
473
328
|
uiDisabled?: boolean | undefined;
|
|
474
329
|
}
|
|
475
|
-
export declare const DataFusionRuntimeType: {
|
|
476
|
-
readonly MULTI_THREAD: "multi-thread";
|
|
477
|
-
readonly MULTI_THREAD_ALT: "multi-thread-alt";
|
|
478
|
-
};
|
|
479
|
-
export type DataFusionRuntimeType =
|
|
480
|
-
(typeof DataFusionRuntimeType)[keyof typeof DataFusionRuntimeType];
|
|
481
330
|
export type PercentOrAbsoluteLong =
|
|
482
331
|
| PercentOrAbsoluteLong.AbsoluteMember
|
|
483
332
|
| PercentOrAbsoluteLong.PercentMember
|
|
@@ -504,10 +353,6 @@ export declare namespace PercentOrAbsoluteLong {
|
|
|
504
353
|
_: (name: string, value: any) => T;
|
|
505
354
|
}
|
|
506
355
|
}
|
|
507
|
-
export declare const LogFormats: {
|
|
508
|
-
readonly FULL: "full";
|
|
509
|
-
};
|
|
510
|
-
export type LogFormats = (typeof LogFormats)[keyof typeof LogFormats];
|
|
511
356
|
export interface InfluxDBv3CoreParameters {
|
|
512
357
|
queryFileLimit?: number | undefined;
|
|
513
358
|
queryLogSize?: number | 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.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-timestream-influxdb",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|