@aws-sdk/client-timestream-query 3.533.0 → 3.536.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/TimestreamQuery.d.ts +3 -1
- package/dist-types/TimestreamQueryClient.d.ts +1 -1
- package/dist-types/commands/CancelQueryCommand.d.ts +2 -1
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +4 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PrepareQueryCommand.d.ts +4 -3
- package/dist-types/commands/QueryCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +214 -203
- package/dist-types/ts3.4/TimestreamQuery.d.ts +2 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +9 -0
- package/package.json +41 -41
|
@@ -35,6 +35,7 @@ export interface TimestreamQuery {
|
|
|
35
35
|
/**
|
|
36
36
|
* @see {@link DescribeEndpointsCommand}
|
|
37
37
|
*/
|
|
38
|
+
describeEndpoints(): Promise<DescribeEndpointsCommandOutput>;
|
|
38
39
|
describeEndpoints(args: DescribeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointsCommandOutput>;
|
|
39
40
|
describeEndpoints(args: DescribeEndpointsCommandInput, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
|
|
40
41
|
describeEndpoints(args: DescribeEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
|
|
@@ -53,6 +54,7 @@ export interface TimestreamQuery {
|
|
|
53
54
|
/**
|
|
54
55
|
* @see {@link ListScheduledQueriesCommand}
|
|
55
56
|
*/
|
|
57
|
+
listScheduledQueries(): Promise<ListScheduledQueriesCommandOutput>;
|
|
56
58
|
listScheduledQueries(args: ListScheduledQueriesCommandInput, options?: __HttpHandlerOptions): Promise<ListScheduledQueriesCommandOutput>;
|
|
57
59
|
listScheduledQueries(args: ListScheduledQueriesCommandInput, cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void): void;
|
|
58
60
|
listScheduledQueries(args: ListScheduledQueriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void): void;
|
|
@@ -94,10 +96,10 @@ export interface TimestreamQuery {
|
|
|
94
96
|
updateScheduledQuery(args: UpdateScheduledQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void): void;
|
|
95
97
|
}
|
|
96
98
|
/**
|
|
97
|
-
* @public
|
|
98
99
|
* <fullname>Amazon Timestream Query
|
|
99
100
|
* </fullname>
|
|
100
101
|
* <p></p>
|
|
102
|
+
* @public
|
|
101
103
|
*/
|
|
102
104
|
export declare class TimestreamQuery extends TimestreamQueryClient implements TimestreamQuery {
|
|
103
105
|
}
|
|
@@ -171,10 +171,10 @@ export type TimestreamQueryClientResolvedConfigType = __SmithyResolvedConfigurat
|
|
|
171
171
|
export interface TimestreamQueryClientResolvedConfig extends TimestreamQueryClientResolvedConfigType {
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <fullname>Amazon Timestream Query
|
|
176
175
|
* </fullname>
|
|
177
176
|
* <p></p>
|
|
177
|
+
* @public
|
|
178
178
|
*/
|
|
179
179
|
export declare class TimestreamQueryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig> {
|
|
180
180
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelQueryCommand_base: {
|
|
24
24
|
new (input: CancelQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Cancels a query that has been issued. Cancellation is provided only if the query has
|
|
30
30
|
* not completed running before the cancellation request was issued. Because cancellation
|
|
31
31
|
* is an idempotent operation, subsequent cancellation requests will return a
|
|
@@ -75,6 +75,7 @@ declare const CancelQueryCommand_base: {
|
|
|
75
75
|
* @throws {@link TimestreamQueryServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class CancelQueryCommand extends CancelQueryCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateScheduledQueryCommand_base: {
|
|
24
24
|
new (input: CreateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> Create a scheduled query that will be run on your behalf at the configured schedule.
|
|
30
30
|
* Timestream assumes the execution role provided as part of the
|
|
31
31
|
* <code>ScheduledQueryExecutionRoleArn</code> parameter to run the query. You can use
|
|
@@ -144,6 +144,7 @@ declare const CreateScheduledQueryCommand_base: {
|
|
|
144
144
|
* @throws {@link TimestreamQueryServiceException}
|
|
145
145
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
146
146
|
*
|
|
147
|
+
* @public
|
|
147
148
|
*/
|
|
148
149
|
export declare class CreateScheduledQueryCommand extends CreateScheduledQueryCommand_base {
|
|
149
150
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteScheduledQueryCommand_base: {
|
|
24
24
|
new (input: DeleteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a given scheduled query. This is an irreversible operation. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const DeleteScheduledQueryCommand_base: {
|
|
|
71
71
|
* @throws {@link TimestreamQueryServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DeleteScheduledQueryCommand extends DeleteScheduledQueryCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeEndpointsCommand_base: {
|
|
24
24
|
new (input: DescribeEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeEndpointsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>DescribeEndpoints returns a list of available endpoints to make Timestream
|
|
30
30
|
* API calls against. This API is available through both Write and Query.</p>
|
|
31
31
|
* <p>Because the Timestream SDKs are designed to transparently work with the
|
|
@@ -87,6 +87,7 @@ declare const DescribeEndpointsCommand_base: {
|
|
|
87
87
|
* @throws {@link TimestreamQueryServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeScheduledQueryCommand_base: {
|
|
24
24
|
new (input: DescribeScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides detailed information about a scheduled query.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -177,6 +177,7 @@ declare const DescribeScheduledQueryCommand_base: {
|
|
|
177
177
|
* @throws {@link TimestreamQueryServiceException}
|
|
178
178
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
179
179
|
*
|
|
180
|
+
* @public
|
|
180
181
|
*/
|
|
181
182
|
export declare class DescribeScheduledQueryCommand extends DescribeScheduledQueryCommand_base {
|
|
182
183
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExecuteScheduledQueryCommand_base: {
|
|
24
24
|
new (input: ExecuteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExecuteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p> You can use this API to run a scheduled query manually. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const ExecuteScheduledQueryCommand_base: {
|
|
|
73
73
|
* @throws {@link TimestreamQueryServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class ExecuteScheduledQueryCommand extends ExecuteScheduledQueryCommand_base {
|
|
78
79
|
}
|
|
@@ -22,11 +22,12 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListScheduledQueriesCommand_base: {
|
|
24
24
|
new (input: ListScheduledQueriesCommandInput): import("@smithy/smithy-client").CommandImpl<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListScheduledQueriesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
*
|
|
29
|
-
*
|
|
29
|
+
* <p>Gets a list of all scheduled queries in the caller's Amazon account and Region.
|
|
30
|
+
* <code>ListScheduledQueries</code> is eventually consistent. </p>
|
|
30
31
|
* @example
|
|
31
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
33
|
* ```javascript
|
|
@@ -95,6 +96,7 @@ declare const ListScheduledQueriesCommand_base: {
|
|
|
95
96
|
* @throws {@link TimestreamQueryServiceException}
|
|
96
97
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
97
98
|
*
|
|
99
|
+
* @public
|
|
98
100
|
*/
|
|
99
101
|
export declare class ListScheduledQueriesCommand extends ListScheduledQueriesCommand_base {
|
|
100
102
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List all tags on a Timestream query resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
73
73
|
* @throws {@link TimestreamQueryServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
78
79
|
}
|
|
@@ -22,13 +22,13 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const PrepareQueryCommand_base: {
|
|
24
24
|
new (input: PrepareQueryCommandInput): import("@smithy/smithy-client").CommandImpl<PrepareQueryCommandInput, PrepareQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PrepareQueryCommandInput): import("@smithy/smithy-client").CommandImpl<PrepareQueryCommandInput, PrepareQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>A synchronous operation that allows you to submit a query with parameters to be stored
|
|
30
|
-
* by Timestream for later running. Timestream only supports using this operation with
|
|
31
|
-
* <code>
|
|
30
|
+
* by Timestream for later running. Timestream only supports using this operation with
|
|
31
|
+
* <code>ValidateOnly</code> set to <code>true</code>. </p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -111,6 +111,7 @@ declare const PrepareQueryCommand_base: {
|
|
|
111
111
|
* @throws {@link TimestreamQueryServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
113
113
|
*
|
|
114
|
+
* @public
|
|
114
115
|
*/
|
|
115
116
|
export declare class PrepareQueryCommand extends PrepareQueryCommand_base {
|
|
116
117
|
}
|
|
@@ -22,10 +22,10 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const QueryCommand_base: {
|
|
24
24
|
new (input: QueryCommandInput): import("@smithy/smithy-client").CommandImpl<QueryCommandInput, QueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: QueryCommandInput): import("@smithy/smithy-client").CommandImpl<QueryCommandInput, QueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* <code>Query</code> is a synchronous operation that enables you to run a query against
|
|
31
31
|
* your Amazon Timestream data. <code>Query</code> will time out after 60 seconds.
|
|
@@ -170,6 +170,7 @@ declare const QueryCommand_base: {
|
|
|
170
170
|
* @throws {@link TimestreamQueryServiceException}
|
|
171
171
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
172
172
|
*
|
|
173
|
+
* @public
|
|
173
174
|
*/
|
|
174
175
|
export declare class QueryCommand extends QueryCommand_base {
|
|
175
176
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Associate a set of tags with a Timestream resource. You can then activate these
|
|
30
30
|
* user-defined tags so that they appear on the Billing and Cost Management console for
|
|
31
31
|
* cost allocation tracking. </p>
|
|
@@ -74,6 +74,7 @@ declare const TagResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link TimestreamQueryServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes the association of tags from a Timestream query resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const UntagResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link TimestreamQueryServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateScheduledQueryCommand_base: {
|
|
24
24
|
new (input: UpdateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Update a scheduled query.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -72,6 +72,7 @@ declare const UpdateScheduledQueryCommand_base: {
|
|
|
72
72
|
* @throws {@link TimestreamQueryServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class UpdateScheduledQueryCommand extends UpdateScheduledQueryCommand_base {
|
|
77
78
|
}
|