@aws-sdk/client-timestream-query 3.169.0 → 3.171.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 (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/TimestreamQuery.d.ts +222 -70
  3. package/dist-types/ts3.4/TimestreamQueryClient.d.ts +187 -89
  4. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/QueryCommand.d.ts +30 -17
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/TimestreamQueryServiceException.d.ts +7 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +501 -647
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  24. package/dist-types/ts3.4/pagination/ListScheduledQueriesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  28. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +161 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -41
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  33. package/package.json +35 -35
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-timestream-query
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-timestream-query
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-timestream-query
@@ -1,70 +1,222 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
3
- import { CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput } from "./commands/CreateScheduledQueryCommand";
4
- import { DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput } from "./commands/DeleteScheduledQueryCommand";
5
- import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
6
- import { DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput } from "./commands/DescribeScheduledQueryCommand";
7
- import { ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput } from "./commands/ExecuteScheduledQueryCommand";
8
- import { ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput } from "./commands/ListScheduledQueriesCommand";
9
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
10
- import { PrepareQueryCommandInput, PrepareQueryCommandOutput } from "./commands/PrepareQueryCommand";
11
- import { QueryCommandInput, QueryCommandOutput } from "./commands/QueryCommand";
12
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
13
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
14
- import { UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput } from "./commands/UpdateScheduledQueryCommand";
15
- import { TimestreamQueryClient } from "./TimestreamQueryClient";
16
-
17
- export declare class TimestreamQuery extends TimestreamQueryClient {
18
-
19
- cancelQuery(args: CancelQueryCommandInput, options?: __HttpHandlerOptions): Promise<CancelQueryCommandOutput>;
20
- cancelQuery(args: CancelQueryCommandInput, cb: (err: any, data?: CancelQueryCommandOutput) => void): void;
21
- cancelQuery(args: CancelQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelQueryCommandOutput) => void): void;
22
-
23
- createScheduledQuery(args: CreateScheduledQueryCommandInput, options?: __HttpHandlerOptions): Promise<CreateScheduledQueryCommandOutput>;
24
- createScheduledQuery(args: CreateScheduledQueryCommandInput, cb: (err: any, data?: CreateScheduledQueryCommandOutput) => void): void;
25
- createScheduledQuery(args: CreateScheduledQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduledQueryCommandOutput) => void): void;
26
-
27
- deleteScheduledQuery(args: DeleteScheduledQueryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScheduledQueryCommandOutput>;
28
- deleteScheduledQuery(args: DeleteScheduledQueryCommandInput, cb: (err: any, data?: DeleteScheduledQueryCommandOutput) => void): void;
29
- deleteScheduledQuery(args: DeleteScheduledQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduledQueryCommandOutput) => void): void;
30
-
31
- describeEndpoints(args: DescribeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointsCommandOutput>;
32
- describeEndpoints(args: DescribeEndpointsCommandInput, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
33
- describeEndpoints(args: DescribeEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
34
-
35
- describeScheduledQuery(args: DescribeScheduledQueryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduledQueryCommandOutput>;
36
- describeScheduledQuery(args: DescribeScheduledQueryCommandInput, cb: (err: any, data?: DescribeScheduledQueryCommandOutput) => void): void;
37
- describeScheduledQuery(args: DescribeScheduledQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduledQueryCommandOutput) => void): void;
38
-
39
- executeScheduledQuery(args: ExecuteScheduledQueryCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteScheduledQueryCommandOutput>;
40
- executeScheduledQuery(args: ExecuteScheduledQueryCommandInput, cb: (err: any, data?: ExecuteScheduledQueryCommandOutput) => void): void;
41
- executeScheduledQuery(args: ExecuteScheduledQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteScheduledQueryCommandOutput) => void): void;
42
-
43
- listScheduledQueries(args: ListScheduledQueriesCommandInput, options?: __HttpHandlerOptions): Promise<ListScheduledQueriesCommandOutput>;
44
- listScheduledQueries(args: ListScheduledQueriesCommandInput, cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void): void;
45
- listScheduledQueries(args: ListScheduledQueriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void): void;
46
-
47
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
48
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
49
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
50
-
51
- prepareQuery(args: PrepareQueryCommandInput, options?: __HttpHandlerOptions): Promise<PrepareQueryCommandOutput>;
52
- prepareQuery(args: PrepareQueryCommandInput, cb: (err: any, data?: PrepareQueryCommandOutput) => void): void;
53
- prepareQuery(args: PrepareQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PrepareQueryCommandOutput) => void): void;
54
-
55
- query(args: QueryCommandInput, options?: __HttpHandlerOptions): Promise<QueryCommandOutput>;
56
- query(args: QueryCommandInput, cb: (err: any, data?: QueryCommandOutput) => void): void;
57
- query(args: QueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryCommandOutput) => void): void;
58
-
59
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
60
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
61
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
62
-
63
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
64
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
65
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
66
-
67
- updateScheduledQuery(args: UpdateScheduledQueryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateScheduledQueryCommandOutput>;
68
- updateScheduledQuery(args: UpdateScheduledQueryCommandInput, cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void): void;
69
- updateScheduledQuery(args: UpdateScheduledQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void): void;
70
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CancelQueryCommandInput,
4
+ CancelQueryCommandOutput,
5
+ } from "./commands/CancelQueryCommand";
6
+ import {
7
+ CreateScheduledQueryCommandInput,
8
+ CreateScheduledQueryCommandOutput,
9
+ } from "./commands/CreateScheduledQueryCommand";
10
+ import {
11
+ DeleteScheduledQueryCommandInput,
12
+ DeleteScheduledQueryCommandOutput,
13
+ } from "./commands/DeleteScheduledQueryCommand";
14
+ import {
15
+ DescribeEndpointsCommandInput,
16
+ DescribeEndpointsCommandOutput,
17
+ } from "./commands/DescribeEndpointsCommand";
18
+ import {
19
+ DescribeScheduledQueryCommandInput,
20
+ DescribeScheduledQueryCommandOutput,
21
+ } from "./commands/DescribeScheduledQueryCommand";
22
+ import {
23
+ ExecuteScheduledQueryCommandInput,
24
+ ExecuteScheduledQueryCommandOutput,
25
+ } from "./commands/ExecuteScheduledQueryCommand";
26
+ import {
27
+ ListScheduledQueriesCommandInput,
28
+ ListScheduledQueriesCommandOutput,
29
+ } from "./commands/ListScheduledQueriesCommand";
30
+ import {
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ } from "./commands/ListTagsForResourceCommand";
34
+ import {
35
+ PrepareQueryCommandInput,
36
+ PrepareQueryCommandOutput,
37
+ } from "./commands/PrepareQueryCommand";
38
+ import { QueryCommandInput, QueryCommandOutput } from "./commands/QueryCommand";
39
+ import {
40
+ TagResourceCommandInput,
41
+ TagResourceCommandOutput,
42
+ } from "./commands/TagResourceCommand";
43
+ import {
44
+ UntagResourceCommandInput,
45
+ UntagResourceCommandOutput,
46
+ } from "./commands/UntagResourceCommand";
47
+ import {
48
+ UpdateScheduledQueryCommandInput,
49
+ UpdateScheduledQueryCommandOutput,
50
+ } from "./commands/UpdateScheduledQueryCommand";
51
+ import { TimestreamQueryClient } from "./TimestreamQueryClient";
52
+ export declare class TimestreamQuery extends TimestreamQueryClient {
53
+ cancelQuery(
54
+ args: CancelQueryCommandInput,
55
+ options?: __HttpHandlerOptions
56
+ ): Promise<CancelQueryCommandOutput>;
57
+ cancelQuery(
58
+ args: CancelQueryCommandInput,
59
+ cb: (err: any, data?: CancelQueryCommandOutput) => void
60
+ ): void;
61
+ cancelQuery(
62
+ args: CancelQueryCommandInput,
63
+ options: __HttpHandlerOptions,
64
+ cb: (err: any, data?: CancelQueryCommandOutput) => void
65
+ ): void;
66
+ createScheduledQuery(
67
+ args: CreateScheduledQueryCommandInput,
68
+ options?: __HttpHandlerOptions
69
+ ): Promise<CreateScheduledQueryCommandOutput>;
70
+ createScheduledQuery(
71
+ args: CreateScheduledQueryCommandInput,
72
+ cb: (err: any, data?: CreateScheduledQueryCommandOutput) => void
73
+ ): void;
74
+ createScheduledQuery(
75
+ args: CreateScheduledQueryCommandInput,
76
+ options: __HttpHandlerOptions,
77
+ cb: (err: any, data?: CreateScheduledQueryCommandOutput) => void
78
+ ): void;
79
+ deleteScheduledQuery(
80
+ args: DeleteScheduledQueryCommandInput,
81
+ options?: __HttpHandlerOptions
82
+ ): Promise<DeleteScheduledQueryCommandOutput>;
83
+ deleteScheduledQuery(
84
+ args: DeleteScheduledQueryCommandInput,
85
+ cb: (err: any, data?: DeleteScheduledQueryCommandOutput) => void
86
+ ): void;
87
+ deleteScheduledQuery(
88
+ args: DeleteScheduledQueryCommandInput,
89
+ options: __HttpHandlerOptions,
90
+ cb: (err: any, data?: DeleteScheduledQueryCommandOutput) => void
91
+ ): void;
92
+ describeEndpoints(
93
+ args: DescribeEndpointsCommandInput,
94
+ options?: __HttpHandlerOptions
95
+ ): Promise<DescribeEndpointsCommandOutput>;
96
+ describeEndpoints(
97
+ args: DescribeEndpointsCommandInput,
98
+ cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
99
+ ): void;
100
+ describeEndpoints(
101
+ args: DescribeEndpointsCommandInput,
102
+ options: __HttpHandlerOptions,
103
+ cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
104
+ ): void;
105
+ describeScheduledQuery(
106
+ args: DescribeScheduledQueryCommandInput,
107
+ options?: __HttpHandlerOptions
108
+ ): Promise<DescribeScheduledQueryCommandOutput>;
109
+ describeScheduledQuery(
110
+ args: DescribeScheduledQueryCommandInput,
111
+ cb: (err: any, data?: DescribeScheduledQueryCommandOutput) => void
112
+ ): void;
113
+ describeScheduledQuery(
114
+ args: DescribeScheduledQueryCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (err: any, data?: DescribeScheduledQueryCommandOutput) => void
117
+ ): void;
118
+ executeScheduledQuery(
119
+ args: ExecuteScheduledQueryCommandInput,
120
+ options?: __HttpHandlerOptions
121
+ ): Promise<ExecuteScheduledQueryCommandOutput>;
122
+ executeScheduledQuery(
123
+ args: ExecuteScheduledQueryCommandInput,
124
+ cb: (err: any, data?: ExecuteScheduledQueryCommandOutput) => void
125
+ ): void;
126
+ executeScheduledQuery(
127
+ args: ExecuteScheduledQueryCommandInput,
128
+ options: __HttpHandlerOptions,
129
+ cb: (err: any, data?: ExecuteScheduledQueryCommandOutput) => void
130
+ ): void;
131
+ listScheduledQueries(
132
+ args: ListScheduledQueriesCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<ListScheduledQueriesCommandOutput>;
135
+ listScheduledQueries(
136
+ args: ListScheduledQueriesCommandInput,
137
+ cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void
138
+ ): void;
139
+ listScheduledQueries(
140
+ args: ListScheduledQueriesCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void
143
+ ): void;
144
+ listTagsForResource(
145
+ args: ListTagsForResourceCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<ListTagsForResourceCommandOutput>;
148
+ listTagsForResource(
149
+ args: ListTagsForResourceCommandInput,
150
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
151
+ ): void;
152
+ listTagsForResource(
153
+ args: ListTagsForResourceCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
156
+ ): void;
157
+ prepareQuery(
158
+ args: PrepareQueryCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<PrepareQueryCommandOutput>;
161
+ prepareQuery(
162
+ args: PrepareQueryCommandInput,
163
+ cb: (err: any, data?: PrepareQueryCommandOutput) => void
164
+ ): void;
165
+ prepareQuery(
166
+ args: PrepareQueryCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: PrepareQueryCommandOutput) => void
169
+ ): void;
170
+ query(
171
+ args: QueryCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<QueryCommandOutput>;
174
+ query(
175
+ args: QueryCommandInput,
176
+ cb: (err: any, data?: QueryCommandOutput) => void
177
+ ): void;
178
+ query(
179
+ args: QueryCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: QueryCommandOutput) => void
182
+ ): void;
183
+ tagResource(
184
+ args: TagResourceCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<TagResourceCommandOutput>;
187
+ tagResource(
188
+ args: TagResourceCommandInput,
189
+ cb: (err: any, data?: TagResourceCommandOutput) => void
190
+ ): void;
191
+ tagResource(
192
+ args: TagResourceCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: TagResourceCommandOutput) => void
195
+ ): void;
196
+ untagResource(
197
+ args: UntagResourceCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<UntagResourceCommandOutput>;
200
+ untagResource(
201
+ args: UntagResourceCommandInput,
202
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
203
+ ): void;
204
+ untagResource(
205
+ args: UntagResourceCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
208
+ ): void;
209
+ updateScheduledQuery(
210
+ args: UpdateScheduledQueryCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<UpdateScheduledQueryCommandOutput>;
213
+ updateScheduledQuery(
214
+ args: UpdateScheduledQueryCommandInput,
215
+ cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void
216
+ ): void;
217
+ updateScheduledQuery(
218
+ args: UpdateScheduledQueryCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void
221
+ ): void;
222
+ }
@@ -1,89 +1,187 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { EndpointDiscoveryInputConfig, EndpointDiscoveryResolvedConfig } from "@aws-sdk/middleware-endpoint-discovery";
3
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
4
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
5
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
6
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
- import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
11
- import { CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput } from "./commands/CreateScheduledQueryCommand";
12
- import { DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput } from "./commands/DeleteScheduledQueryCommand";
13
- import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
14
- import { DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput } from "./commands/DescribeScheduledQueryCommand";
15
- import { ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput } from "./commands/ExecuteScheduledQueryCommand";
16
- import { ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput } from "./commands/ListScheduledQueriesCommand";
17
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
- import { PrepareQueryCommandInput, PrepareQueryCommandOutput } from "./commands/PrepareQueryCommand";
19
- import { QueryCommandInput, QueryCommandOutput } from "./commands/QueryCommand";
20
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
22
- import { UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput } from "./commands/UpdateScheduledQueryCommand";
23
- export declare type ServiceInputTypes = CancelQueryCommandInput | CreateScheduledQueryCommandInput | DeleteScheduledQueryCommandInput | DescribeEndpointsCommandInput | DescribeScheduledQueryCommandInput | ExecuteScheduledQueryCommandInput | ListScheduledQueriesCommandInput | ListTagsForResourceCommandInput | PrepareQueryCommandInput | QueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateScheduledQueryCommandInput;
24
- export declare type ServiceOutputTypes = CancelQueryCommandOutput | CreateScheduledQueryCommandOutput | DeleteScheduledQueryCommandOutput | DescribeEndpointsCommandOutput | DescribeScheduledQueryCommandOutput | ExecuteScheduledQueryCommandOutput | ListScheduledQueriesCommandOutput | ListTagsForResourceCommandOutput | PrepareQueryCommandOutput | QueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateScheduledQueryCommandOutput;
25
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
26
-
27
- requestHandler?: __HttpHandler;
28
-
29
- sha256?: __HashConstructor;
30
-
31
- urlParser?: __UrlParser;
32
-
33
- bodyLengthChecker?: __BodyLengthCalculator;
34
-
35
- streamCollector?: __StreamCollector;
36
-
37
- base64Decoder?: __Decoder;
38
-
39
- base64Encoder?: __Encoder;
40
-
41
- utf8Decoder?: __Decoder;
42
-
43
- utf8Encoder?: __Encoder;
44
-
45
- runtime?: string;
46
-
47
- disableHostPrefix?: boolean;
48
-
49
- maxAttempts?: number | __Provider<number>;
50
-
51
- retryMode?: string | __Provider<string>;
52
-
53
- logger?: __Logger;
54
-
55
- useDualstackEndpoint?: boolean | __Provider<boolean>;
56
-
57
- useFipsEndpoint?: boolean | __Provider<boolean>;
58
-
59
- serviceId?: string;
60
-
61
- region?: string | __Provider<string>;
62
-
63
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
64
-
65
- regionInfoProvider?: RegionInfoProvider;
66
-
67
- defaultUserAgentProvider?: Provider<__UserAgent>;
68
-
69
- endpointDiscoveryEnabledProvider?: __Provider<boolean | undefined>;
70
-
71
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
72
- }
73
- declare type TimestreamQueryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & EndpointDiscoveryInputConfig;
74
-
75
- export interface TimestreamQueryClientConfig extends TimestreamQueryClientConfigType {
76
- }
77
- declare type TimestreamQueryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & EndpointDiscoveryResolvedConfig;
78
-
79
- export interface TimestreamQueryClientResolvedConfig extends TimestreamQueryClientResolvedConfigType {
80
- }
81
-
82
- export declare class TimestreamQueryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig> {
83
-
84
- readonly config: TimestreamQueryClientResolvedConfig;
85
- constructor(configuration: TimestreamQueryClientConfig);
86
-
87
- destroy(): void;
88
- }
89
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ EndpointDiscoveryInputConfig,
9
+ EndpointDiscoveryResolvedConfig,
10
+ } from "@aws-sdk/middleware-endpoint-discovery";
11
+ import {
12
+ HostHeaderInputConfig,
13
+ HostHeaderResolvedConfig,
14
+ } from "@aws-sdk/middleware-host-header";
15
+ import {
16
+ RetryInputConfig,
17
+ RetryResolvedConfig,
18
+ } from "@aws-sdk/middleware-retry";
19
+ import {
20
+ AwsAuthInputConfig,
21
+ AwsAuthResolvedConfig,
22
+ } from "@aws-sdk/middleware-signing";
23
+ import {
24
+ UserAgentInputConfig,
25
+ UserAgentResolvedConfig,
26
+ } from "@aws-sdk/middleware-user-agent";
27
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
28
+ import {
29
+ Client as __Client,
30
+ DefaultsMode,
31
+ SmithyConfiguration as __SmithyConfiguration,
32
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
33
+ } from "@aws-sdk/smithy-client";
34
+ import {
35
+ BodyLengthCalculator as __BodyLengthCalculator,
36
+ Credentials as __Credentials,
37
+ Decoder as __Decoder,
38
+ Encoder as __Encoder,
39
+ HashConstructor as __HashConstructor,
40
+ HttpHandlerOptions as __HttpHandlerOptions,
41
+ Logger as __Logger,
42
+ Provider as __Provider,
43
+ Provider,
44
+ RegionInfoProvider,
45
+ StreamCollector as __StreamCollector,
46
+ UrlParser as __UrlParser,
47
+ UserAgent as __UserAgent,
48
+ } from "@aws-sdk/types";
49
+ import {
50
+ CancelQueryCommandInput,
51
+ CancelQueryCommandOutput,
52
+ } from "./commands/CancelQueryCommand";
53
+ import {
54
+ CreateScheduledQueryCommandInput,
55
+ CreateScheduledQueryCommandOutput,
56
+ } from "./commands/CreateScheduledQueryCommand";
57
+ import {
58
+ DeleteScheduledQueryCommandInput,
59
+ DeleteScheduledQueryCommandOutput,
60
+ } from "./commands/DeleteScheduledQueryCommand";
61
+ import {
62
+ DescribeEndpointsCommandInput,
63
+ DescribeEndpointsCommandOutput,
64
+ } from "./commands/DescribeEndpointsCommand";
65
+ import {
66
+ DescribeScheduledQueryCommandInput,
67
+ DescribeScheduledQueryCommandOutput,
68
+ } from "./commands/DescribeScheduledQueryCommand";
69
+ import {
70
+ ExecuteScheduledQueryCommandInput,
71
+ ExecuteScheduledQueryCommandOutput,
72
+ } from "./commands/ExecuteScheduledQueryCommand";
73
+ import {
74
+ ListScheduledQueriesCommandInput,
75
+ ListScheduledQueriesCommandOutput,
76
+ } from "./commands/ListScheduledQueriesCommand";
77
+ import {
78
+ ListTagsForResourceCommandInput,
79
+ ListTagsForResourceCommandOutput,
80
+ } from "./commands/ListTagsForResourceCommand";
81
+ import {
82
+ PrepareQueryCommandInput,
83
+ PrepareQueryCommandOutput,
84
+ } from "./commands/PrepareQueryCommand";
85
+ import { QueryCommandInput, QueryCommandOutput } from "./commands/QueryCommand";
86
+ import {
87
+ TagResourceCommandInput,
88
+ TagResourceCommandOutput,
89
+ } from "./commands/TagResourceCommand";
90
+ import {
91
+ UntagResourceCommandInput,
92
+ UntagResourceCommandOutput,
93
+ } from "./commands/UntagResourceCommand";
94
+ import {
95
+ UpdateScheduledQueryCommandInput,
96
+ UpdateScheduledQueryCommandOutput,
97
+ } from "./commands/UpdateScheduledQueryCommand";
98
+ export declare type ServiceInputTypes =
99
+ | CancelQueryCommandInput
100
+ | CreateScheduledQueryCommandInput
101
+ | DeleteScheduledQueryCommandInput
102
+ | DescribeEndpointsCommandInput
103
+ | DescribeScheduledQueryCommandInput
104
+ | ExecuteScheduledQueryCommandInput
105
+ | ListScheduledQueriesCommandInput
106
+ | ListTagsForResourceCommandInput
107
+ | PrepareQueryCommandInput
108
+ | QueryCommandInput
109
+ | TagResourceCommandInput
110
+ | UntagResourceCommandInput
111
+ | UpdateScheduledQueryCommandInput;
112
+ export declare type ServiceOutputTypes =
113
+ | CancelQueryCommandOutput
114
+ | CreateScheduledQueryCommandOutput
115
+ | DeleteScheduledQueryCommandOutput
116
+ | DescribeEndpointsCommandOutput
117
+ | DescribeScheduledQueryCommandOutput
118
+ | ExecuteScheduledQueryCommandOutput
119
+ | ListScheduledQueriesCommandOutput
120
+ | ListTagsForResourceCommandOutput
121
+ | PrepareQueryCommandOutput
122
+ | QueryCommandOutput
123
+ | TagResourceCommandOutput
124
+ | UntagResourceCommandOutput
125
+ | UpdateScheduledQueryCommandOutput;
126
+ export interface ClientDefaults
127
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
128
+ requestHandler?: __HttpHandler;
129
+ sha256?: __HashConstructor;
130
+ urlParser?: __UrlParser;
131
+ bodyLengthChecker?: __BodyLengthCalculator;
132
+ streamCollector?: __StreamCollector;
133
+ base64Decoder?: __Decoder;
134
+ base64Encoder?: __Encoder;
135
+ utf8Decoder?: __Decoder;
136
+ utf8Encoder?: __Encoder;
137
+ runtime?: string;
138
+ disableHostPrefix?: boolean;
139
+ maxAttempts?: number | __Provider<number>;
140
+ retryMode?: string | __Provider<string>;
141
+ logger?: __Logger;
142
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
143
+ useFipsEndpoint?: boolean | __Provider<boolean>;
144
+ serviceId?: string;
145
+ region?: string | __Provider<string>;
146
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
147
+ regionInfoProvider?: RegionInfoProvider;
148
+ defaultUserAgentProvider?: Provider<__UserAgent>;
149
+ endpointDiscoveryEnabledProvider?: __Provider<boolean | undefined>;
150
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
151
+ }
152
+ declare type TimestreamQueryClientConfigType = Partial<
153
+ __SmithyConfiguration<__HttpHandlerOptions>
154
+ > &
155
+ ClientDefaults &
156
+ RegionInputConfig &
157
+ EndpointsInputConfig &
158
+ RetryInputConfig &
159
+ HostHeaderInputConfig &
160
+ AwsAuthInputConfig &
161
+ UserAgentInputConfig &
162
+ EndpointDiscoveryInputConfig;
163
+ export interface TimestreamQueryClientConfig
164
+ extends TimestreamQueryClientConfigType {}
165
+ declare type TimestreamQueryClientResolvedConfigType =
166
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
167
+ Required<ClientDefaults> &
168
+ RegionResolvedConfig &
169
+ EndpointsResolvedConfig &
170
+ RetryResolvedConfig &
171
+ HostHeaderResolvedConfig &
172
+ AwsAuthResolvedConfig &
173
+ UserAgentResolvedConfig &
174
+ EndpointDiscoveryResolvedConfig;
175
+ export interface TimestreamQueryClientResolvedConfig
176
+ extends TimestreamQueryClientResolvedConfigType {}
177
+ export declare class TimestreamQueryClient extends __Client<
178
+ __HttpHandlerOptions,
179
+ ServiceInputTypes,
180
+ ServiceOutputTypes,
181
+ TimestreamQueryClientResolvedConfig
182
+ > {
183
+ readonly config: TimestreamQueryClientResolvedConfig;
184
+ constructor(configuration: TimestreamQueryClientConfig);
185
+ destroy(): void;
186
+ }
187
+ export {};
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
5
- export interface CancelQueryCommandInput extends CancelQueryRequest {
6
- }
7
- export interface CancelQueryCommandOutput extends CancelQueryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CancelQueryCommand extends $Command<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
11
- readonly input: CancelQueryCommandInput;
12
- constructor(input: CancelQueryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelQueryCommandInput, CancelQueryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ TimestreamQueryClientResolvedConfig,
13
+ } from "../TimestreamQueryClient";
14
+ export interface CancelQueryCommandInput extends CancelQueryRequest {}
15
+ export interface CancelQueryCommandOutput
16
+ extends CancelQueryResponse,
17
+ __MetadataBearer {}
18
+ export declare class CancelQueryCommand extends $Command<
19
+ CancelQueryCommandInput,
20
+ CancelQueryCommandOutput,
21
+ TimestreamQueryClientResolvedConfig
22
+ > {
23
+ readonly input: CancelQueryCommandInput;
24
+ constructor(input: CancelQueryCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: TimestreamQueryClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CancelQueryCommandInput, CancelQueryCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }