@aws-sdk/client-timestream-query 3.428.0 → 3.429.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.
|
@@ -156,7 +156,7 @@ export interface S3Configuration {
|
|
|
156
156
|
* <p> Encryption at rest options for the error reports. If no encryption option is
|
|
157
157
|
* specified, Timestream will choose SSE_S3 as default. </p>
|
|
158
158
|
*/
|
|
159
|
-
EncryptionOption?: S3EncryptionOption
|
|
159
|
+
EncryptionOption?: S3EncryptionOption;
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
162
|
* @public
|
|
@@ -249,7 +249,7 @@ export interface DimensionMapping {
|
|
|
249
249
|
* @public
|
|
250
250
|
* <p>Type for the dimension. </p>
|
|
251
251
|
*/
|
|
252
|
-
DimensionValueType: DimensionValueType |
|
|
252
|
+
DimensionValueType: DimensionValueType | undefined;
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* @public
|
|
@@ -301,7 +301,7 @@ export interface MultiMeasureAttributeMapping {
|
|
|
301
301
|
* @public
|
|
302
302
|
* <p>Type of the attribute to be read from the source column.</p>
|
|
303
303
|
*/
|
|
304
|
-
MeasureValueType: ScalarMeasureValueType |
|
|
304
|
+
MeasureValueType: ScalarMeasureValueType | undefined;
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
307
307
|
* @public
|
|
@@ -332,7 +332,7 @@ export interface MixedMeasureMapping {
|
|
|
332
332
|
* <p>Type of the value that is to be read from sourceColumn. If the mapping is for MULTI,
|
|
333
333
|
* use MeasureValueType.MULTI.</p>
|
|
334
334
|
*/
|
|
335
|
-
MeasureValueType: MeasureValueType |
|
|
335
|
+
MeasureValueType: MeasureValueType | undefined;
|
|
336
336
|
/**
|
|
337
337
|
* @public
|
|
338
338
|
* <p>Required when measureValueType is MULTI. Attribute mappings for MULTI value
|
|
@@ -685,7 +685,7 @@ export interface ScheduledQueryRunSummary {
|
|
|
685
685
|
* @public
|
|
686
686
|
* <p>The status of a scheduled query run.</p>
|
|
687
687
|
*/
|
|
688
|
-
RunStatus?: ScheduledQueryRunStatus
|
|
688
|
+
RunStatus?: ScheduledQueryRunStatus;
|
|
689
689
|
/**
|
|
690
690
|
* @public
|
|
691
691
|
* <p>Runtime statistics for a scheduled run.</p>
|
|
@@ -744,7 +744,7 @@ export interface ScheduledQueryDescription {
|
|
|
744
744
|
* @public
|
|
745
745
|
* <p>State of the scheduled query. </p>
|
|
746
746
|
*/
|
|
747
|
-
State: ScheduledQueryState |
|
|
747
|
+
State: ScheduledQueryState | undefined;
|
|
748
748
|
/**
|
|
749
749
|
* @public
|
|
750
750
|
* <p>Last time the query was run.</p>
|
|
@@ -896,7 +896,7 @@ export interface ScheduledQuery {
|
|
|
896
896
|
* @public
|
|
897
897
|
* <p>State of scheduled query. </p>
|
|
898
898
|
*/
|
|
899
|
-
State: ScheduledQueryState |
|
|
899
|
+
State: ScheduledQueryState | undefined;
|
|
900
900
|
/**
|
|
901
901
|
* @public
|
|
902
902
|
* <p>The last time the scheduled query was run.</p>
|
|
@@ -921,7 +921,7 @@ export interface ScheduledQuery {
|
|
|
921
921
|
* @public
|
|
922
922
|
* <p>Status of the last scheduled query run.</p>
|
|
923
923
|
*/
|
|
924
|
-
LastRunStatus?: ScheduledQueryRunStatus
|
|
924
|
+
LastRunStatus?: ScheduledQueryRunStatus;
|
|
925
925
|
}
|
|
926
926
|
/**
|
|
927
927
|
* @public
|
|
@@ -1199,7 +1199,7 @@ export interface UpdateScheduledQueryRequest {
|
|
|
1199
1199
|
* @public
|
|
1200
1200
|
* <p>State of the scheduled query. </p>
|
|
1201
1201
|
*/
|
|
1202
|
-
State: ScheduledQueryState |
|
|
1202
|
+
State: ScheduledQueryState | undefined;
|
|
1203
1203
|
}
|
|
1204
1204
|
/**
|
|
1205
1205
|
* @public
|
|
@@ -1234,7 +1234,7 @@ export interface Type {
|
|
|
1234
1234
|
* <p>Indicates if the column is of type string, integer, Boolean, double, timestamp, date,
|
|
1235
1235
|
* time. </p>
|
|
1236
1236
|
*/
|
|
1237
|
-
ScalarType?: ScalarType
|
|
1237
|
+
ScalarType?: ScalarType;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* @public
|
|
1240
1240
|
* <p>Indicates if the column is an array.</p>
|
|
@@ -75,7 +75,7 @@ export type S3EncryptionOption =
|
|
|
75
75
|
export interface S3Configuration {
|
|
76
76
|
BucketName: string | undefined;
|
|
77
77
|
ObjectKeyPrefix?: string;
|
|
78
|
-
EncryptionOption?: S3EncryptionOption
|
|
78
|
+
EncryptionOption?: S3EncryptionOption;
|
|
79
79
|
}
|
|
80
80
|
export interface ErrorReportConfiguration {
|
|
81
81
|
S3Configuration: S3Configuration | undefined;
|
|
@@ -100,7 +100,7 @@ export type DimensionValueType =
|
|
|
100
100
|
(typeof DimensionValueType)[keyof typeof DimensionValueType];
|
|
101
101
|
export interface DimensionMapping {
|
|
102
102
|
Name: string | undefined;
|
|
103
|
-
DimensionValueType: DimensionValueType |
|
|
103
|
+
DimensionValueType: DimensionValueType | undefined;
|
|
104
104
|
}
|
|
105
105
|
export declare const MeasureValueType: {
|
|
106
106
|
readonly BIGINT: "BIGINT";
|
|
@@ -123,13 +123,13 @@ export type ScalarMeasureValueType =
|
|
|
123
123
|
export interface MultiMeasureAttributeMapping {
|
|
124
124
|
SourceColumn: string | undefined;
|
|
125
125
|
TargetMultiMeasureAttributeName?: string;
|
|
126
|
-
MeasureValueType: ScalarMeasureValueType |
|
|
126
|
+
MeasureValueType: ScalarMeasureValueType | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface MixedMeasureMapping {
|
|
129
129
|
MeasureName?: string;
|
|
130
130
|
SourceColumn?: string;
|
|
131
131
|
TargetMeasureName?: string;
|
|
132
|
-
MeasureValueType: MeasureValueType |
|
|
132
|
+
MeasureValueType: MeasureValueType | undefined;
|
|
133
133
|
MultiMeasureAttributeMappings?: MultiMeasureAttributeMapping[];
|
|
134
134
|
}
|
|
135
135
|
export interface MultiMeasureMappings {
|
|
@@ -219,7 +219,7 @@ export type ScheduledQueryRunStatus =
|
|
|
219
219
|
export interface ScheduledQueryRunSummary {
|
|
220
220
|
InvocationTime?: Date;
|
|
221
221
|
TriggerTime?: Date;
|
|
222
|
-
RunStatus?: ScheduledQueryRunStatus
|
|
222
|
+
RunStatus?: ScheduledQueryRunStatus;
|
|
223
223
|
ExecutionStats?: ExecutionStats;
|
|
224
224
|
ErrorReportLocation?: ErrorReportLocation;
|
|
225
225
|
FailureReason?: string;
|
|
@@ -235,7 +235,7 @@ export interface ScheduledQueryDescription {
|
|
|
235
235
|
Name: string | undefined;
|
|
236
236
|
QueryString: string | undefined;
|
|
237
237
|
CreationTime?: Date;
|
|
238
|
-
State: ScheduledQueryState |
|
|
238
|
+
State: ScheduledQueryState | undefined;
|
|
239
239
|
PreviousInvocationTime?: Date;
|
|
240
240
|
NextInvocationTime?: Date;
|
|
241
241
|
ScheduleConfiguration: ScheduleConfiguration | undefined;
|
|
@@ -270,12 +270,12 @@ export interface ScheduledQuery {
|
|
|
270
270
|
Arn: string | undefined;
|
|
271
271
|
Name: string | undefined;
|
|
272
272
|
CreationTime?: Date;
|
|
273
|
-
State: ScheduledQueryState |
|
|
273
|
+
State: ScheduledQueryState | undefined;
|
|
274
274
|
PreviousInvocationTime?: Date;
|
|
275
275
|
NextInvocationTime?: Date;
|
|
276
276
|
ErrorReportConfiguration?: ErrorReportConfiguration;
|
|
277
277
|
TargetDestination?: TargetDestination;
|
|
278
|
-
LastRunStatus?: ScheduledQueryRunStatus
|
|
278
|
+
LastRunStatus?: ScheduledQueryRunStatus;
|
|
279
279
|
}
|
|
280
280
|
export interface ListScheduledQueriesResponse {
|
|
281
281
|
ScheduledQueries: ScheduledQuery[] | undefined;
|
|
@@ -325,14 +325,14 @@ export interface UntagResourceRequest {
|
|
|
325
325
|
export interface UntagResourceResponse {}
|
|
326
326
|
export interface UpdateScheduledQueryRequest {
|
|
327
327
|
ScheduledQueryArn: string | undefined;
|
|
328
|
-
State: ScheduledQueryState |
|
|
328
|
+
State: ScheduledQueryState | undefined;
|
|
329
329
|
}
|
|
330
330
|
export interface ColumnInfo {
|
|
331
331
|
Name?: string;
|
|
332
332
|
Type: Type | undefined;
|
|
333
333
|
}
|
|
334
334
|
export interface Type {
|
|
335
|
-
ScalarType?: ScalarType
|
|
335
|
+
ScalarType?: ScalarType;
|
|
336
336
|
ArrayColumnInfo?: ColumnInfo;
|
|
337
337
|
TimeSeriesMeasureValueColumnInfo?: ColumnInfo;
|
|
338
338
|
RowColumnInfo?: ColumnInfo[];
|
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.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
26
|
"@aws-sdk/middleware-endpoint-discovery": "3.428.0",
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@smithy/hash-node": "^2.0.11",
|
|
40
40
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
41
41
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
43
43
|
"@smithy/middleware-retry": "^2.0.16",
|
|
44
44
|
"@smithy/middleware-serde": "^2.0.11",
|
|
45
45
|
"@smithy/middleware-stack": "^2.0.5",
|