@aws-sdk/client-timestream-query 3.321.1 → 3.326.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-types/commands/CancelQueryCommand.d.ts +6 -0
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +6 -0
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +11 -0
- package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +110 -0
- package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +4 -0
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +30 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/PrepareQueryCommand.d.ts +44 -0
- package/dist-types/commands/QueryCommand.d.ts +66 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +4 -0
- package/package.json +17 -17
|
@@ -36,6 +36,10 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CancelQueryCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CancelQueryResponse
|
|
40
|
+
* // CancellationMessage: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
39
43
|
* ```
|
|
40
44
|
*
|
|
41
45
|
* @param CancelQueryCommandInput - {@link CancelQueryCommandInput}
|
|
@@ -61,6 +65,8 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
|
|
|
61
65
|
* @throws {@link ValidationException} (client fault)
|
|
62
66
|
* <p> Invalid or malformed request. </p>
|
|
63
67
|
*
|
|
68
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
64
70
|
*
|
|
65
71
|
*/
|
|
66
72
|
export declare class CancelQueryCommand extends $Command<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -99,6 +99,10 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
|
|
|
99
99
|
* };
|
|
100
100
|
* const command = new CreateScheduledQueryCommand(input);
|
|
101
101
|
* const response = await client.send(command);
|
|
102
|
+
* // { // CreateScheduledQueryResponse
|
|
103
|
+
* // Arn: "STRING_VALUE", // required
|
|
104
|
+
* // };
|
|
105
|
+
*
|
|
102
106
|
* ```
|
|
103
107
|
*
|
|
104
108
|
* @param CreateScheduledQueryCommandInput - {@link CreateScheduledQueryCommandInput}
|
|
@@ -130,6 +134,8 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
|
|
|
130
134
|
* @throws {@link ValidationException} (client fault)
|
|
131
135
|
* <p> Invalid or malformed request. </p>
|
|
132
136
|
*
|
|
137
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
138
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
133
139
|
*
|
|
134
140
|
*/
|
|
135
141
|
export declare class CreateScheduledQueryCommand extends $Command<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteScheduledQueryCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteScheduledQueryCommandInput - {@link DeleteScheduledQueryCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p> Invalid or malformed request. </p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteScheduledQueryCommand extends $Command<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -49,6 +49,15 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
|
|
|
49
49
|
* const input = {};
|
|
50
50
|
* const command = new DescribeEndpointsCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // DescribeEndpointsResponse
|
|
53
|
+
* // Endpoints: [ // Endpoints // required
|
|
54
|
+
* // { // Endpoint
|
|
55
|
+
* // Address: "STRING_VALUE", // required
|
|
56
|
+
* // CachePeriodInMinutes: Number("long"), // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
52
61
|
* ```
|
|
53
62
|
*
|
|
54
63
|
* @param DescribeEndpointsCommandInput - {@link DescribeEndpointsCommandInput}
|
|
@@ -68,6 +77,8 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
|
|
|
68
77
|
* @throws {@link ValidationException} (client fault)
|
|
69
78
|
* <p> Invalid or malformed request. </p>
|
|
70
79
|
*
|
|
80
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
71
82
|
*
|
|
72
83
|
*/
|
|
73
84
|
export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -31,6 +31,114 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeScheduledQueryCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeScheduledQueryResponse
|
|
35
|
+
* // ScheduledQuery: { // ScheduledQueryDescription
|
|
36
|
+
* // Arn: "STRING_VALUE", // required
|
|
37
|
+
* // Name: "STRING_VALUE", // required
|
|
38
|
+
* // QueryString: "STRING_VALUE", // required
|
|
39
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // State: "STRING_VALUE", // required
|
|
41
|
+
* // PreviousInvocationTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // NextInvocationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // ScheduleConfiguration: { // ScheduleConfiguration
|
|
44
|
+
* // ScheduleExpression: "STRING_VALUE", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // NotificationConfiguration: { // NotificationConfiguration
|
|
47
|
+
* // SnsConfiguration: { // SnsConfiguration
|
|
48
|
+
* // TopicArn: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // TargetConfiguration: { // TargetConfiguration
|
|
52
|
+
* // TimestreamConfiguration: { // TimestreamConfiguration
|
|
53
|
+
* // DatabaseName: "STRING_VALUE", // required
|
|
54
|
+
* // TableName: "STRING_VALUE", // required
|
|
55
|
+
* // TimeColumn: "STRING_VALUE", // required
|
|
56
|
+
* // DimensionMappings: [ // DimensionMappingList // required
|
|
57
|
+
* // { // DimensionMapping
|
|
58
|
+
* // Name: "STRING_VALUE", // required
|
|
59
|
+
* // DimensionValueType: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // MultiMeasureMappings: { // MultiMeasureMappings
|
|
63
|
+
* // TargetMultiMeasureName: "STRING_VALUE",
|
|
64
|
+
* // MultiMeasureAttributeMappings: [ // MultiMeasureAttributeMappingList // required
|
|
65
|
+
* // { // MultiMeasureAttributeMapping
|
|
66
|
+
* // SourceColumn: "STRING_VALUE", // required
|
|
67
|
+
* // TargetMultiMeasureAttributeName: "STRING_VALUE",
|
|
68
|
+
* // MeasureValueType: "STRING_VALUE", // required
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // MixedMeasureMappings: [ // MixedMeasureMappingList
|
|
73
|
+
* // { // MixedMeasureMapping
|
|
74
|
+
* // MeasureName: "STRING_VALUE",
|
|
75
|
+
* // SourceColumn: "STRING_VALUE",
|
|
76
|
+
* // TargetMeasureName: "STRING_VALUE",
|
|
77
|
+
* // MeasureValueType: "STRING_VALUE", // required
|
|
78
|
+
* // MultiMeasureAttributeMappings: [
|
|
79
|
+
* // {
|
|
80
|
+
* // SourceColumn: "STRING_VALUE", // required
|
|
81
|
+
* // TargetMultiMeasureAttributeName: "STRING_VALUE",
|
|
82
|
+
* // MeasureValueType: "STRING_VALUE", // required
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // MeasureNameColumn: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // },
|
|
90
|
+
* // ScheduledQueryExecutionRoleArn: "STRING_VALUE",
|
|
91
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
92
|
+
* // ErrorReportConfiguration: { // ErrorReportConfiguration
|
|
93
|
+
* // S3Configuration: { // S3Configuration
|
|
94
|
+
* // BucketName: "STRING_VALUE", // required
|
|
95
|
+
* // ObjectKeyPrefix: "STRING_VALUE",
|
|
96
|
+
* // EncryptionOption: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // },
|
|
99
|
+
* // LastRunSummary: { // ScheduledQueryRunSummary
|
|
100
|
+
* // InvocationTime: new Date("TIMESTAMP"),
|
|
101
|
+
* // TriggerTime: new Date("TIMESTAMP"),
|
|
102
|
+
* // RunStatus: "STRING_VALUE",
|
|
103
|
+
* // ExecutionStats: { // ExecutionStats
|
|
104
|
+
* // ExecutionTimeInMillis: Number("long"),
|
|
105
|
+
* // DataWrites: Number("long"),
|
|
106
|
+
* // BytesMetered: Number("long"),
|
|
107
|
+
* // RecordsIngested: Number("long"),
|
|
108
|
+
* // QueryResultRows: Number("long"),
|
|
109
|
+
* // },
|
|
110
|
+
* // ErrorReportLocation: { // ErrorReportLocation
|
|
111
|
+
* // S3ReportLocation: { // S3ReportLocation
|
|
112
|
+
* // BucketName: "STRING_VALUE",
|
|
113
|
+
* // ObjectKey: "STRING_VALUE",
|
|
114
|
+
* // },
|
|
115
|
+
* // },
|
|
116
|
+
* // FailureReason: "STRING_VALUE",
|
|
117
|
+
* // },
|
|
118
|
+
* // RecentlyFailedRuns: [ // ScheduledQueryRunSummaryList
|
|
119
|
+
* // {
|
|
120
|
+
* // InvocationTime: new Date("TIMESTAMP"),
|
|
121
|
+
* // TriggerTime: new Date("TIMESTAMP"),
|
|
122
|
+
* // RunStatus: "STRING_VALUE",
|
|
123
|
+
* // ExecutionStats: {
|
|
124
|
+
* // ExecutionTimeInMillis: Number("long"),
|
|
125
|
+
* // DataWrites: Number("long"),
|
|
126
|
+
* // BytesMetered: Number("long"),
|
|
127
|
+
* // RecordsIngested: Number("long"),
|
|
128
|
+
* // QueryResultRows: Number("long"),
|
|
129
|
+
* // },
|
|
130
|
+
* // ErrorReportLocation: {
|
|
131
|
+
* // S3ReportLocation: {
|
|
132
|
+
* // BucketName: "STRING_VALUE",
|
|
133
|
+
* // ObjectKey: "STRING_VALUE",
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // FailureReason: "STRING_VALUE",
|
|
137
|
+
* // },
|
|
138
|
+
* // ],
|
|
139
|
+
* // },
|
|
140
|
+
* // };
|
|
141
|
+
*
|
|
34
142
|
* ```
|
|
35
143
|
*
|
|
36
144
|
* @param DescribeScheduledQueryCommandInput - {@link DescribeScheduledQueryCommandInput}
|
|
@@ -59,6 +167,8 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu
|
|
|
59
167
|
* @throws {@link ValidationException} (client fault)
|
|
60
168
|
* <p> Invalid or malformed request. </p>
|
|
61
169
|
*
|
|
170
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
171
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
62
172
|
*
|
|
63
173
|
*/
|
|
64
174
|
export declare class DescribeScheduledQueryCommand extends $Command<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ExecuteScheduledQueryCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param ExecuteScheduledQueryCommandInput - {@link ExecuteScheduledQueryCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
61
63
|
* @throws {@link ValidationException} (client fault)
|
|
62
64
|
* <p> Invalid or malformed request. </p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class ExecuteScheduledQueryCommand extends $Command<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -32,6 +32,34 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListScheduledQueriesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListScheduledQueriesResponse
|
|
36
|
+
* // ScheduledQueries: [ // ScheduledQueryList // required
|
|
37
|
+
* // { // ScheduledQuery
|
|
38
|
+
* // Arn: "STRING_VALUE", // required
|
|
39
|
+
* // Name: "STRING_VALUE", // required
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // State: "STRING_VALUE", // required
|
|
42
|
+
* // PreviousInvocationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // NextInvocationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // ErrorReportConfiguration: { // ErrorReportConfiguration
|
|
45
|
+
* // S3Configuration: { // S3Configuration
|
|
46
|
+
* // BucketName: "STRING_VALUE", // required
|
|
47
|
+
* // ObjectKeyPrefix: "STRING_VALUE",
|
|
48
|
+
* // EncryptionOption: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // TargetDestination: { // TargetDestination
|
|
52
|
+
* // TimestreamDestination: { // TimestreamDestination
|
|
53
|
+
* // DatabaseName: "STRING_VALUE",
|
|
54
|
+
* // TableName: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // LastRunStatus: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
35
63
|
* ```
|
|
36
64
|
*
|
|
37
65
|
* @param ListScheduledQueriesCommandInput - {@link ListScheduledQueriesCommandInput}
|
|
@@ -57,6 +85,8 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR
|
|
|
57
85
|
* @throws {@link ValidationException} (client fault)
|
|
58
86
|
* <p> Invalid or malformed request. </p>
|
|
59
87
|
*
|
|
88
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
60
90
|
*
|
|
61
91
|
*/
|
|
62
92
|
export declare class ListScheduledQueriesCommand extends $Command<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -33,6 +33,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTagsForResourceResponse
|
|
37
|
+
* // Tags: [ // TagList // required
|
|
38
|
+
* // { // Tag
|
|
39
|
+
* // Key: "STRING_VALUE", // required
|
|
40
|
+
* // Value: "STRING_VALUE", // required
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // NextToken: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
36
46
|
* ```
|
|
37
47
|
*
|
|
38
48
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -53,6 +63,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
53
63
|
* @throws {@link ValidationException} (client fault)
|
|
54
64
|
* <p> Invalid or malformed request. </p>
|
|
55
65
|
*
|
|
66
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
56
68
|
*
|
|
57
69
|
*/
|
|
58
70
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -34,6 +34,48 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new PrepareQueryCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // PrepareQueryResponse
|
|
38
|
+
* // QueryString: "STRING_VALUE", // required
|
|
39
|
+
* // Columns: [ // SelectColumnList // required
|
|
40
|
+
* // { // SelectColumn
|
|
41
|
+
* // Name: "STRING_VALUE",
|
|
42
|
+
* // Type: { // Type
|
|
43
|
+
* // ScalarType: "STRING_VALUE",
|
|
44
|
+
* // ArrayColumnInfo: { // ColumnInfo
|
|
45
|
+
* // Name: "STRING_VALUE",
|
|
46
|
+
* // Type: {
|
|
47
|
+
* // ScalarType: "STRING_VALUE",
|
|
48
|
+
* // ArrayColumnInfo: {
|
|
49
|
+
* // Name: "STRING_VALUE",
|
|
50
|
+
* // Type: "<Type>", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // TimeSeriesMeasureValueColumnInfo: {
|
|
53
|
+
* // Name: "STRING_VALUE",
|
|
54
|
+
* // Type: "<Type>", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // RowColumnInfo: [ // ColumnInfoList
|
|
57
|
+
* // "<ColumnInfo>",
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // TimeSeriesMeasureValueColumnInfo: "<ColumnInfo>",
|
|
62
|
+
* // RowColumnInfo: [
|
|
63
|
+
* // "<ColumnInfo>",
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // DatabaseName: "STRING_VALUE",
|
|
67
|
+
* // TableName: "STRING_VALUE",
|
|
68
|
+
* // Aliased: true || false,
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // Parameters: [ // ParameterMappingList // required
|
|
72
|
+
* // { // ParameterMapping
|
|
73
|
+
* // Name: "STRING_VALUE", // required
|
|
74
|
+
* // Type: "<Type>", // required
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
37
79
|
* ```
|
|
38
80
|
*
|
|
39
81
|
* @param PrepareQueryCommandInput - {@link PrepareQueryCommandInput}
|
|
@@ -59,6 +101,8 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad
|
|
|
59
101
|
* @throws {@link ValidationException} (client fault)
|
|
60
102
|
* <p> Invalid or malformed request. </p>
|
|
61
103
|
*
|
|
104
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
62
106
|
*
|
|
63
107
|
*/
|
|
64
108
|
export declare class PrepareQueryCommand extends $Command<PrepareQueryCommandInput, PrepareQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -64,6 +64,70 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
|
|
|
64
64
|
* };
|
|
65
65
|
* const command = new QueryCommand(input);
|
|
66
66
|
* const response = await client.send(command);
|
|
67
|
+
* // { // QueryResponse
|
|
68
|
+
* // QueryId: "STRING_VALUE", // required
|
|
69
|
+
* // NextToken: "STRING_VALUE",
|
|
70
|
+
* // Rows: [ // RowList // required
|
|
71
|
+
* // { // Row
|
|
72
|
+
* // Data: [ // DatumList // required
|
|
73
|
+
* // { // Datum
|
|
74
|
+
* // ScalarValue: "STRING_VALUE",
|
|
75
|
+
* // TimeSeriesValue: [ // TimeSeriesDataPointList
|
|
76
|
+
* // { // TimeSeriesDataPoint
|
|
77
|
+
* // Time: "STRING_VALUE", // required
|
|
78
|
+
* // Value: {
|
|
79
|
+
* // ScalarValue: "STRING_VALUE",
|
|
80
|
+
* // TimeSeriesValue: [
|
|
81
|
+
* // {
|
|
82
|
+
* // Time: "STRING_VALUE", // required
|
|
83
|
+
* // Value: "<Datum>", // required
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // ArrayValue: [
|
|
87
|
+
* // "<Datum>",
|
|
88
|
+
* // ],
|
|
89
|
+
* // RowValue: {
|
|
90
|
+
* // Data: "<DatumList>", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // NullValue: true || false,
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // ArrayValue: "<DatumList>",
|
|
97
|
+
* // RowValue: "<Row>",
|
|
98
|
+
* // NullValue: true || false,
|
|
99
|
+
* // },
|
|
100
|
+
* // ],
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // ColumnInfo: [ // ColumnInfoList // required
|
|
104
|
+
* // { // ColumnInfo
|
|
105
|
+
* // Name: "STRING_VALUE",
|
|
106
|
+
* // Type: { // Type
|
|
107
|
+
* // ScalarType: "STRING_VALUE",
|
|
108
|
+
* // ArrayColumnInfo: {
|
|
109
|
+
* // Name: "STRING_VALUE",
|
|
110
|
+
* // Type: {
|
|
111
|
+
* // ScalarType: "STRING_VALUE",
|
|
112
|
+
* // ArrayColumnInfo: "<ColumnInfo>",
|
|
113
|
+
* // TimeSeriesMeasureValueColumnInfo: "<ColumnInfo>",
|
|
114
|
+
* // RowColumnInfo: [
|
|
115
|
+
* // "<ColumnInfo>",
|
|
116
|
+
* // ],
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // TimeSeriesMeasureValueColumnInfo: "<ColumnInfo>",
|
|
120
|
+
* // RowColumnInfo: "<ColumnInfoList>",
|
|
121
|
+
* // },
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
124
|
+
* // QueryStatus: { // QueryStatus
|
|
125
|
+
* // ProgressPercentage: Number("double"),
|
|
126
|
+
* // CumulativeBytesScanned: Number("long"),
|
|
127
|
+
* // CumulativeBytesMetered: Number("long"),
|
|
128
|
+
* // },
|
|
129
|
+
* // };
|
|
130
|
+
*
|
|
67
131
|
* ```
|
|
68
132
|
*
|
|
69
133
|
* @param QueryCommandInput - {@link QueryCommandInput}
|
|
@@ -96,6 +160,8 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
|
|
|
96
160
|
* @throws {@link ValidationException} (client fault)
|
|
97
161
|
* <p> Invalid or malformed request. </p>
|
|
98
162
|
*
|
|
163
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
164
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
99
165
|
*
|
|
100
166
|
*/
|
|
101
167
|
export declare class QueryCommand extends $Command<QueryCommandInput, QueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new TagResourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
62
64
|
* @throws {@link ValidationException} (client fault)
|
|
63
65
|
* <p> Invalid or malformed request. </p>
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p> Invalid or malformed request. </p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateScheduledQueryCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param UpdateScheduledQueryCommandInput - {@link UpdateScheduledQueryCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p> Invalid or malformed request. </p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link TimestreamQueryServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class UpdateScheduledQueryCommand extends $Command<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
|
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.326.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,34 +21,34 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
33
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
34
|
-
"@aws-sdk/middleware-logger": "3.
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
36
|
-
"@aws-sdk/middleware-retry": "3.
|
|
37
|
-
"@aws-sdk/middleware-serde": "3.
|
|
38
|
-
"@aws-sdk/middleware-signing": "3.
|
|
39
|
-
"@aws-sdk/middleware-stack": "3.
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.326.0",
|
|
33
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
41
41
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
42
42
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
43
43
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
44
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
45
45
|
"@aws-sdk/types": "3.310.0",
|
|
46
46
|
"@aws-sdk/url-parser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-base64": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
52
52
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
53
53
|
"@aws-sdk/util-retry": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|