@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.
@@ -0,0 +1,222 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const DbInstanceType: {
6
+ readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
7
+ readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
8
+ readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge";
9
+ readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
10
+ readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
11
+ readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
12
+ readonly DB_INFLUX_LARGE: "db.influx.large";
13
+ readonly DB_INFLUX_MEDIUM: "db.influx.medium";
14
+ readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
15
+ };
16
+ /**
17
+ * @public
18
+ */
19
+ export type DbInstanceType = (typeof DbInstanceType)[keyof typeof DbInstanceType];
20
+ /**
21
+ * @public
22
+ * @enum
23
+ */
24
+ export declare const DbStorageType: {
25
+ readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
26
+ readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
27
+ readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
28
+ };
29
+ /**
30
+ * @public
31
+ */
32
+ export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
33
+ /**
34
+ * @public
35
+ * @enum
36
+ */
37
+ export declare const ClusterDeploymentType: {
38
+ readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
39
+ };
40
+ /**
41
+ * @public
42
+ */
43
+ export type ClusterDeploymentType = (typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType];
44
+ /**
45
+ * @public
46
+ * @enum
47
+ */
48
+ export declare const FailoverMode: {
49
+ readonly AUTOMATIC: "AUTOMATIC";
50
+ readonly NO_FAILOVER: "NO_FAILOVER";
51
+ };
52
+ /**
53
+ * @public
54
+ */
55
+ export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
56
+ /**
57
+ * @public
58
+ * @enum
59
+ */
60
+ export declare const NetworkType: {
61
+ readonly DUAL: "DUAL";
62
+ readonly IPV4: "IPV4";
63
+ };
64
+ /**
65
+ * @public
66
+ */
67
+ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
68
+ /**
69
+ * @public
70
+ * @enum
71
+ */
72
+ export declare const ClusterStatus: {
73
+ readonly AVAILABLE: "AVAILABLE";
74
+ readonly CREATING: "CREATING";
75
+ readonly DELETED: "DELETED";
76
+ readonly DELETING: "DELETING";
77
+ readonly FAILED: "FAILED";
78
+ readonly MAINTENANCE: "MAINTENANCE";
79
+ readonly UPDATING: "UPDATING";
80
+ };
81
+ /**
82
+ * @public
83
+ */
84
+ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
85
+ /**
86
+ * @public
87
+ * @enum
88
+ */
89
+ export declare const ValidationExceptionReason: {
90
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
91
+ readonly OTHER: "OTHER";
92
+ };
93
+ /**
94
+ * @public
95
+ */
96
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
97
+ /**
98
+ * @public
99
+ * @enum
100
+ */
101
+ export declare const EngineType: {
102
+ readonly INFLUXDB_V2: "INFLUXDB_V2";
103
+ readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE";
104
+ readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE";
105
+ };
106
+ /**
107
+ * @public
108
+ */
109
+ export type EngineType = (typeof EngineType)[keyof typeof EngineType];
110
+ /**
111
+ * @public
112
+ * @enum
113
+ */
114
+ export declare const DeploymentType: {
115
+ readonly SINGLE_AZ: "SINGLE_AZ";
116
+ readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
117
+ };
118
+ /**
119
+ * @public
120
+ */
121
+ export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType];
122
+ /**
123
+ * @public
124
+ * @enum
125
+ */
126
+ export declare const InstanceMode: {
127
+ readonly COMPACT: "COMPACT";
128
+ readonly INGEST: "INGEST";
129
+ readonly PRIMARY: "PRIMARY";
130
+ readonly PROCESS: "PROCESS";
131
+ readonly QUERY: "QUERY";
132
+ readonly REPLICA: "REPLICA";
133
+ readonly STANDBY: "STANDBY";
134
+ };
135
+ /**
136
+ * @public
137
+ */
138
+ export type InstanceMode = (typeof InstanceMode)[keyof typeof InstanceMode];
139
+ /**
140
+ * @public
141
+ * @enum
142
+ */
143
+ export declare const Status: {
144
+ readonly AVAILABLE: "AVAILABLE";
145
+ readonly CREATING: "CREATING";
146
+ readonly DELETED: "DELETED";
147
+ readonly DELETING: "DELETING";
148
+ readonly FAILED: "FAILED";
149
+ readonly MAINTENANCE: "MAINTENANCE";
150
+ readonly MODIFYING: "MODIFYING";
151
+ readonly UPDATING: "UPDATING";
152
+ readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
153
+ readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
154
+ };
155
+ /**
156
+ * @public
157
+ */
158
+ export type Status = (typeof Status)[keyof typeof Status];
159
+ /**
160
+ * @public
161
+ * @enum
162
+ */
163
+ export declare const DurationType: {
164
+ readonly DAYS: "days";
165
+ readonly HOURS: "hours";
166
+ readonly MILLISECONDS: "milliseconds";
167
+ readonly MINUTES: "minutes";
168
+ readonly SECONDS: "seconds";
169
+ };
170
+ /**
171
+ * @public
172
+ */
173
+ export type DurationType = (typeof DurationType)[keyof typeof DurationType];
174
+ /**
175
+ * @public
176
+ * @enum
177
+ */
178
+ export declare const LogLevel: {
179
+ readonly DEBUG: "debug";
180
+ readonly ERROR: "error";
181
+ readonly INFO: "info";
182
+ };
183
+ /**
184
+ * @public
185
+ */
186
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
187
+ /**
188
+ * @public
189
+ * @enum
190
+ */
191
+ export declare const TracingType: {
192
+ readonly DISABLED: "disabled";
193
+ readonly JAEGER: "jaeger";
194
+ readonly LOG: "log";
195
+ };
196
+ /**
197
+ * @public
198
+ */
199
+ export type TracingType = (typeof TracingType)[keyof typeof TracingType];
200
+ /**
201
+ * @public
202
+ * @enum
203
+ */
204
+ export declare const DataFusionRuntimeType: {
205
+ readonly MULTI_THREAD: "multi-thread";
206
+ readonly MULTI_THREAD_ALT: "multi-thread-alt";
207
+ };
208
+ /**
209
+ * @public
210
+ */
211
+ export type DataFusionRuntimeType = (typeof DataFusionRuntimeType)[keyof typeof DataFusionRuntimeType];
212
+ /**
213
+ * @public
214
+ * @enum
215
+ */
216
+ export declare const LogFormats: {
217
+ readonly FULL: "full";
218
+ };
219
+ /**
220
+ * @public
221
+ */
222
+ export type LogFormats = (typeof LogFormats)[keyof typeof LogFormats];
@@ -0,0 +1,119 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
3
+ import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
4
+ /**
5
+ * <p>You do not have sufficient access to perform this action.</p>
6
+ * @public
7
+ */
8
+ export declare class AccessDeniedException extends __BaseException {
9
+ readonly name: "AccessDeniedException";
10
+ readonly $fault: "client";
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>The request conflicts with an existing resource in Timestream for InfluxDB.</p>
18
+ * @public
19
+ */
20
+ export declare class ConflictException extends __BaseException {
21
+ readonly name: "ConflictException";
22
+ readonly $fault: "client";
23
+ /**
24
+ * <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
25
+ * @public
26
+ */
27
+ resourceId: string | undefined;
28
+ /**
29
+ * <p>The type of Timestream for InfluxDB resource associated with the request.</p>
30
+ * @public
31
+ */
32
+ resourceType: string | undefined;
33
+ /**
34
+ * @internal
35
+ */
36
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
37
+ }
38
+ /**
39
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
40
+ * @public
41
+ */
42
+ export declare class InternalServerException extends __BaseException {
43
+ readonly name: "InternalServerException";
44
+ readonly $fault: "server";
45
+ $retryable: {};
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>The requested resource was not found or does not exist.</p>
53
+ * @public
54
+ */
55
+ export declare class ResourceNotFoundException extends __BaseException {
56
+ readonly name: "ResourceNotFoundException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
60
+ * @public
61
+ */
62
+ resourceId: string | undefined;
63
+ /**
64
+ * <p>The type of Timestream for InfluxDB resource associated with the request.</p>
65
+ * @public
66
+ */
67
+ resourceType: string | undefined;
68
+ /**
69
+ * @internal
70
+ */
71
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
72
+ }
73
+ /**
74
+ * <p>The request exceeds the service quota.</p>
75
+ * @public
76
+ */
77
+ export declare class ServiceQuotaExceededException extends __BaseException {
78
+ readonly name: "ServiceQuotaExceededException";
79
+ readonly $fault: "client";
80
+ /**
81
+ * @internal
82
+ */
83
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
84
+ }
85
+ /**
86
+ * <p>The request was denied due to request throttling.</p>
87
+ * @public
88
+ */
89
+ export declare class ThrottlingException extends __BaseException {
90
+ readonly name: "ThrottlingException";
91
+ readonly $fault: "client";
92
+ $retryable: {};
93
+ /**
94
+ * <p>The number of seconds the caller should wait before retrying.</p>
95
+ * @public
96
+ */
97
+ retryAfterSeconds?: number | undefined;
98
+ /**
99
+ * @internal
100
+ */
101
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
102
+ }
103
+ /**
104
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
105
+ * @public
106
+ */
107
+ export declare class ValidationException extends __BaseException {
108
+ readonly name: "ValidationException";
109
+ readonly $fault: "client";
110
+ /**
111
+ * <p>The reason that validation failed.</p>
112
+ * @public
113
+ */
114
+ reason: ValidationExceptionReason | undefined;
115
+ /**
116
+ * @internal
117
+ */
118
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
119
+ }