@aws-sdk/client-timestream-query 3.169.0 → 3.170.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 +8 -0
  2. package/dist-types/ts3.4/TimestreamQuery.d.ts +235 -70
  3. package/dist-types/ts3.4/TimestreamQueryClient.d.ts +213 -89
  4. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/QueryCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +36 -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 +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +697 -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 +73 -41
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  33. package/package.json +35 -35
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-timestream-query
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-timestream-query
@@ -1,70 +1,235 @@
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
+
53
+ export declare class TimestreamQuery extends TimestreamQueryClient {
54
+ cancelQuery(
55
+ args: CancelQueryCommandInput,
56
+ options?: __HttpHandlerOptions
57
+ ): Promise<CancelQueryCommandOutput>;
58
+ cancelQuery(
59
+ args: CancelQueryCommandInput,
60
+ cb: (err: any, data?: CancelQueryCommandOutput) => void
61
+ ): void;
62
+ cancelQuery(
63
+ args: CancelQueryCommandInput,
64
+ options: __HttpHandlerOptions,
65
+ cb: (err: any, data?: CancelQueryCommandOutput) => void
66
+ ): void;
67
+
68
+ createScheduledQuery(
69
+ args: CreateScheduledQueryCommandInput,
70
+ options?: __HttpHandlerOptions
71
+ ): Promise<CreateScheduledQueryCommandOutput>;
72
+ createScheduledQuery(
73
+ args: CreateScheduledQueryCommandInput,
74
+ cb: (err: any, data?: CreateScheduledQueryCommandOutput) => void
75
+ ): void;
76
+ createScheduledQuery(
77
+ args: CreateScheduledQueryCommandInput,
78
+ options: __HttpHandlerOptions,
79
+ cb: (err: any, data?: CreateScheduledQueryCommandOutput) => void
80
+ ): void;
81
+
82
+ deleteScheduledQuery(
83
+ args: DeleteScheduledQueryCommandInput,
84
+ options?: __HttpHandlerOptions
85
+ ): Promise<DeleteScheduledQueryCommandOutput>;
86
+ deleteScheduledQuery(
87
+ args: DeleteScheduledQueryCommandInput,
88
+ cb: (err: any, data?: DeleteScheduledQueryCommandOutput) => void
89
+ ): void;
90
+ deleteScheduledQuery(
91
+ args: DeleteScheduledQueryCommandInput,
92
+ options: __HttpHandlerOptions,
93
+ cb: (err: any, data?: DeleteScheduledQueryCommandOutput) => void
94
+ ): void;
95
+
96
+ describeEndpoints(
97
+ args: DescribeEndpointsCommandInput,
98
+ options?: __HttpHandlerOptions
99
+ ): Promise<DescribeEndpointsCommandOutput>;
100
+ describeEndpoints(
101
+ args: DescribeEndpointsCommandInput,
102
+ cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
103
+ ): void;
104
+ describeEndpoints(
105
+ args: DescribeEndpointsCommandInput,
106
+ options: __HttpHandlerOptions,
107
+ cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
108
+ ): void;
109
+
110
+ describeScheduledQuery(
111
+ args: DescribeScheduledQueryCommandInput,
112
+ options?: __HttpHandlerOptions
113
+ ): Promise<DescribeScheduledQueryCommandOutput>;
114
+ describeScheduledQuery(
115
+ args: DescribeScheduledQueryCommandInput,
116
+ cb: (err: any, data?: DescribeScheduledQueryCommandOutput) => void
117
+ ): void;
118
+ describeScheduledQuery(
119
+ args: DescribeScheduledQueryCommandInput,
120
+ options: __HttpHandlerOptions,
121
+ cb: (err: any, data?: DescribeScheduledQueryCommandOutput) => void
122
+ ): void;
123
+
124
+ executeScheduledQuery(
125
+ args: ExecuteScheduledQueryCommandInput,
126
+ options?: __HttpHandlerOptions
127
+ ): Promise<ExecuteScheduledQueryCommandOutput>;
128
+ executeScheduledQuery(
129
+ args: ExecuteScheduledQueryCommandInput,
130
+ cb: (err: any, data?: ExecuteScheduledQueryCommandOutput) => void
131
+ ): void;
132
+ executeScheduledQuery(
133
+ args: ExecuteScheduledQueryCommandInput,
134
+ options: __HttpHandlerOptions,
135
+ cb: (err: any, data?: ExecuteScheduledQueryCommandOutput) => void
136
+ ): void;
137
+
138
+ listScheduledQueries(
139
+ args: ListScheduledQueriesCommandInput,
140
+ options?: __HttpHandlerOptions
141
+ ): Promise<ListScheduledQueriesCommandOutput>;
142
+ listScheduledQueries(
143
+ args: ListScheduledQueriesCommandInput,
144
+ cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void
145
+ ): void;
146
+ listScheduledQueries(
147
+ args: ListScheduledQueriesCommandInput,
148
+ options: __HttpHandlerOptions,
149
+ cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void
150
+ ): void;
151
+
152
+ listTagsForResource(
153
+ args: ListTagsForResourceCommandInput,
154
+ options?: __HttpHandlerOptions
155
+ ): Promise<ListTagsForResourceCommandOutput>;
156
+ listTagsForResource(
157
+ args: ListTagsForResourceCommandInput,
158
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
159
+ ): void;
160
+ listTagsForResource(
161
+ args: ListTagsForResourceCommandInput,
162
+ options: __HttpHandlerOptions,
163
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
164
+ ): void;
165
+
166
+ prepareQuery(
167
+ args: PrepareQueryCommandInput,
168
+ options?: __HttpHandlerOptions
169
+ ): Promise<PrepareQueryCommandOutput>;
170
+ prepareQuery(
171
+ args: PrepareQueryCommandInput,
172
+ cb: (err: any, data?: PrepareQueryCommandOutput) => void
173
+ ): void;
174
+ prepareQuery(
175
+ args: PrepareQueryCommandInput,
176
+ options: __HttpHandlerOptions,
177
+ cb: (err: any, data?: PrepareQueryCommandOutput) => void
178
+ ): void;
179
+
180
+ query(
181
+ args: QueryCommandInput,
182
+ options?: __HttpHandlerOptions
183
+ ): Promise<QueryCommandOutput>;
184
+ query(
185
+ args: QueryCommandInput,
186
+ cb: (err: any, data?: QueryCommandOutput) => void
187
+ ): void;
188
+ query(
189
+ args: QueryCommandInput,
190
+ options: __HttpHandlerOptions,
191
+ cb: (err: any, data?: QueryCommandOutput) => void
192
+ ): void;
193
+
194
+ tagResource(
195
+ args: TagResourceCommandInput,
196
+ options?: __HttpHandlerOptions
197
+ ): Promise<TagResourceCommandOutput>;
198
+ tagResource(
199
+ args: TagResourceCommandInput,
200
+ cb: (err: any, data?: TagResourceCommandOutput) => void
201
+ ): void;
202
+ tagResource(
203
+ args: TagResourceCommandInput,
204
+ options: __HttpHandlerOptions,
205
+ cb: (err: any, data?: TagResourceCommandOutput) => void
206
+ ): void;
207
+
208
+ untagResource(
209
+ args: UntagResourceCommandInput,
210
+ options?: __HttpHandlerOptions
211
+ ): Promise<UntagResourceCommandOutput>;
212
+ untagResource(
213
+ args: UntagResourceCommandInput,
214
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
215
+ ): void;
216
+ untagResource(
217
+ args: UntagResourceCommandInput,
218
+ options: __HttpHandlerOptions,
219
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
220
+ ): void;
221
+
222
+ updateScheduledQuery(
223
+ args: UpdateScheduledQueryCommandInput,
224
+ options?: __HttpHandlerOptions
225
+ ): Promise<UpdateScheduledQueryCommandOutput>;
226
+ updateScheduledQuery(
227
+ args: UpdateScheduledQueryCommandInput,
228
+ cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void
229
+ ): void;
230
+ updateScheduledQuery(
231
+ args: UpdateScheduledQueryCommandInput,
232
+ options: __HttpHandlerOptions,
233
+ cb: (err: any, data?: UpdateScheduledQueryCommandOutput) => void
234
+ ): void;
235
+ }
@@ -1,89 +1,213 @@
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
+
130
+ sha256?: __HashConstructor;
131
+
132
+ urlParser?: __UrlParser;
133
+
134
+ bodyLengthChecker?: __BodyLengthCalculator;
135
+
136
+ streamCollector?: __StreamCollector;
137
+
138
+ base64Decoder?: __Decoder;
139
+
140
+ base64Encoder?: __Encoder;
141
+
142
+ utf8Decoder?: __Decoder;
143
+
144
+ utf8Encoder?: __Encoder;
145
+
146
+ runtime?: string;
147
+
148
+ disableHostPrefix?: boolean;
149
+
150
+ maxAttempts?: number | __Provider<number>;
151
+
152
+ retryMode?: string | __Provider<string>;
153
+
154
+ logger?: __Logger;
155
+
156
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
157
+
158
+ useFipsEndpoint?: boolean | __Provider<boolean>;
159
+
160
+ serviceId?: string;
161
+
162
+ region?: string | __Provider<string>;
163
+
164
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
165
+
166
+ regionInfoProvider?: RegionInfoProvider;
167
+
168
+ defaultUserAgentProvider?: Provider<__UserAgent>;
169
+
170
+ endpointDiscoveryEnabledProvider?: __Provider<boolean | undefined>;
171
+
172
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
173
+ }
174
+ declare type TimestreamQueryClientConfigType = Partial<
175
+ __SmithyConfiguration<__HttpHandlerOptions>
176
+ > &
177
+ ClientDefaults &
178
+ RegionInputConfig &
179
+ EndpointsInputConfig &
180
+ RetryInputConfig &
181
+ HostHeaderInputConfig &
182
+ AwsAuthInputConfig &
183
+ UserAgentInputConfig &
184
+ EndpointDiscoveryInputConfig;
185
+
186
+ export interface TimestreamQueryClientConfig
187
+ extends TimestreamQueryClientConfigType {}
188
+ declare type TimestreamQueryClientResolvedConfigType =
189
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
190
+ Required<ClientDefaults> &
191
+ RegionResolvedConfig &
192
+ EndpointsResolvedConfig &
193
+ RetryResolvedConfig &
194
+ HostHeaderResolvedConfig &
195
+ AwsAuthResolvedConfig &
196
+ UserAgentResolvedConfig &
197
+ EndpointDiscoveryResolvedConfig;
198
+
199
+ export interface TimestreamQueryClientResolvedConfig
200
+ extends TimestreamQueryClientResolvedConfigType {}
201
+
202
+ export declare class TimestreamQueryClient extends __Client<
203
+ __HttpHandlerOptions,
204
+ ServiceInputTypes,
205
+ ServiceOutputTypes,
206
+ TimestreamQueryClientResolvedConfig
207
+ > {
208
+ readonly config: TimestreamQueryClientResolvedConfig;
209
+ constructor(configuration: TimestreamQueryClientConfig);
210
+
211
+ destroy(): void;
212
+ }
213
+ export {};