@aws-sdk/client-timestream-query 3.477.0 → 3.481.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/CancelQueryCommand.js +19 -42
- package/dist-cjs/commands/CreateScheduledQueryCommand.js +19 -42
- package/dist-cjs/commands/DeleteScheduledQueryCommand.js +19 -42
- package/dist-cjs/commands/DescribeEndpointsCommand.js +18 -41
- package/dist-cjs/commands/DescribeScheduledQueryCommand.js +19 -42
- package/dist-cjs/commands/ExecuteScheduledQueryCommand.js +19 -42
- package/dist-cjs/commands/ListScheduledQueriesCommand.js +19 -42
- package/dist-cjs/commands/ListTagsForResourceCommand.js +19 -42
- package/dist-cjs/commands/PrepareQueryCommand.js +19 -42
- package/dist-cjs/commands/QueryCommand.js +19 -42
- package/dist-cjs/commands/TagResourceCommand.js +19 -42
- package/dist-cjs/commands/UntagResourceCommand.js +19 -42
- package/dist-cjs/commands/UpdateScheduledQueryCommand.js +19 -42
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/pagination/ListScheduledQueriesPaginator.js +2 -24
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +2 -24
- package/dist-cjs/pagination/QueryPaginator.js +2 -24
- package/dist-es/commands/CancelQueryCommand.js +19 -42
- package/dist-es/commands/CreateScheduledQueryCommand.js +19 -42
- package/dist-es/commands/DeleteScheduledQueryCommand.js +19 -42
- package/dist-es/commands/DescribeEndpointsCommand.js +18 -41
- package/dist-es/commands/DescribeScheduledQueryCommand.js +19 -42
- package/dist-es/commands/ExecuteScheduledQueryCommand.js +19 -42
- package/dist-es/commands/ListScheduledQueriesCommand.js +19 -42
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -42
- package/dist-es/commands/PrepareQueryCommand.js +19 -42
- package/dist-es/commands/QueryCommand.js +19 -42
- package/dist-es/commands/TagResourceCommand.js +19 -42
- package/dist-es/commands/UntagResourceCommand.js +19 -42
- package/dist-es/commands/UpdateScheduledQueryCommand.js +19 -42
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/pagination/ListScheduledQueriesPaginator.js +2 -23
- package/dist-es/pagination/ListTagsForResourcePaginator.js +2 -23
- package/dist-es/pagination/QueryPaginator.js +2 -23
- package/dist-types/commands/CancelQueryCommand.d.ts +6 -21
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +6 -21
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +6 -21
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +6 -21
- package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +6 -21
- package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +6 -21
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/PrepareQueryCommand.d.ts +6 -21
- package/dist-types/commands/QueryCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/pagination/ListScheduledQueriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +1 -1
- package/dist-types/pagination/QueryPaginator.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +12 -23
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +12 -24
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/pagination/ListScheduledQueriesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +3 -3
- package/package.json +11 -10
|
@@ -2,48 +2,25 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
6
6
|
import { de_UpdateScheduledQueryCommand, se_UpdateScheduledQueryCommand } from "../protocols/Aws_json1_0";
|
|
7
7
|
export { $Command };
|
|
8
|
-
export class UpdateScheduledQueryCommand extends $Command
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
const { logger } = configuration;
|
|
27
|
-
const clientName = "TimestreamQueryClient";
|
|
28
|
-
const commandName = "UpdateScheduledQueryCommand";
|
|
29
|
-
const handlerExecutionContext = {
|
|
30
|
-
logger,
|
|
31
|
-
clientName,
|
|
32
|
-
commandName,
|
|
33
|
-
inputFilterSensitiveLog: (_) => _,
|
|
34
|
-
outputFilterSensitiveLog: (_) => _,
|
|
35
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
-
service: "Timestream_20181101",
|
|
37
|
-
operation: "UpdateScheduledQuery",
|
|
38
|
-
},
|
|
39
|
-
};
|
|
40
|
-
const { requestHandler } = configuration;
|
|
41
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
42
|
-
}
|
|
43
|
-
serialize(input, context) {
|
|
44
|
-
return se_UpdateScheduledQueryCommand(input, context);
|
|
45
|
-
}
|
|
46
|
-
deserialize(output, context) {
|
|
47
|
-
return de_UpdateScheduledQueryCommand(output, context);
|
|
48
|
-
}
|
|
8
|
+
export class UpdateScheduledQueryCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep({
|
|
11
|
+
...commonParams,
|
|
12
|
+
})
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
getEndpointDiscoveryPlugin(config, { clientStack: cs, isDiscoveredEndpointRequired: true, options: o }),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("Timestream_20181101", "UpdateScheduledQuery", {})
|
|
21
|
+
.n("TimestreamQueryClient", "UpdateScheduledQueryCommand")
|
|
22
|
+
.f(void 0, void 0)
|
|
23
|
+
.ser(se_UpdateScheduledQueryCommand)
|
|
24
|
+
.de(de_UpdateScheduledQueryCommand)
|
|
25
|
+
.build() {
|
|
49
26
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "timestream",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListScheduledQueriesCommand, } from "../commands/ListScheduledQueriesCommand";
|
|
2
3
|
import { TimestreamQueryClient } from "../TimestreamQueryClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListScheduledQueriesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListScheduledQueries(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof TimestreamQueryClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected TimestreamQuery | TimestreamQueryClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListScheduledQueries = createPaginator(TimestreamQueryClient, ListScheduledQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListTagsForResourceCommand, } from "../commands/ListTagsForResourceCommand";
|
|
2
3
|
import { TimestreamQueryClient } from "../TimestreamQueryClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListTagsForResourceCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListTagsForResource(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof TimestreamQueryClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected TimestreamQuery | TimestreamQueryClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListTagsForResource = createPaginator(TimestreamQueryClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { QueryCommand } from "../commands/QueryCommand";
|
|
2
3
|
import { TimestreamQueryClient } from "../TimestreamQueryClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new QueryCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateQuery(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxRows"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof TimestreamQueryClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected TimestreamQuery | TimestreamQueryClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateQuery = createPaginator(TimestreamQueryClient, QueryCommand, "NextToken", "NextToken", "MaxRows");
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CancelQueryCommandInput extends CancelQueryRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CancelQueryCommandOutput extends CancelQueryResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CancelQueryCommand_base: {
|
|
24
|
+
new (input: CancelQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CancelQueryCommandInput, CancelQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p> Cancels a query that has been issued. Cancellation is provided only if the query has
|
|
@@ -73,23 +76,5 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
|
|
|
73
76
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
74
77
|
*
|
|
75
78
|
*/
|
|
76
|
-
export declare class CancelQueryCommand extends
|
|
77
|
-
readonly input: CancelQueryCommandInput;
|
|
78
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
constructor(input: CancelQueryCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelQueryCommandInput, CancelQueryCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private serialize;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private deserialize;
|
|
79
|
+
export declare class CancelQueryCommand extends CancelQueryCommand_base {
|
|
95
80
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateScheduledQueryRequest, CreateScheduledQueryResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateScheduledQueryCommandInput extends CreateScheduledQueryRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateScheduledQueryCommand_base: {
|
|
24
|
+
new (input: CreateScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p> Create a scheduled query that will be run on your behalf at the configured schedule.
|
|
@@ -142,23 +145,5 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
|
|
|
142
145
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
143
146
|
*
|
|
144
147
|
*/
|
|
145
|
-
export declare class CreateScheduledQueryCommand extends
|
|
146
|
-
readonly input: CreateScheduledQueryCommandInput;
|
|
147
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
148
|
-
/**
|
|
149
|
-
* @public
|
|
150
|
-
*/
|
|
151
|
-
constructor(input: CreateScheduledQueryCommandInput);
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput>;
|
|
156
|
-
/**
|
|
157
|
-
* @internal
|
|
158
|
-
*/
|
|
159
|
-
private serialize;
|
|
160
|
-
/**
|
|
161
|
-
* @internal
|
|
162
|
-
*/
|
|
163
|
-
private deserialize;
|
|
148
|
+
export declare class CreateScheduledQueryCommand extends CreateScheduledQueryCommand_base {
|
|
164
149
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteScheduledQueryRequest } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteScheduledQueryCommandInput extends DeleteScheduledQueryRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteScheduledQueryCommand_base: {
|
|
24
|
+
new (input: DeleteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes a given scheduled query. This is an irreversible operation. </p>
|
|
@@ -69,23 +72,5 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
69
72
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
70
73
|
*
|
|
71
74
|
*/
|
|
72
|
-
export declare class DeleteScheduledQueryCommand extends
|
|
73
|
-
readonly input: DeleteScheduledQueryCommandInput;
|
|
74
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
-
/**
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
constructor(input: DeleteScheduledQueryCommandInput);
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput>;
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
private serialize;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private deserialize;
|
|
75
|
+
export declare class DeleteScheduledQueryCommand extends DeleteScheduledQueryCommand_base {
|
|
91
76
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeEndpointsCommandInput extends DescribeEndpointsRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeEndpointsCommandOutput extends DescribeEndpointsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeEndpointsCommand_base: {
|
|
24
|
+
new (input: DescribeEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>DescribeEndpoints returns a list of available endpoints to make Timestream
|
|
@@ -85,23 +88,5 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
|
|
|
85
88
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
86
89
|
*
|
|
87
90
|
*/
|
|
88
|
-
export declare class DescribeEndpointsCommand extends
|
|
89
|
-
readonly input: DescribeEndpointsCommandInput;
|
|
90
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
constructor(input: DescribeEndpointsCommandInput);
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
private serialize;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
private deserialize;
|
|
91
|
+
export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {
|
|
107
92
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeScheduledQueryRequest, DescribeScheduledQueryResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeScheduledQueryCommandInput extends DescribeScheduledQue
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQueryResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeScheduledQueryCommand_base: {
|
|
24
|
+
new (input: DescribeScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Provides detailed information about a scheduled query.</p>
|
|
@@ -175,23 +178,5 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu
|
|
|
175
178
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
176
179
|
*
|
|
177
180
|
*/
|
|
178
|
-
export declare class DescribeScheduledQueryCommand extends
|
|
179
|
-
readonly input: DescribeScheduledQueryCommandInput;
|
|
180
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
181
|
-
/**
|
|
182
|
-
* @public
|
|
183
|
-
*/
|
|
184
|
-
constructor(input: DescribeScheduledQueryCommandInput);
|
|
185
|
-
/**
|
|
186
|
-
* @internal
|
|
187
|
-
*/
|
|
188
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* @internal
|
|
191
|
-
*/
|
|
192
|
-
private serialize;
|
|
193
|
-
/**
|
|
194
|
-
* @internal
|
|
195
|
-
*/
|
|
196
|
-
private deserialize;
|
|
181
|
+
export declare class DescribeScheduledQueryCommand extends DescribeScheduledQueryCommand_base {
|
|
197
182
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ExecuteScheduledQueryRequest } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ExecuteScheduledQueryCommandInput extends ExecuteScheduledQuery
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ExecuteScheduledQueryCommand_base: {
|
|
24
|
+
new (input: ExecuteScheduledQueryCommandInput): import("@smithy/smithy-client").CommandImpl<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p> You can use this API to run a scheduled query manually. </p>
|
|
@@ -71,23 +74,5 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
71
74
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
72
75
|
*
|
|
73
76
|
*/
|
|
74
|
-
export declare class ExecuteScheduledQueryCommand extends
|
|
75
|
-
readonly input: ExecuteScheduledQueryCommandInput;
|
|
76
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
-
/**
|
|
78
|
-
* @public
|
|
79
|
-
*/
|
|
80
|
-
constructor(input: ExecuteScheduledQueryCommandInput);
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput>;
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
private serialize;
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
private deserialize;
|
|
77
|
+
export declare class ExecuteScheduledQueryCommand extends ExecuteScheduledQueryCommand_base {
|
|
93
78
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListScheduledQueriesRequest, ListScheduledQueriesResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListScheduledQueriesCommandInput extends ListScheduledQueriesRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListScheduledQueriesCommand_base: {
|
|
24
|
+
new (input: ListScheduledQueriesCommandInput): import("@smithy/smithy-client").CommandImpl<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets a list of all scheduled queries in the caller's Amazon account and Region. <code>ListScheduledQueries</code> is eventually consistent. </p>
|
|
@@ -93,23 +96,5 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR
|
|
|
93
96
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
94
97
|
*
|
|
95
98
|
*/
|
|
96
|
-
export declare class ListScheduledQueriesCommand extends
|
|
97
|
-
readonly input: ListScheduledQueriesCommandInput;
|
|
98
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
-
/**
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
constructor(input: ListScheduledQueriesCommandInput);
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
private serialize;
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
private deserialize;
|
|
99
|
+
export declare class ListScheduledQueriesCommand extends ListScheduledQueriesCommand_base {
|
|
115
100
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListTagsForResourceCommand_base: {
|
|
24
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>List all tags on a Timestream query resource.</p>
|
|
@@ -71,23 +74,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
71
74
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
72
75
|
*
|
|
73
76
|
*/
|
|
74
|
-
export declare class ListTagsForResourceCommand extends
|
|
75
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
76
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
-
/**
|
|
78
|
-
* @public
|
|
79
|
-
*/
|
|
80
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
private serialize;
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
private deserialize;
|
|
77
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
93
78
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { PrepareQueryRequest, PrepareQueryResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface PrepareQueryCommandInput extends PrepareQueryRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const PrepareQueryCommand_base: {
|
|
24
|
+
new (input: PrepareQueryCommandInput): import("@smithy/smithy-client").CommandImpl<PrepareQueryCommandInput, PrepareQueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>A synchronous operation that allows you to submit a query with parameters to be stored
|
|
@@ -109,23 +112,5 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad
|
|
|
109
112
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
110
113
|
*
|
|
111
114
|
*/
|
|
112
|
-
export declare class PrepareQueryCommand extends
|
|
113
|
-
readonly input: PrepareQueryCommandInput;
|
|
114
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
115
|
-
/**
|
|
116
|
-
* @public
|
|
117
|
-
*/
|
|
118
|
-
constructor(input: PrepareQueryCommandInput);
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PrepareQueryCommandInput, PrepareQueryCommandOutput>;
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
private serialize;
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
private deserialize;
|
|
115
|
+
export declare class PrepareQueryCommand extends PrepareQueryCommand_base {
|
|
131
116
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { QueryRequest, QueryResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface QueryCommandInput extends QueryRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const QueryCommand_base: {
|
|
24
|
+
new (input: QueryCommandInput): import("@smithy/smithy-client").CommandImpl<QueryCommandInput, QueryCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>
|
|
@@ -168,23 +171,5 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
|
|
|
168
171
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
169
172
|
*
|
|
170
173
|
*/
|
|
171
|
-
export declare class QueryCommand extends
|
|
172
|
-
readonly input: QueryCommandInput;
|
|
173
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
174
|
-
/**
|
|
175
|
-
* @public
|
|
176
|
-
*/
|
|
177
|
-
constructor(input: QueryCommandInput);
|
|
178
|
-
/**
|
|
179
|
-
* @internal
|
|
180
|
-
*/
|
|
181
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryCommandInput, QueryCommandOutput>;
|
|
182
|
-
/**
|
|
183
|
-
* @internal
|
|
184
|
-
*/
|
|
185
|
-
private serialize;
|
|
186
|
-
/**
|
|
187
|
-
* @internal
|
|
188
|
-
*/
|
|
189
|
-
private deserialize;
|
|
174
|
+
export declare class QueryCommand extends QueryCommand_base {
|
|
190
175
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const TagResourceCommand_base: {
|
|
24
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Associate a set of tags with a Timestream resource. You can then activate these
|
|
@@ -72,23 +75,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
72
75
|
* <p>Base exception class for all service exceptions from TimestreamQuery service.</p>
|
|
73
76
|
*
|
|
74
77
|
*/
|
|
75
|
-
export declare class TagResourceCommand extends
|
|
76
|
-
readonly input: TagResourceCommandInput;
|
|
77
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
-
/**
|
|
79
|
-
* @public
|
|
80
|
-
*/
|
|
81
|
-
constructor(input: TagResourceCommandInput);
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
private serialize;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
private deserialize;
|
|
78
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
94
79
|
}
|