@aws-sdk/client-timestream-query 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/TimestreamQuery.d.ts +235 -70
  3. package/dist-types/ts3.4/TimestreamQueryClient.d.ts +213 -89
  4. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/QueryCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/TimestreamQueryServiceException.d.ts +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +697 -647
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  24. package/dist-types/ts3.4/pagination/ListScheduledQueriesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  28. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +161 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -41
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  33. package/package.json +35 -35
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamQueryClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ TimestreamQueryClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: TimestreamQueryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateScheduledQueryRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient";
5
- export interface UpdateScheduledQueryCommandInput extends UpdateScheduledQueryRequest {
6
- }
7
- export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateScheduledQueryCommand extends $Command<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, TimestreamQueryClientResolvedConfig> {
11
- readonly input: UpdateScheduledQueryCommandInput;
12
- constructor(input: UpdateScheduledQueryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamQueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
18
+ export declare class UpdateScheduledQueryCommand extends $Command<
19
+ UpdateScheduledQueryCommandInput,
20
+ UpdateScheduledQueryCommandOutput,
21
+ TimestreamQueryClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateScheduledQueryCommandInput;
24
+ constructor(input: UpdateScheduledQueryCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: TimestreamQueryClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ UpdateScheduledQueryCommandInput,
32
+ UpdateScheduledQueryCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class TimestreamQueryServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class TimestreamQueryServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";