@aws-sdk/client-timestream-query 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/TimestreamQuery.d.ts +222 -70
- package/dist-types/ts3.4/TimestreamQueryClient.d.ts +187 -89
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +34 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +501 -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 +72 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +35 -35
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateScheduledQueryRequest,
|
|
10
|
+
CreateScheduledQueryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TimestreamQueryClientResolvedConfig,
|
|
16
|
+
} from "../TimestreamQueryClient";
|
|
17
|
+
export interface CreateScheduledQueryCommandInput
|
|
18
|
+
extends CreateScheduledQueryRequest {}
|
|
19
|
+
export interface CreateScheduledQueryCommandOutput
|
|
20
|
+
extends CreateScheduledQueryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateScheduledQueryCommand extends $Command<
|
|
23
|
+
CreateScheduledQueryCommandInput,
|
|
24
|
+
CreateScheduledQueryCommandOutput,
|
|
25
|
+
TimestreamQueryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateScheduledQueryCommandInput;
|
|
28
|
+
constructor(input: CreateScheduledQueryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateScheduledQueryCommandInput,
|
|
35
|
+
CreateScheduledQueryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteScheduledQueryRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TimestreamQueryClientResolvedConfig,
|
|
13
|
+
} from "../TimestreamQueryClient";
|
|
14
|
+
export interface DeleteScheduledQueryCommandInput
|
|
15
|
+
extends DeleteScheduledQueryRequest {}
|
|
16
|
+
export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class DeleteScheduledQueryCommand extends $Command<
|
|
18
|
+
DeleteScheduledQueryCommandInput,
|
|
19
|
+
DeleteScheduledQueryCommandOutput,
|
|
20
|
+
TimestreamQueryClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteScheduledQueryCommandInput;
|
|
23
|
+
constructor(input: DeleteScheduledQueryCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<
|
|
29
|
+
DeleteScheduledQueryCommandInput,
|
|
30
|
+
DeleteScheduledQueryCommandOutput
|
|
31
|
+
>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeEndpointsRequest,
|
|
10
|
+
DescribeEndpointsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TimestreamQueryClientResolvedConfig,
|
|
16
|
+
} from "../TimestreamQueryClient";
|
|
17
|
+
export interface DescribeEndpointsCommandInput
|
|
18
|
+
extends DescribeEndpointsRequest {}
|
|
19
|
+
export interface DescribeEndpointsCommandOutput
|
|
20
|
+
extends DescribeEndpointsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEndpointsCommand extends $Command<
|
|
23
|
+
DescribeEndpointsCommandInput,
|
|
24
|
+
DescribeEndpointsCommandOutput,
|
|
25
|
+
TimestreamQueryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEndpointsCommandInput;
|
|
28
|
+
constructor(input: DescribeEndpointsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeScheduledQueryRequest,
|
|
10
|
+
DescribeScheduledQueryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TimestreamQueryClientResolvedConfig,
|
|
16
|
+
} from "../TimestreamQueryClient";
|
|
17
|
+
export interface DescribeScheduledQueryCommandInput
|
|
18
|
+
extends DescribeScheduledQueryRequest {}
|
|
19
|
+
export interface DescribeScheduledQueryCommandOutput
|
|
20
|
+
extends DescribeScheduledQueryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeScheduledQueryCommand extends $Command<
|
|
23
|
+
DescribeScheduledQueryCommandInput,
|
|
24
|
+
DescribeScheduledQueryCommandOutput,
|
|
25
|
+
TimestreamQueryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeScheduledQueryCommandInput;
|
|
28
|
+
constructor(input: DescribeScheduledQueryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeScheduledQueryCommandInput,
|
|
35
|
+
DescribeScheduledQueryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ExecuteScheduledQueryRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TimestreamQueryClientResolvedConfig,
|
|
13
|
+
} from "../TimestreamQueryClient";
|
|
14
|
+
export interface ExecuteScheduledQueryCommandInput
|
|
15
|
+
extends ExecuteScheduledQueryRequest {}
|
|
16
|
+
export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class ExecuteScheduledQueryCommand extends $Command<
|
|
18
|
+
ExecuteScheduledQueryCommandInput,
|
|
19
|
+
ExecuteScheduledQueryCommandOutput,
|
|
20
|
+
TimestreamQueryClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: ExecuteScheduledQueryCommandInput;
|
|
23
|
+
constructor(input: ExecuteScheduledQueryCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<
|
|
29
|
+
ExecuteScheduledQueryCommandInput,
|
|
30
|
+
ExecuteScheduledQueryCommandOutput
|
|
31
|
+
>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListScheduledQueriesRequest,
|
|
10
|
+
ListScheduledQueriesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TimestreamQueryClientResolvedConfig,
|
|
16
|
+
} from "../TimestreamQueryClient";
|
|
17
|
+
export interface ListScheduledQueriesCommandInput
|
|
18
|
+
extends ListScheduledQueriesRequest {}
|
|
19
|
+
export interface ListScheduledQueriesCommandOutput
|
|
20
|
+
extends ListScheduledQueriesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListScheduledQueriesCommand extends $Command<
|
|
23
|
+
ListScheduledQueriesCommandInput,
|
|
24
|
+
ListScheduledQueriesCommandOutput,
|
|
25
|
+
TimestreamQueryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListScheduledQueriesCommandInput;
|
|
28
|
+
constructor(input: ListScheduledQueriesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListScheduledQueriesCommandInput,
|
|
35
|
+
ListScheduledQueriesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListTagsForResourceRequest,
|
|
10
|
+
ListTagsForResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TimestreamQueryClientResolvedConfig,
|
|
16
|
+
} from "../TimestreamQueryClient";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
TimestreamQueryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { PrepareQueryRequest, PrepareQueryResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TimestreamQueryClientResolvedConfig,
|
|
13
|
+
} from "../TimestreamQueryClient";
|
|
14
|
+
export interface PrepareQueryCommandInput extends PrepareQueryRequest {}
|
|
15
|
+
export interface PrepareQueryCommandOutput
|
|
16
|
+
extends PrepareQueryResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class PrepareQueryCommand extends $Command<
|
|
19
|
+
PrepareQueryCommandInput,
|
|
20
|
+
PrepareQueryCommandOutput,
|
|
21
|
+
TimestreamQueryClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PrepareQueryCommandInput;
|
|
24
|
+
constructor(input: PrepareQueryCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PrepareQueryCommandInput, PrepareQueryCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { QueryRequest, QueryResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TimestreamQueryClientResolvedConfig,
|
|
13
|
+
} from "../TimestreamQueryClient";
|
|
14
|
+
export interface QueryCommandInput extends QueryRequest {}
|
|
15
|
+
export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {}
|
|
16
|
+
export declare class QueryCommand extends $Command<
|
|
17
|
+
QueryCommandInput,
|
|
18
|
+
QueryCommandOutput,
|
|
19
|
+
TimestreamQueryClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: QueryCommandInput;
|
|
22
|
+
constructor(input: QueryCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<QueryCommandInput, QueryCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TimestreamQueryClientResolvedConfig,
|
|
13
|
+
} from "../TimestreamQueryClient";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
TimestreamQueryClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UntagResourceRequest,
|
|
10
|
+
UntagResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TimestreamQueryClientResolvedConfig,
|
|
16
|
+
} from "../TimestreamQueryClient";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
TimestreamQueryClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|