@aws-sdk/client-timestream-query 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 +66 -65
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +65 -0
- package/dist-es/models/errors.js +129 -0
- package/dist-es/models/models_0.js +1 -194
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +161 -0
- package/dist-types/models/errors.d.ts +125 -0
- package/dist-types/models/models_0.d.ts +1 -286
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +87 -0
- package/dist-types/ts3.4/models/errors.d.ts +73 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -160
- package/package.json +20 -20
- 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
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export declare const ScalarType: {
|
|
2
|
+
readonly BIGINT: "BIGINT";
|
|
3
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
4
|
+
readonly DATE: "DATE";
|
|
5
|
+
readonly DOUBLE: "DOUBLE";
|
|
6
|
+
readonly INTEGER: "INTEGER";
|
|
7
|
+
readonly INTERVAL_DAY_TO_SECOND: "INTERVAL_DAY_TO_SECOND";
|
|
8
|
+
readonly INTERVAL_YEAR_TO_MONTH: "INTERVAL_YEAR_TO_MONTH";
|
|
9
|
+
readonly TIME: "TIME";
|
|
10
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
11
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
12
|
+
readonly VARCHAR: "VARCHAR";
|
|
13
|
+
};
|
|
14
|
+
export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
|
|
15
|
+
export declare const ComputeMode: {
|
|
16
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
17
|
+
readonly PROVISIONED: "PROVISIONED";
|
|
18
|
+
};
|
|
19
|
+
export type ComputeMode = (typeof ComputeMode)[keyof typeof ComputeMode];
|
|
20
|
+
export declare const S3EncryptionOption: {
|
|
21
|
+
readonly SSE_KMS: "SSE_KMS";
|
|
22
|
+
readonly SSE_S3: "SSE_S3";
|
|
23
|
+
};
|
|
24
|
+
export type S3EncryptionOption =
|
|
25
|
+
(typeof S3EncryptionOption)[keyof typeof S3EncryptionOption];
|
|
26
|
+
export declare const DimensionValueType: {
|
|
27
|
+
readonly VARCHAR: "VARCHAR";
|
|
28
|
+
};
|
|
29
|
+
export type DimensionValueType =
|
|
30
|
+
(typeof DimensionValueType)[keyof typeof DimensionValueType];
|
|
31
|
+
export declare const MeasureValueType: {
|
|
32
|
+
readonly BIGINT: "BIGINT";
|
|
33
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
34
|
+
readonly DOUBLE: "DOUBLE";
|
|
35
|
+
readonly MULTI: "MULTI";
|
|
36
|
+
readonly VARCHAR: "VARCHAR";
|
|
37
|
+
};
|
|
38
|
+
export type MeasureValueType =
|
|
39
|
+
(typeof MeasureValueType)[keyof typeof MeasureValueType];
|
|
40
|
+
export declare const ScalarMeasureValueType: {
|
|
41
|
+
readonly BIGINT: "BIGINT";
|
|
42
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
43
|
+
readonly DOUBLE: "DOUBLE";
|
|
44
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
45
|
+
readonly VARCHAR: "VARCHAR";
|
|
46
|
+
};
|
|
47
|
+
export type ScalarMeasureValueType =
|
|
48
|
+
(typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType];
|
|
49
|
+
export declare const LastUpdateStatus: {
|
|
50
|
+
readonly FAILED: "FAILED";
|
|
51
|
+
readonly PENDING: "PENDING";
|
|
52
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
53
|
+
};
|
|
54
|
+
export type LastUpdateStatus =
|
|
55
|
+
(typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
|
|
56
|
+
export declare const QueryPricingModel: {
|
|
57
|
+
readonly BYTES_SCANNED: "BYTES_SCANNED";
|
|
58
|
+
readonly COMPUTE_UNITS: "COMPUTE_UNITS";
|
|
59
|
+
};
|
|
60
|
+
export type QueryPricingModel =
|
|
61
|
+
(typeof QueryPricingModel)[keyof typeof QueryPricingModel];
|
|
62
|
+
export declare const ScheduledQueryRunStatus: {
|
|
63
|
+
readonly AUTO_TRIGGER_FAILURE: "AUTO_TRIGGER_FAILURE";
|
|
64
|
+
readonly AUTO_TRIGGER_SUCCESS: "AUTO_TRIGGER_SUCCESS";
|
|
65
|
+
readonly MANUAL_TRIGGER_FAILURE: "MANUAL_TRIGGER_FAILURE";
|
|
66
|
+
readonly MANUAL_TRIGGER_SUCCESS: "MANUAL_TRIGGER_SUCCESS";
|
|
67
|
+
};
|
|
68
|
+
export type ScheduledQueryRunStatus =
|
|
69
|
+
(typeof ScheduledQueryRunStatus)[keyof typeof ScheduledQueryRunStatus];
|
|
70
|
+
export declare const ScheduledQueryState: {
|
|
71
|
+
readonly DISABLED: "DISABLED";
|
|
72
|
+
readonly ENABLED: "ENABLED";
|
|
73
|
+
};
|
|
74
|
+
export type ScheduledQueryState =
|
|
75
|
+
(typeof ScheduledQueryState)[keyof typeof ScheduledQueryState];
|
|
76
|
+
export declare const ScheduledQueryInsightsMode: {
|
|
77
|
+
readonly DISABLED: "DISABLED";
|
|
78
|
+
readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
|
|
79
|
+
};
|
|
80
|
+
export type ScheduledQueryInsightsMode =
|
|
81
|
+
(typeof ScheduledQueryInsightsMode)[keyof typeof ScheduledQueryInsightsMode];
|
|
82
|
+
export declare const QueryInsightsMode: {
|
|
83
|
+
readonly DISABLED: "DISABLED";
|
|
84
|
+
readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
|
|
85
|
+
};
|
|
86
|
+
export type QueryInsightsMode =
|
|
87
|
+
(typeof QueryInsightsMode)[keyof typeof QueryInsightsMode];
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { TimestreamQueryServiceException as __BaseException } from "./TimestreamQueryServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class InternalServerException extends __BaseException {
|
|
12
|
+
readonly name: "InternalServerException";
|
|
13
|
+
readonly $fault: "server";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class InvalidEndpointException extends __BaseException {
|
|
20
|
+
readonly name: "InvalidEndpointException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
Message?: string | undefined;
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class ThrottlingException extends __BaseException {
|
|
28
|
+
readonly name: "ThrottlingException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
Message?: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ValidationException extends __BaseException {
|
|
36
|
+
readonly name: "ValidationException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ConflictException extends __BaseException {
|
|
44
|
+
readonly name: "ConflictException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
48
|
+
}
|
|
49
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
50
|
+
readonly name: "ServiceQuotaExceededException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
Message?: string | undefined;
|
|
53
|
+
constructor(
|
|
54
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
58
|
+
readonly name: "ResourceNotFoundException";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
Message?: string | undefined;
|
|
61
|
+
ScheduledQueryArn?: string | undefined;
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export declare class QueryExecutionException extends __BaseException {
|
|
67
|
+
readonly name: "QueryExecutionException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message?: string | undefined;
|
|
70
|
+
constructor(
|
|
71
|
+
opts: __ExceptionOptionType<QueryExecutionException, __BaseException>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
ComputeMode,
|
|
3
|
+
DimensionValueType,
|
|
4
|
+
LastUpdateStatus,
|
|
5
|
+
MeasureValueType,
|
|
6
|
+
QueryInsightsMode,
|
|
7
|
+
QueryPricingModel,
|
|
8
|
+
S3EncryptionOption,
|
|
9
|
+
ScalarMeasureValueType,
|
|
10
|
+
ScalarType,
|
|
11
|
+
ScheduledQueryInsightsMode,
|
|
12
|
+
ScheduledQueryRunStatus,
|
|
13
|
+
ScheduledQueryState,
|
|
14
|
+
} from "./enums";
|
|
11
15
|
export interface SnsConfiguration {
|
|
12
16
|
TopicArn: string | undefined;
|
|
13
17
|
}
|
|
@@ -21,69 +25,6 @@ export interface CancelQueryRequest {
|
|
|
21
25
|
export interface CancelQueryResponse {
|
|
22
26
|
CancellationMessage?: string | undefined;
|
|
23
27
|
}
|
|
24
|
-
export declare class InternalServerException extends __BaseException {
|
|
25
|
-
readonly name: "InternalServerException";
|
|
26
|
-
readonly $fault: "server";
|
|
27
|
-
Message?: string | undefined;
|
|
28
|
-
constructor(
|
|
29
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
30
|
-
);
|
|
31
|
-
}
|
|
32
|
-
export declare class InvalidEndpointException extends __BaseException {
|
|
33
|
-
readonly name: "InvalidEndpointException";
|
|
34
|
-
readonly $fault: "client";
|
|
35
|
-
Message?: string | undefined;
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>
|
|
38
|
-
);
|
|
39
|
-
}
|
|
40
|
-
export declare class ThrottlingException extends __BaseException {
|
|
41
|
-
readonly name: "ThrottlingException";
|
|
42
|
-
readonly $fault: "client";
|
|
43
|
-
Message?: string | undefined;
|
|
44
|
-
constructor(
|
|
45
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
46
|
-
);
|
|
47
|
-
}
|
|
48
|
-
export declare class ValidationException extends __BaseException {
|
|
49
|
-
readonly name: "ValidationException";
|
|
50
|
-
readonly $fault: "client";
|
|
51
|
-
Message?: string | undefined;
|
|
52
|
-
constructor(
|
|
53
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
54
|
-
);
|
|
55
|
-
}
|
|
56
|
-
export declare const ScalarType: {
|
|
57
|
-
readonly BIGINT: "BIGINT";
|
|
58
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
59
|
-
readonly DATE: "DATE";
|
|
60
|
-
readonly DOUBLE: "DOUBLE";
|
|
61
|
-
readonly INTEGER: "INTEGER";
|
|
62
|
-
readonly INTERVAL_DAY_TO_SECOND: "INTERVAL_DAY_TO_SECOND";
|
|
63
|
-
readonly INTERVAL_YEAR_TO_MONTH: "INTERVAL_YEAR_TO_MONTH";
|
|
64
|
-
readonly TIME: "TIME";
|
|
65
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
66
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
67
|
-
readonly VARCHAR: "VARCHAR";
|
|
68
|
-
};
|
|
69
|
-
export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
|
|
70
|
-
export declare const ComputeMode: {
|
|
71
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
72
|
-
readonly PROVISIONED: "PROVISIONED";
|
|
73
|
-
};
|
|
74
|
-
export type ComputeMode = (typeof ComputeMode)[keyof typeof ComputeMode];
|
|
75
|
-
export declare class ConflictException extends __BaseException {
|
|
76
|
-
readonly name: "ConflictException";
|
|
77
|
-
readonly $fault: "client";
|
|
78
|
-
Message?: string | undefined;
|
|
79
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
80
|
-
}
|
|
81
|
-
export declare const S3EncryptionOption: {
|
|
82
|
-
readonly SSE_KMS: "SSE_KMS";
|
|
83
|
-
readonly SSE_S3: "SSE_S3";
|
|
84
|
-
};
|
|
85
|
-
export type S3EncryptionOption =
|
|
86
|
-
(typeof S3EncryptionOption)[keyof typeof S3EncryptionOption];
|
|
87
28
|
export interface S3Configuration {
|
|
88
29
|
BucketName: string | undefined;
|
|
89
30
|
ObjectKeyPrefix?: string | undefined;
|
|
@@ -102,33 +43,10 @@ export interface Tag {
|
|
|
102
43
|
Key: string | undefined;
|
|
103
44
|
Value: string | undefined;
|
|
104
45
|
}
|
|
105
|
-
export declare const DimensionValueType: {
|
|
106
|
-
readonly VARCHAR: "VARCHAR";
|
|
107
|
-
};
|
|
108
|
-
export type DimensionValueType =
|
|
109
|
-
(typeof DimensionValueType)[keyof typeof DimensionValueType];
|
|
110
46
|
export interface DimensionMapping {
|
|
111
47
|
Name: string | undefined;
|
|
112
48
|
DimensionValueType: DimensionValueType | undefined;
|
|
113
49
|
}
|
|
114
|
-
export declare const MeasureValueType: {
|
|
115
|
-
readonly BIGINT: "BIGINT";
|
|
116
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
117
|
-
readonly DOUBLE: "DOUBLE";
|
|
118
|
-
readonly MULTI: "MULTI";
|
|
119
|
-
readonly VARCHAR: "VARCHAR";
|
|
120
|
-
};
|
|
121
|
-
export type MeasureValueType =
|
|
122
|
-
(typeof MeasureValueType)[keyof typeof MeasureValueType];
|
|
123
|
-
export declare const ScalarMeasureValueType: {
|
|
124
|
-
readonly BIGINT: "BIGINT";
|
|
125
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
126
|
-
readonly DOUBLE: "DOUBLE";
|
|
127
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
128
|
-
readonly VARCHAR: "VARCHAR";
|
|
129
|
-
};
|
|
130
|
-
export type ScalarMeasureValueType =
|
|
131
|
-
(typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType];
|
|
132
50
|
export interface MultiMeasureAttributeMapping {
|
|
133
51
|
SourceColumn: string | undefined;
|
|
134
52
|
TargetMultiMeasureAttributeName?: string | undefined;
|
|
@@ -172,34 +90,10 @@ export interface CreateScheduledQueryRequest {
|
|
|
172
90
|
export interface CreateScheduledQueryResponse {
|
|
173
91
|
Arn: string | undefined;
|
|
174
92
|
}
|
|
175
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
176
|
-
readonly name: "ServiceQuotaExceededException";
|
|
177
|
-
readonly $fault: "client";
|
|
178
|
-
Message?: string | undefined;
|
|
179
|
-
constructor(
|
|
180
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
181
|
-
);
|
|
182
|
-
}
|
|
183
93
|
export interface DeleteScheduledQueryRequest {
|
|
184
94
|
ScheduledQueryArn: string | undefined;
|
|
185
95
|
}
|
|
186
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
187
|
-
readonly name: "ResourceNotFoundException";
|
|
188
|
-
readonly $fault: "client";
|
|
189
|
-
Message?: string | undefined;
|
|
190
|
-
ScheduledQueryArn?: string | undefined;
|
|
191
|
-
constructor(
|
|
192
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
193
|
-
);
|
|
194
|
-
}
|
|
195
96
|
export interface DescribeAccountSettingsRequest {}
|
|
196
|
-
export declare const LastUpdateStatus: {
|
|
197
|
-
readonly FAILED: "FAILED";
|
|
198
|
-
readonly PENDING: "PENDING";
|
|
199
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
200
|
-
};
|
|
201
|
-
export type LastUpdateStatus =
|
|
202
|
-
(typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
|
|
203
97
|
export interface LastUpdate {
|
|
204
98
|
TargetQueryTCU?: number | undefined;
|
|
205
99
|
Status?: LastUpdateStatus | undefined;
|
|
@@ -216,12 +110,6 @@ export interface QueryComputeResponse {
|
|
|
216
110
|
ComputeMode?: ComputeMode | undefined;
|
|
217
111
|
ProvisionedCapacity?: ProvisionedCapacityResponse | undefined;
|
|
218
112
|
}
|
|
219
|
-
export declare const QueryPricingModel: {
|
|
220
|
-
readonly BYTES_SCANNED: "BYTES_SCANNED";
|
|
221
|
-
readonly COMPUTE_UNITS: "COMPUTE_UNITS";
|
|
222
|
-
};
|
|
223
|
-
export type QueryPricingModel =
|
|
224
|
-
(typeof QueryPricingModel)[keyof typeof QueryPricingModel];
|
|
225
113
|
export interface DescribeAccountSettingsResponse {
|
|
226
114
|
MaxQueryTCU?: number | undefined;
|
|
227
115
|
QueryPricingModel?: QueryPricingModel | undefined;
|
|
@@ -275,14 +163,6 @@ export interface ScheduledQueryInsightsResponse {
|
|
|
275
163
|
OutputRows?: number | undefined;
|
|
276
164
|
OutputBytes?: number | undefined;
|
|
277
165
|
}
|
|
278
|
-
export declare const ScheduledQueryRunStatus: {
|
|
279
|
-
readonly AUTO_TRIGGER_FAILURE: "AUTO_TRIGGER_FAILURE";
|
|
280
|
-
readonly AUTO_TRIGGER_SUCCESS: "AUTO_TRIGGER_SUCCESS";
|
|
281
|
-
readonly MANUAL_TRIGGER_FAILURE: "MANUAL_TRIGGER_FAILURE";
|
|
282
|
-
readonly MANUAL_TRIGGER_SUCCESS: "MANUAL_TRIGGER_SUCCESS";
|
|
283
|
-
};
|
|
284
|
-
export type ScheduledQueryRunStatus =
|
|
285
|
-
(typeof ScheduledQueryRunStatus)[keyof typeof ScheduledQueryRunStatus];
|
|
286
166
|
export interface ScheduledQueryRunSummary {
|
|
287
167
|
InvocationTime?: Date | undefined;
|
|
288
168
|
TriggerTime?: Date | undefined;
|
|
@@ -292,12 +172,6 @@ export interface ScheduledQueryRunSummary {
|
|
|
292
172
|
ErrorReportLocation?: ErrorReportLocation | undefined;
|
|
293
173
|
FailureReason?: string | undefined;
|
|
294
174
|
}
|
|
295
|
-
export declare const ScheduledQueryState: {
|
|
296
|
-
readonly DISABLED: "DISABLED";
|
|
297
|
-
readonly ENABLED: "ENABLED";
|
|
298
|
-
};
|
|
299
|
-
export type ScheduledQueryState =
|
|
300
|
-
(typeof ScheduledQueryState)[keyof typeof ScheduledQueryState];
|
|
301
175
|
export interface ScheduledQueryDescription {
|
|
302
176
|
Arn: string | undefined;
|
|
303
177
|
Name: string | undefined;
|
|
@@ -318,12 +192,6 @@ export interface ScheduledQueryDescription {
|
|
|
318
192
|
export interface DescribeScheduledQueryResponse {
|
|
319
193
|
ScheduledQuery: ScheduledQueryDescription | undefined;
|
|
320
194
|
}
|
|
321
|
-
export declare const ScheduledQueryInsightsMode: {
|
|
322
|
-
readonly DISABLED: "DISABLED";
|
|
323
|
-
readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
|
|
324
|
-
};
|
|
325
|
-
export type ScheduledQueryInsightsMode =
|
|
326
|
-
(typeof ScheduledQueryInsightsMode)[keyof typeof ScheduledQueryInsightsMode];
|
|
327
195
|
export interface ScheduledQueryInsights {
|
|
328
196
|
Mode: ScheduledQueryInsightsMode | undefined;
|
|
329
197
|
}
|
|
@@ -378,20 +246,6 @@ export interface ProvisionedCapacityRequest {
|
|
|
378
246
|
| AccountSettingsNotificationConfiguration
|
|
379
247
|
| undefined;
|
|
380
248
|
}
|
|
381
|
-
export declare class QueryExecutionException extends __BaseException {
|
|
382
|
-
readonly name: "QueryExecutionException";
|
|
383
|
-
readonly $fault: "client";
|
|
384
|
-
Message?: string | undefined;
|
|
385
|
-
constructor(
|
|
386
|
-
opts: __ExceptionOptionType<QueryExecutionException, __BaseException>
|
|
387
|
-
);
|
|
388
|
-
}
|
|
389
|
-
export declare const QueryInsightsMode: {
|
|
390
|
-
readonly DISABLED: "DISABLED";
|
|
391
|
-
readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
|
|
392
|
-
};
|
|
393
|
-
export type QueryInsightsMode =
|
|
394
|
-
(typeof QueryInsightsMode)[keyof typeof QueryInsightsMode];
|
|
395
249
|
export interface QueryInsights {
|
|
396
250
|
Mode: QueryInsightsMode | undefined;
|
|
397
251
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-query",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Query Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-query",
|
|
@@ -20,39 +20,39 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
31
|
+
"@aws-sdk/types": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.3",
|
|
36
|
-
"@smithy/core": "^3.18.
|
|
36
|
+
"@smithy/core": "^3.18.5",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
38
38
|
"@smithy/hash-node": "^4.2.5",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.5",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.5",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.5",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.5",
|
|
48
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
49
49
|
"@smithy/types": "^4.9.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.5",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.5",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.5",
|
|
58
58
|
"@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";
|