@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,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 { UpdateScheduledQueryRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TimestreamQueryClientResolvedConfig,
|
|
13
|
+
} from "../TimestreamQueryClient";
|
|
14
|
+
export interface UpdateScheduledQueryCommandInput
|
|
15
|
+
extends UpdateScheduledQueryRequest {}
|
|
16
|
+
export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class UpdateScheduledQueryCommand extends $Command<
|
|
18
|
+
UpdateScheduledQueryCommandInput,
|
|
19
|
+
UpdateScheduledQueryCommandOutput,
|
|
20
|
+
TimestreamQueryClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: UpdateScheduledQueryCommandInput;
|
|
23
|
+
constructor(input: UpdateScheduledQueryCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: TimestreamQueryClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<
|
|
29
|
+
UpdateScheduledQueryCommandInput,
|
|
30
|
+
UpdateScheduledQueryCommandOutput
|
|
31
|
+
>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export * from "./CancelQueryCommand";
|
|
2
|
-
export * from "./CreateScheduledQueryCommand";
|
|
3
|
-
export * from "./DeleteScheduledQueryCommand";
|
|
4
|
-
export * from "./DescribeEndpointsCommand";
|
|
5
|
-
export * from "./DescribeScheduledQueryCommand";
|
|
6
|
-
export * from "./ExecuteScheduledQueryCommand";
|
|
7
|
-
export * from "./ListScheduledQueriesCommand";
|
|
8
|
-
export * from "./ListTagsForResourceCommand";
|
|
9
|
-
export * from "./PrepareQueryCommand";
|
|
10
|
-
export * from "./QueryCommand";
|
|
11
|
-
export * from "./TagResourceCommand";
|
|
12
|
-
export * from "./UntagResourceCommand";
|
|
13
|
-
export * from "./UpdateScheduledQueryCommand";
|
|
1
|
+
export * from "./CancelQueryCommand";
|
|
2
|
+
export * from "./CreateScheduledQueryCommand";
|
|
3
|
+
export * from "./DeleteScheduledQueryCommand";
|
|
4
|
+
export * from "./DescribeEndpointsCommand";
|
|
5
|
+
export * from "./DescribeScheduledQueryCommand";
|
|
6
|
+
export * from "./ExecuteScheduledQueryCommand";
|
|
7
|
+
export * from "./ListScheduledQueriesCommand";
|
|
8
|
+
export * from "./ListTagsForResourceCommand";
|
|
9
|
+
export * from "./PrepareQueryCommand";
|
|
10
|
+
export * from "./QueryCommand";
|
|
11
|
+
export * from "./TagResourceCommand";
|
|
12
|
+
export * from "./UntagResourceCommand";
|
|
13
|
+
export * from "./UpdateScheduledQueryCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./TimestreamQuery";
|
|
2
|
-
export * from "./TimestreamQueryClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { TimestreamQueryServiceException } from "./models/TimestreamQueryServiceException";
|
|
1
|
+
export * from "./TimestreamQuery";
|
|
2
|
+
export * from "./TimestreamQueryClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { TimestreamQueryServiceException } from "./models/TimestreamQueryServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class TimestreamQueryServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|