@aws-sdk/client-timestream-query 3.40.0 → 3.45.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 +41 -0
- package/README.md +3 -2
- package/dist-cjs/TimestreamQuery.js +150 -0
- package/dist-cjs/commands/CreateScheduledQueryCommand.js +38 -0
- package/dist-cjs/commands/DeleteScheduledQueryCommand.js +38 -0
- package/dist-cjs/commands/DescribeScheduledQueryCommand.js +38 -0
- package/dist-cjs/commands/ExecuteScheduledQueryCommand.js +38 -0
- package/dist-cjs/commands/ListScheduledQueriesCommand.js +38 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +38 -0
- package/dist-cjs/commands/PrepareQueryCommand.js +38 -0
- package/dist-cjs/commands/TagResourceCommand.js +38 -0
- package/dist-cjs/commands/UntagResourceCommand.js +38 -0
- package/dist-cjs/commands/UpdateScheduledQueryCommand.js +38 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_0.js +291 -1
- package/dist-cjs/pagination/ListScheduledQueriesPaginator.js +35 -0
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_0.js +1580 -34
- package/dist-es/TimestreamQuery.js +150 -0
- package/dist-es/commands/CreateScheduledQueryCommand.js +41 -0
- package/dist-es/commands/DeleteScheduledQueryCommand.js +41 -0
- package/dist-es/commands/DescribeScheduledQueryCommand.js +41 -0
- package/dist-es/commands/ExecuteScheduledQueryCommand.js +41 -0
- package/dist-es/commands/ListScheduledQueriesCommand.js +41 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +41 -0
- package/dist-es/commands/PrepareQueryCommand.js +41 -0
- package/dist-es/commands/TagResourceCommand.js +41 -0
- package/dist-es/commands/UntagResourceCommand.js +41 -0
- package/dist-es/commands/UpdateScheduledQueryCommand.js +41 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_0.js +200 -0
- package/dist-es/pagination/ListScheduledQueriesPaginator.js +74 -0
- package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_0.js +1678 -106
- package/dist-types/TimestreamQuery.d.ts +132 -19
- package/dist-types/TimestreamQueryClient.d.ts +15 -5
- package/dist-types/commands/CancelQueryCommand.d.ts +7 -6
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +39 -0
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +16 -10
- package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +35 -0
- package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +35 -0
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/PrepareQueryCommand.d.ts +37 -0
- package/dist-types/commands/QueryCommand.d.ts +31 -3
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1183 -183
- package/dist-types/pagination/ListScheduledQueriesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +30 -0
- package/dist-types/ts3.4/TimestreamQuery.d.ts +50 -0
- package/dist-types/ts3.4/TimestreamQueryClient.d.ts +12 -2
- package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +536 -0
- package/dist-types/ts3.4/pagination/ListScheduledQueriesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +30 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,47 @@
|
|
|
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.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **clients:** update clients as of 11/28/2021 ([#3072](https://github.com/aws/aws-sdk-js-v3/issues/3072)) ([2ad1622](https://github.com/aws/aws-sdk-js-v3/commit/2ad1622ba8586b926fe508055211803bb29e3976))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @aws-sdk/client-timestream-query
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
6
47
|
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
48
|
|
|
8
49
|
|
package/README.md
CHANGED
|
@@ -2,8 +2,18 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TimestreamQuery = void 0;
|
|
4
4
|
const CancelQueryCommand_1 = require("./commands/CancelQueryCommand");
|
|
5
|
+
const CreateScheduledQueryCommand_1 = require("./commands/CreateScheduledQueryCommand");
|
|
6
|
+
const DeleteScheduledQueryCommand_1 = require("./commands/DeleteScheduledQueryCommand");
|
|
5
7
|
const DescribeEndpointsCommand_1 = require("./commands/DescribeEndpointsCommand");
|
|
8
|
+
const DescribeScheduledQueryCommand_1 = require("./commands/DescribeScheduledQueryCommand");
|
|
9
|
+
const ExecuteScheduledQueryCommand_1 = require("./commands/ExecuteScheduledQueryCommand");
|
|
10
|
+
const ListScheduledQueriesCommand_1 = require("./commands/ListScheduledQueriesCommand");
|
|
11
|
+
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
12
|
+
const PrepareQueryCommand_1 = require("./commands/PrepareQueryCommand");
|
|
6
13
|
const QueryCommand_1 = require("./commands/QueryCommand");
|
|
14
|
+
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
15
|
+
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
16
|
+
const UpdateScheduledQueryCommand_1 = require("./commands/UpdateScheduledQueryCommand");
|
|
7
17
|
const TimestreamQueryClient_1 = require("./TimestreamQueryClient");
|
|
8
18
|
class TimestreamQuery extends TimestreamQueryClient_1.TimestreamQueryClient {
|
|
9
19
|
cancelQuery(args, optionsOrCb, cb) {
|
|
@@ -20,6 +30,34 @@ class TimestreamQuery extends TimestreamQueryClient_1.TimestreamQueryClient {
|
|
|
20
30
|
return this.send(command, optionsOrCb);
|
|
21
31
|
}
|
|
22
32
|
}
|
|
33
|
+
createScheduledQuery(args, optionsOrCb, cb) {
|
|
34
|
+
const command = new CreateScheduledQueryCommand_1.CreateScheduledQueryCommand(args);
|
|
35
|
+
if (typeof optionsOrCb === "function") {
|
|
36
|
+
this.send(command, optionsOrCb);
|
|
37
|
+
}
|
|
38
|
+
else if (typeof cb === "function") {
|
|
39
|
+
if (typeof optionsOrCb !== "object")
|
|
40
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
41
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
return this.send(command, optionsOrCb);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
deleteScheduledQuery(args, optionsOrCb, cb) {
|
|
48
|
+
const command = new DeleteScheduledQueryCommand_1.DeleteScheduledQueryCommand(args);
|
|
49
|
+
if (typeof optionsOrCb === "function") {
|
|
50
|
+
this.send(command, optionsOrCb);
|
|
51
|
+
}
|
|
52
|
+
else if (typeof cb === "function") {
|
|
53
|
+
if (typeof optionsOrCb !== "object")
|
|
54
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
55
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
return this.send(command, optionsOrCb);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
23
61
|
describeEndpoints(args, optionsOrCb, cb) {
|
|
24
62
|
const command = new DescribeEndpointsCommand_1.DescribeEndpointsCommand(args);
|
|
25
63
|
if (typeof optionsOrCb === "function") {
|
|
@@ -34,6 +72,76 @@ class TimestreamQuery extends TimestreamQueryClient_1.TimestreamQueryClient {
|
|
|
34
72
|
return this.send(command, optionsOrCb);
|
|
35
73
|
}
|
|
36
74
|
}
|
|
75
|
+
describeScheduledQuery(args, optionsOrCb, cb) {
|
|
76
|
+
const command = new DescribeScheduledQueryCommand_1.DescribeScheduledQueryCommand(args);
|
|
77
|
+
if (typeof optionsOrCb === "function") {
|
|
78
|
+
this.send(command, optionsOrCb);
|
|
79
|
+
}
|
|
80
|
+
else if (typeof cb === "function") {
|
|
81
|
+
if (typeof optionsOrCb !== "object")
|
|
82
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
83
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
return this.send(command, optionsOrCb);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
executeScheduledQuery(args, optionsOrCb, cb) {
|
|
90
|
+
const command = new ExecuteScheduledQueryCommand_1.ExecuteScheduledQueryCommand(args);
|
|
91
|
+
if (typeof optionsOrCb === "function") {
|
|
92
|
+
this.send(command, optionsOrCb);
|
|
93
|
+
}
|
|
94
|
+
else if (typeof cb === "function") {
|
|
95
|
+
if (typeof optionsOrCb !== "object")
|
|
96
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
97
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
return this.send(command, optionsOrCb);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
listScheduledQueries(args, optionsOrCb, cb) {
|
|
104
|
+
const command = new ListScheduledQueriesCommand_1.ListScheduledQueriesCommand(args);
|
|
105
|
+
if (typeof optionsOrCb === "function") {
|
|
106
|
+
this.send(command, optionsOrCb);
|
|
107
|
+
}
|
|
108
|
+
else if (typeof cb === "function") {
|
|
109
|
+
if (typeof optionsOrCb !== "object")
|
|
110
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
111
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
112
|
+
}
|
|
113
|
+
else {
|
|
114
|
+
return this.send(command, optionsOrCb);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
listTagsForResource(args, optionsOrCb, cb) {
|
|
118
|
+
const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
|
|
119
|
+
if (typeof optionsOrCb === "function") {
|
|
120
|
+
this.send(command, optionsOrCb);
|
|
121
|
+
}
|
|
122
|
+
else if (typeof cb === "function") {
|
|
123
|
+
if (typeof optionsOrCb !== "object")
|
|
124
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
125
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
126
|
+
}
|
|
127
|
+
else {
|
|
128
|
+
return this.send(command, optionsOrCb);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
prepareQuery(args, optionsOrCb, cb) {
|
|
132
|
+
const command = new PrepareQueryCommand_1.PrepareQueryCommand(args);
|
|
133
|
+
if (typeof optionsOrCb === "function") {
|
|
134
|
+
this.send(command, optionsOrCb);
|
|
135
|
+
}
|
|
136
|
+
else if (typeof cb === "function") {
|
|
137
|
+
if (typeof optionsOrCb !== "object")
|
|
138
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
139
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
return this.send(command, optionsOrCb);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
37
145
|
query(args, optionsOrCb, cb) {
|
|
38
146
|
const command = new QueryCommand_1.QueryCommand(args);
|
|
39
147
|
if (typeof optionsOrCb === "function") {
|
|
@@ -48,5 +156,47 @@ class TimestreamQuery extends TimestreamQueryClient_1.TimestreamQueryClient {
|
|
|
48
156
|
return this.send(command, optionsOrCb);
|
|
49
157
|
}
|
|
50
158
|
}
|
|
159
|
+
tagResource(args, optionsOrCb, cb) {
|
|
160
|
+
const command = new TagResourceCommand_1.TagResourceCommand(args);
|
|
161
|
+
if (typeof optionsOrCb === "function") {
|
|
162
|
+
this.send(command, optionsOrCb);
|
|
163
|
+
}
|
|
164
|
+
else if (typeof cb === "function") {
|
|
165
|
+
if (typeof optionsOrCb !== "object")
|
|
166
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
167
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
168
|
+
}
|
|
169
|
+
else {
|
|
170
|
+
return this.send(command, optionsOrCb);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
untagResource(args, optionsOrCb, cb) {
|
|
174
|
+
const command = new UntagResourceCommand_1.UntagResourceCommand(args);
|
|
175
|
+
if (typeof optionsOrCb === "function") {
|
|
176
|
+
this.send(command, optionsOrCb);
|
|
177
|
+
}
|
|
178
|
+
else if (typeof cb === "function") {
|
|
179
|
+
if (typeof optionsOrCb !== "object")
|
|
180
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
181
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
182
|
+
}
|
|
183
|
+
else {
|
|
184
|
+
return this.send(command, optionsOrCb);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
updateScheduledQuery(args, optionsOrCb, cb) {
|
|
188
|
+
const command = new UpdateScheduledQueryCommand_1.UpdateScheduledQueryCommand(args);
|
|
189
|
+
if (typeof optionsOrCb === "function") {
|
|
190
|
+
this.send(command, optionsOrCb);
|
|
191
|
+
}
|
|
192
|
+
else if (typeof cb === "function") {
|
|
193
|
+
if (typeof optionsOrCb !== "object")
|
|
194
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
195
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
196
|
+
}
|
|
197
|
+
else {
|
|
198
|
+
return this.send(command, optionsOrCb);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
51
201
|
}
|
|
52
202
|
exports.TimestreamQuery = TimestreamQuery;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateScheduledQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class CreateScheduledQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "CreateScheduledQueryCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.CreateScheduledQueryRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.CreateScheduledQueryResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0CreateScheduledQueryCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0CreateScheduledQueryCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.CreateScheduledQueryCommand = CreateScheduledQueryCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteScheduledQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class DeleteScheduledQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "DeleteScheduledQueryCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.DeleteScheduledQueryRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: (output) => output,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0DeleteScheduledQueryCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0DeleteScheduledQueryCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.DeleteScheduledQueryCommand = DeleteScheduledQueryCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeScheduledQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class DescribeScheduledQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "DescribeScheduledQueryCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.DescribeScheduledQueryRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.DescribeScheduledQueryResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0DescribeScheduledQueryCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0DescribeScheduledQueryCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.DescribeScheduledQueryCommand = DescribeScheduledQueryCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecuteScheduledQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class ExecuteScheduledQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "ExecuteScheduledQueryCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.ExecuteScheduledQueryRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: (output) => output,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0ExecuteScheduledQueryCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0ExecuteScheduledQueryCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.ExecuteScheduledQueryCommand = ExecuteScheduledQueryCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListScheduledQueriesCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class ListScheduledQueriesCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "ListScheduledQueriesCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.ListScheduledQueriesRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.ListScheduledQueriesResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0ListScheduledQueriesCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0ListScheduledQueriesCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListTagsForResourceCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "ListTagsForResourceCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.ListTagsForResourceRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.ListTagsForResourceResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0ListTagsForResourceCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0ListTagsForResourceCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PrepareQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class PrepareQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "PrepareQueryCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.PrepareQueryRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.PrepareQueryResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0PrepareQueryCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0PrepareQueryCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.PrepareQueryCommand = PrepareQueryCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TagResourceCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class TagResourceCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "TagResourceCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.TagResourceRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.TagResourceResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0TagResourceCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0TagResourceCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UntagResourceCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class UntagResourceCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "UntagResourceCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.UntagResourceRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: models_0_1.UntagResourceResponse.filterSensitiveLog,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0UntagResourceCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0UntagResourceCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateScheduledQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_discovery_1 = require("@aws-sdk/middleware-endpoint-discovery");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class UpdateScheduledQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
15
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
16
|
+
this.middlewareStack.use(middleware_endpoint_discovery_1.getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
|
|
17
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
18
|
+
const { logger } = configuration;
|
|
19
|
+
const clientName = "TimestreamQueryClient";
|
|
20
|
+
const commandName = "UpdateScheduledQueryCommand";
|
|
21
|
+
const handlerExecutionContext = {
|
|
22
|
+
logger,
|
|
23
|
+
clientName,
|
|
24
|
+
commandName,
|
|
25
|
+
inputFilterSensitiveLog: models_0_1.UpdateScheduledQueryRequest.filterSensitiveLog,
|
|
26
|
+
outputFilterSensitiveLog: (output) => output,
|
|
27
|
+
};
|
|
28
|
+
const { requestHandler } = configuration;
|
|
29
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
30
|
+
}
|
|
31
|
+
serialize(input, context) {
|
|
32
|
+
return Aws_json1_0_1.serializeAws_json1_0UpdateScheduledQueryCommand(input, context);
|
|
33
|
+
}
|
|
34
|
+
deserialize(output, context) {
|
|
35
|
+
return Aws_json1_0_1.deserializeAws_json1_0UpdateScheduledQueryCommand(output, context);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.UpdateScheduledQueryCommand = UpdateScheduledQueryCommand;
|
|
@@ -2,5 +2,15 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./CancelQueryCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CreateScheduledQueryCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./DeleteScheduledQueryCommand"), exports);
|
|
5
7
|
tslib_1.__exportStar(require("./DescribeEndpointsCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./DescribeScheduledQueryCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./ExecuteScheduledQueryCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./ListScheduledQueriesCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./PrepareQueryCommand"), exports);
|
|
6
13
|
tslib_1.__exportStar(require("./QueryCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./UpdateScheduledQueryCommand"), exports);
|