@aws-sdk/client-timestream-query 3.168.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/TimestreamQuery.d.ts +235 -70
- package/dist-types/ts3.4/TimestreamQueryClient.d.ts +213 -89
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +13 -13
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/TimestreamQueryServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +697 -647
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListScheduledQueriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +161 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- 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.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
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-timestream-query
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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 {};
|