@aws-sdk/client-timestream-query 3.478.0 → 3.481.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.
Files changed (57) hide show
  1. package/dist-cjs/commands/CancelQueryCommand.js +19 -42
  2. package/dist-cjs/commands/CreateScheduledQueryCommand.js +19 -42
  3. package/dist-cjs/commands/DeleteScheduledQueryCommand.js +19 -42
  4. package/dist-cjs/commands/DescribeEndpointsCommand.js +18 -41
  5. package/dist-cjs/commands/DescribeScheduledQueryCommand.js +19 -42
  6. package/dist-cjs/commands/ExecuteScheduledQueryCommand.js +19 -42
  7. package/dist-cjs/commands/ListScheduledQueriesCommand.js +19 -42
  8. package/dist-cjs/commands/ListTagsForResourceCommand.js +19 -42
  9. package/dist-cjs/commands/PrepareQueryCommand.js +19 -42
  10. package/dist-cjs/commands/QueryCommand.js +19 -42
  11. package/dist-cjs/commands/TagResourceCommand.js +19 -42
  12. package/dist-cjs/commands/UntagResourceCommand.js +19 -42
  13. package/dist-cjs/commands/UpdateScheduledQueryCommand.js +19 -42
  14. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  15. package/dist-es/commands/CancelQueryCommand.js +19 -42
  16. package/dist-es/commands/CreateScheduledQueryCommand.js +19 -42
  17. package/dist-es/commands/DeleteScheduledQueryCommand.js +19 -42
  18. package/dist-es/commands/DescribeEndpointsCommand.js +18 -41
  19. package/dist-es/commands/DescribeScheduledQueryCommand.js +19 -42
  20. package/dist-es/commands/ExecuteScheduledQueryCommand.js +19 -42
  21. package/dist-es/commands/ListScheduledQueriesCommand.js +19 -42
  22. package/dist-es/commands/ListTagsForResourceCommand.js +19 -42
  23. package/dist-es/commands/PrepareQueryCommand.js +19 -42
  24. package/dist-es/commands/QueryCommand.js +19 -42
  25. package/dist-es/commands/TagResourceCommand.js +19 -42
  26. package/dist-es/commands/UntagResourceCommand.js +19 -42
  27. package/dist-es/commands/UpdateScheduledQueryCommand.js +19 -42
  28. package/dist-es/endpoint/EndpointParameters.js +6 -0
  29. package/dist-types/commands/CancelQueryCommand.d.ts +6 -21
  30. package/dist-types/commands/CreateScheduledQueryCommand.d.ts +6 -21
  31. package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +6 -21
  32. package/dist-types/commands/DescribeEndpointsCommand.d.ts +6 -21
  33. package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +6 -21
  34. package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +6 -21
  35. package/dist-types/commands/ListScheduledQueriesCommand.d.ts +6 -21
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  37. package/dist-types/commands/PrepareQueryCommand.d.ts +6 -21
  38. package/dist-types/commands/QueryCommand.d.ts +6 -21
  39. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  40. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  41. package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +6 -21
  42. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  43. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +12 -24
  45. package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +12 -24
  46. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +12 -24
  48. package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +12 -24
  49. package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +12 -24
  50. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  51. package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +14 -23
  52. package/dist-types/ts3.4/commands/QueryCommand.d.ts +12 -23
  53. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  54. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  55. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +12 -24
  56. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  57. package/package.json +9 -9
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CancelQueryCommandInput extends CancelQueryRequest {
21
20
  */
22
21
  export interface CancelQueryCommandOutput extends CancelQueryResponse, __MetadataBearer {
23
22
  }
23
+ declare const CancelQueryCommand_base: {
24
+ new (input: CancelQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p> Cancels a query that has been issued. Cancellation is provided only if the query has
@@ -73,23 +76,5 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
73
76
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
74
77
  *
75
78
  */
76
- export declare class CancelQueryCommand extends $Command<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
77
- readonly input: CancelQueryCommandInput;
78
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
- /**
80
- * @public
81
- */
82
- constructor(input: CancelQueryCommandInput);
83
- /**
84
- * @internal
85
- */
86
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelQueryCommandInput, CancelQueryCommandOutput>;
87
- /**
88
- * @internal
89
- */
90
- private serialize;
91
- /**
92
- * @internal
93
- */
94
- private deserialize;
79
+ export declare class CancelQueryCommand extends CancelQueryCommand_base {
95
80
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CreateScheduledQueryRequest, CreateScheduledQueryResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreateScheduledQueryCommandInput extends CreateScheduledQueryRe
21
20
  */
22
21
  export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryResponse, __MetadataBearer {
23
22
  }
23
+ declare const CreateScheduledQueryCommand_base: {
24
+ new (input: CreateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p> Create a scheduled query that will be run on your behalf at the configured schedule.
@@ -142,23 +145,5 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
142
145
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
143
146
  *
144
147
  */
145
- export declare class CreateScheduledQueryCommand extends $Command<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
146
- readonly input: CreateScheduledQueryCommandInput;
147
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
148
- /**
149
- * @public
150
- */
151
- constructor(input: CreateScheduledQueryCommandInput);
152
- /**
153
- * @internal
154
- */
155
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput>;
156
- /**
157
- * @internal
158
- */
159
- private serialize;
160
- /**
161
- * @internal
162
- */
163
- private deserialize;
148
+ export declare class CreateScheduledQueryCommand extends CreateScheduledQueryCommand_base {
164
149
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DeleteScheduledQueryRequest } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeleteScheduledQueryCommandInput extends DeleteScheduledQueryRe
21
20
  */
22
21
  export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const DeleteScheduledQueryCommand_base: {
24
+ new (input: DeleteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes a given scheduled query. This is an irreversible operation. </p>
@@ -69,23 +72,5 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
69
72
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
70
73
  *
71
74
  */
72
- export declare class DeleteScheduledQueryCommand extends $Command<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
73
- readonly input: DeleteScheduledQueryCommandInput;
74
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
- /**
76
- * @public
77
- */
78
- constructor(input: DeleteScheduledQueryCommandInput);
79
- /**
80
- * @internal
81
- */
82
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput>;
83
- /**
84
- * @internal
85
- */
86
- private serialize;
87
- /**
88
- * @internal
89
- */
90
- private deserialize;
75
+ export declare class DeleteScheduledQueryCommand extends DeleteScheduledQueryCommand_base {
91
76
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribeEndpointsCommandInput extends DescribeEndpointsRequest
21
20
  */
22
21
  export interface DescribeEndpointsCommandOutput extends DescribeEndpointsResponse, __MetadataBearer {
23
22
  }
23
+ declare const DescribeEndpointsCommand_base: {
24
+ new (input: DescribeEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>DescribeEndpoints returns a list of available endpoints to make Timestream
@@ -85,23 +88,5 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
85
88
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
86
89
  *
87
90
  */
88
- export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamQueryClientResolvedConfig> {
89
- readonly input: DescribeEndpointsCommandInput;
90
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
- /**
92
- * @public
93
- */
94
- constructor(input: DescribeEndpointsCommandInput);
95
- /**
96
- * @internal
97
- */
98
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
99
- /**
100
- * @internal
101
- */
102
- private serialize;
103
- /**
104
- * @internal
105
- */
106
- private deserialize;
91
+ export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {
107
92
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DescribeScheduledQueryRequest, DescribeScheduledQueryResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribeScheduledQueryCommandInput extends DescribeScheduledQue
21
20
  */
22
21
  export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQueryResponse, __MetadataBearer {
23
22
  }
23
+ declare const DescribeScheduledQueryCommand_base: {
24
+ new (input: DescribeScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Provides detailed information about a scheduled query.</p>
@@ -175,23 +178,5 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu
175
178
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
176
179
  *
177
180
  */
178
- export declare class DescribeScheduledQueryCommand extends $Command<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
179
- readonly input: DescribeScheduledQueryCommandInput;
180
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
181
- /**
182
- * @public
183
- */
184
- constructor(input: DescribeScheduledQueryCommandInput);
185
- /**
186
- * @internal
187
- */
188
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput>;
189
- /**
190
- * @internal
191
- */
192
- private serialize;
193
- /**
194
- * @internal
195
- */
196
- private deserialize;
181
+ export declare class DescribeScheduledQueryCommand extends DescribeScheduledQueryCommand_base {
197
182
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ExecuteScheduledQueryRequest } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ExecuteScheduledQueryCommandInput extends ExecuteScheduledQuery
21
20
  */
22
21
  export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const ExecuteScheduledQueryCommand_base: {
24
+ new (input: ExecuteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p> You can use this API to run a scheduled query manually. </p>
@@ -71,23 +74,5 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
71
74
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
72
75
  *
73
76
  */
74
- export declare class ExecuteScheduledQueryCommand extends $Command<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
75
- readonly input: ExecuteScheduledQueryCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: ExecuteScheduledQueryCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class ExecuteScheduledQueryCommand extends ExecuteScheduledQueryCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListScheduledQueriesRequest, ListScheduledQueriesResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListScheduledQueriesCommandInput extends ListScheduledQueriesRe
21
20
  */
22
21
  export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListScheduledQueriesCommand_base: {
24
+ new (input: ListScheduledQueriesCommandInput): import("@smithy/smithy-client").CommandImpl<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Gets a list of all scheduled queries in the caller's Amazon account and Region. <code>ListScheduledQueries</code> is eventually consistent. </p>
@@ -93,23 +96,5 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR
93
96
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
94
97
  *
95
98
  */
96
- export declare class ListScheduledQueriesCommand extends $Command<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput, TimestreamQueryClientResolvedConfig> {
97
- readonly input: ListScheduledQueriesCommandInput;
98
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
99
- /**
100
- * @public
101
- */
102
- constructor(input: ListScheduledQueriesCommandInput);
103
- /**
104
- * @internal
105
- */
106
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput>;
107
- /**
108
- * @internal
109
- */
110
- private serialize;
111
- /**
112
- * @internal
113
- */
114
- private deserialize;
99
+ export declare class ListScheduledQueriesCommand extends ListScheduledQueriesCommand_base {
115
100
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List all tags on a Timestream query resource.</p>
@@ -71,23 +74,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
71
74
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
72
75
  *
73
76
  */
74
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
75
- readonly input: ListTagsForResourceCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: ListTagsForResourceCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { PrepareQueryRequest, PrepareQueryResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface PrepareQueryCommandInput extends PrepareQueryRequest {
21
20
  */
22
21
  export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __MetadataBearer {
23
22
  }
23
+ declare const PrepareQueryCommand_base: {
24
+ new (input: PrepareQueryCommandInput): import("@smithy/smithy-client").CommandImpl<PrepareQueryCommandInput, PrepareQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>A synchronous operation that allows you to submit a query with parameters to be stored
@@ -109,23 +112,5 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad
109
112
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
110
113
  *
111
114
  */
112
- export declare class PrepareQueryCommand extends $Command<PrepareQueryCommandInput, PrepareQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
113
- readonly input: PrepareQueryCommandInput;
114
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
115
- /**
116
- * @public
117
- */
118
- constructor(input: PrepareQueryCommandInput);
119
- /**
120
- * @internal
121
- */
122
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PrepareQueryCommandInput, PrepareQueryCommandOutput>;
123
- /**
124
- * @internal
125
- */
126
- private serialize;
127
- /**
128
- * @internal
129
- */
130
- private deserialize;
115
+ export declare class PrepareQueryCommand extends PrepareQueryCommand_base {
131
116
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { QueryRequest, QueryResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface QueryCommandInput extends QueryRequest {
21
20
  */
22
21
  export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
23
22
  }
23
+ declare const QueryCommand_base: {
24
+ new (input: QueryCommandInput): import("@smithy/smithy-client").CommandImpl<QueryCommandInput, QueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>
@@ -168,23 +171,5 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
168
171
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
169
172
  *
170
173
  */
171
- export declare class QueryCommand extends $Command<QueryCommandInput, QueryCommandOutput, TimestreamQueryClientResolvedConfig> {
172
- readonly input: QueryCommandInput;
173
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
174
- /**
175
- * @public
176
- */
177
- constructor(input: QueryCommandInput);
178
- /**
179
- * @internal
180
- */
181
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryCommandInput, QueryCommandOutput>;
182
- /**
183
- * @internal
184
- */
185
- private serialize;
186
- /**
187
- * @internal
188
- */
189
- private deserialize;
174
+ export declare class QueryCommand extends QueryCommand_base {
190
175
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Associate a set of tags with a Timestream resource. You can then activate these
@@ -72,23 +75,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
72
75
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
73
76
  *
74
77
  */
75
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
76
- readonly input: TagResourceCommandInput;
77
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
- /**
79
- * @public
80
- */
81
- constructor(input: TagResourceCommandInput);
82
- /**
83
- * @internal
84
- */
85
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
86
- /**
87
- * @internal
88
- */
89
- private serialize;
90
- /**
91
- * @internal
92
- */
93
- private deserialize;
78
+ export declare class TagResourceCommand extends TagResourceCommand_base {
94
79
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes the association of tags from a Timestream query resource.</p>
@@ -64,23 +67,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
64
67
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
65
68
  *
66
69
  */
67
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
68
- readonly input: UntagResourceCommandInput;
69
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
- /**
71
- * @public
72
- */
73
- constructor(input: UntagResourceCommandInput);
74
- /**
75
- * @internal
76
- */
77
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
78
- /**
79
- * @internal
80
- */
81
- private serialize;
82
- /**
83
- * @internal
84
- */
85
- private deserialize;
70
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
86
71
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UpdateScheduledQueryRequest } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateScheduledQueryCommandInput extends UpdateScheduledQueryRe
21
20
  */
22
21
  export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const UpdateScheduledQueryCommand_base: {
24
+ new (input: UpdateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Update a scheduled query.</p>
@@ -70,23 +73,5 @@ export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
70
73
  * <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
71
74
  *
72
75
  */
73
- export declare class UpdateScheduledQueryCommand extends $Command<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
74
- readonly input: UpdateScheduledQueryCommandInput;
75
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
- /**
77
- * @public
78
- */
79
- constructor(input: UpdateScheduledQueryCommandInput);
80
- /**
81
- * @internal
82
- */
83
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput>;
84
- /**
85
- * @internal
86
- */
87
- private serialize;
88
- /**
89
- * @internal
90
- */
91
- private deserialize;
76
+ export declare class UpdateScheduledQueryCommand extends UpdateScheduledQueryCommand_base {
92
77
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0";
10
4
  import {
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface CancelQueryCommandInput extends CancelQueryRequest {}
17
11
  export interface CancelQueryCommandOutput
18
12
  extends CancelQueryResponse,
19
13
  __MetadataBearer {}
20
- export declare class CancelQueryCommand extends $Command<
21
- CancelQueryCommandInput,
22
- CancelQueryCommandOutput,
23
- TimestreamQueryClientResolvedConfig
24
- > {
25
- readonly input: CancelQueryCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CancelQueryCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: TimestreamQueryClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CancelQueryCommandInput, CancelQueryCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CancelQueryCommand_base: {
15
+ new (
16
+ input: CancelQueryCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CancelQueryCommandInput,
19
+ CancelQueryCommandOutput,
20
+ TimestreamQueryClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CancelQueryCommand extends CancelQueryCommand_base {}