@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.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/TimestreamQuery.d.ts +222 -70
  3. package/dist-types/ts3.4/TimestreamQueryClient.d.ts +187 -89
  4. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/QueryCommand.d.ts +30 -17
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +34 -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 +7 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +501 -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 +72 -41
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  33. package/package.json +35 -35
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { TimestreamQuery } from "../TimestreamQuery";
3
- import { TimestreamQueryClient } from "../TimestreamQueryClient";
4
- export interface TimestreamQueryPaginationConfiguration extends PaginationConfiguration {
5
- client: TimestreamQuery | TimestreamQueryClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { TimestreamQuery } from "../TimestreamQuery";
3
+ import { TimestreamQueryClient } from "../TimestreamQueryClient";
4
+ export interface TimestreamQueryPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: TimestreamQuery | TimestreamQueryClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput } from "../commands/ListScheduledQueriesCommand";
3
- import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListScheduledQueries(config: TimestreamQueryPaginationConfiguration, input: ListScheduledQueriesCommandInput, ...additionalArguments: any): Paginator<ListScheduledQueriesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListScheduledQueriesCommandInput,
4
+ ListScheduledQueriesCommandOutput,
5
+ } from "../commands/ListScheduledQueriesCommand";
6
+ import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListScheduledQueries(
8
+ config: TimestreamQueryPaginationConfiguration,
9
+ input: ListScheduledQueriesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListScheduledQueriesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
- import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTagsForResource(config: TimestreamQueryPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTagsForResourceCommandInput,
4
+ ListTagsForResourceCommandOutput,
5
+ } from "../commands/ListTagsForResourceCommand";
6
+ import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTagsForResource(
8
+ config: TimestreamQueryPaginationConfiguration,
9
+ input: ListTagsForResourceCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTagsForResourceCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { QueryCommandInput, QueryCommandOutput } from "../commands/QueryCommand";
3
- import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateQuery(config: TimestreamQueryPaginationConfiguration, input: QueryCommandInput, ...additionalArguments: any): Paginator<QueryCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ QueryCommandInput,
4
+ QueryCommandOutput,
5
+ } from "../commands/QueryCommand";
6
+ import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateQuery(
8
+ config: TimestreamQueryPaginationConfiguration,
9
+ input: QueryCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<QueryCommandOutput>;
@@ -1,4 +1,4 @@
1
- export * from "./Interfaces";
2
- export * from "./ListScheduledQueriesPaginator";
3
- export * from "./ListTagsForResourcePaginator";
4
- export * from "./QueryPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListScheduledQueriesPaginator";
3
+ export * from "./ListTagsForResourcePaginator";
4
+ export * from "./QueryPaginator";
@@ -1,41 +1,161 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CancelQueryCommandInput, CancelQueryCommandOutput } from "../commands/CancelQueryCommand";
4
- import { CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput } from "../commands/CreateScheduledQueryCommand";
5
- import { DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput } from "../commands/DeleteScheduledQueryCommand";
6
- import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "../commands/DescribeEndpointsCommand";
7
- import { DescribeScheduledQueryCommandInput, DescribeScheduledQueryCommandOutput } from "../commands/DescribeScheduledQueryCommand";
8
- import { ExecuteScheduledQueryCommandInput, ExecuteScheduledQueryCommandOutput } from "../commands/ExecuteScheduledQueryCommand";
9
- import { ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput } from "../commands/ListScheduledQueriesCommand";
10
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
11
- import { PrepareQueryCommandInput, PrepareQueryCommandOutput } from "../commands/PrepareQueryCommand";
12
- import { QueryCommandInput, QueryCommandOutput } from "../commands/QueryCommand";
13
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
- import { UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput } from "../commands/UpdateScheduledQueryCommand";
16
- export declare const serializeAws_json1_0CancelQueryCommand: (input: CancelQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_json1_0CreateScheduledQueryCommand: (input: CreateScheduledQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_json1_0DeleteScheduledQueryCommand: (input: DeleteScheduledQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_json1_0DescribeEndpointsCommand: (input: DescribeEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_json1_0DescribeScheduledQueryCommand: (input: DescribeScheduledQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_json1_0ExecuteScheduledQueryCommand: (input: ExecuteScheduledQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_json1_0ListScheduledQueriesCommand: (input: ListScheduledQueriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_json1_0PrepareQueryCommand: (input: PrepareQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_json1_0QueryCommand: (input: QueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_json1_0UpdateScheduledQueryCommand: (input: UpdateScheduledQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const deserializeAws_json1_0CancelQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelQueryCommandOutput>;
30
- export declare const deserializeAws_json1_0CreateScheduledQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateScheduledQueryCommandOutput>;
31
- export declare const deserializeAws_json1_0DeleteScheduledQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScheduledQueryCommandOutput>;
32
- export declare const deserializeAws_json1_0DescribeEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEndpointsCommandOutput>;
33
- export declare const deserializeAws_json1_0DescribeScheduledQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScheduledQueryCommandOutput>;
34
- export declare const deserializeAws_json1_0ExecuteScheduledQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteScheduledQueryCommandOutput>;
35
- export declare const deserializeAws_json1_0ListScheduledQueriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListScheduledQueriesCommandOutput>;
36
- export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
37
- export declare const deserializeAws_json1_0PrepareQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PrepareQueryCommandOutput>;
38
- export declare const deserializeAws_json1_0QueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryCommandOutput>;
39
- export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
40
- export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
41
- export declare const deserializeAws_json1_0UpdateScheduledQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateScheduledQueryCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CancelQueryCommandInput,
8
+ CancelQueryCommandOutput,
9
+ } from "../commands/CancelQueryCommand";
10
+ import {
11
+ CreateScheduledQueryCommandInput,
12
+ CreateScheduledQueryCommandOutput,
13
+ } from "../commands/CreateScheduledQueryCommand";
14
+ import {
15
+ DeleteScheduledQueryCommandInput,
16
+ DeleteScheduledQueryCommandOutput,
17
+ } from "../commands/DeleteScheduledQueryCommand";
18
+ import {
19
+ DescribeEndpointsCommandInput,
20
+ DescribeEndpointsCommandOutput,
21
+ } from "../commands/DescribeEndpointsCommand";
22
+ import {
23
+ DescribeScheduledQueryCommandInput,
24
+ DescribeScheduledQueryCommandOutput,
25
+ } from "../commands/DescribeScheduledQueryCommand";
26
+ import {
27
+ ExecuteScheduledQueryCommandInput,
28
+ ExecuteScheduledQueryCommandOutput,
29
+ } from "../commands/ExecuteScheduledQueryCommand";
30
+ import {
31
+ ListScheduledQueriesCommandInput,
32
+ ListScheduledQueriesCommandOutput,
33
+ } from "../commands/ListScheduledQueriesCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "../commands/ListTagsForResourceCommand";
38
+ import {
39
+ PrepareQueryCommandInput,
40
+ PrepareQueryCommandOutput,
41
+ } from "../commands/PrepareQueryCommand";
42
+ import {
43
+ QueryCommandInput,
44
+ QueryCommandOutput,
45
+ } from "../commands/QueryCommand";
46
+ import {
47
+ TagResourceCommandInput,
48
+ TagResourceCommandOutput,
49
+ } from "../commands/TagResourceCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "../commands/UntagResourceCommand";
54
+ import {
55
+ UpdateScheduledQueryCommandInput,
56
+ UpdateScheduledQueryCommandOutput,
57
+ } from "../commands/UpdateScheduledQueryCommand";
58
+ export declare const serializeAws_json1_0CancelQueryCommand: (
59
+ input: CancelQueryCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_json1_0CreateScheduledQueryCommand: (
63
+ input: CreateScheduledQueryCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_json1_0DeleteScheduledQueryCommand: (
67
+ input: DeleteScheduledQueryCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_json1_0DescribeEndpointsCommand: (
71
+ input: DescribeEndpointsCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_json1_0DescribeScheduledQueryCommand: (
75
+ input: DescribeScheduledQueryCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_json1_0ExecuteScheduledQueryCommand: (
79
+ input: ExecuteScheduledQueryCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_json1_0ListScheduledQueriesCommand: (
83
+ input: ListScheduledQueriesCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_json1_0ListTagsForResourceCommand: (
87
+ input: ListTagsForResourceCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_json1_0PrepareQueryCommand: (
91
+ input: PrepareQueryCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_json1_0QueryCommand: (
95
+ input: QueryCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_json1_0TagResourceCommand: (
99
+ input: TagResourceCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_json1_0UntagResourceCommand: (
103
+ input: UntagResourceCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_json1_0UpdateScheduledQueryCommand: (
107
+ input: UpdateScheduledQueryCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const deserializeAws_json1_0CancelQueryCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<CancelQueryCommandOutput>;
114
+ export declare const deserializeAws_json1_0CreateScheduledQueryCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<CreateScheduledQueryCommandOutput>;
118
+ export declare const deserializeAws_json1_0DeleteScheduledQueryCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<DeleteScheduledQueryCommandOutput>;
122
+ export declare const deserializeAws_json1_0DescribeEndpointsCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<DescribeEndpointsCommandOutput>;
126
+ export declare const deserializeAws_json1_0DescribeScheduledQueryCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<DescribeScheduledQueryCommandOutput>;
130
+ export declare const deserializeAws_json1_0ExecuteScheduledQueryCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<ExecuteScheduledQueryCommandOutput>;
134
+ export declare const deserializeAws_json1_0ListScheduledQueriesCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<ListScheduledQueriesCommandOutput>;
138
+ export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<ListTagsForResourceCommandOutput>;
142
+ export declare const deserializeAws_json1_0PrepareQueryCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<PrepareQueryCommandOutput>;
146
+ export declare const deserializeAws_json1_0QueryCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<QueryCommandOutput>;
150
+ export declare const deserializeAws_json1_0TagResourceCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<TagResourceCommandOutput>;
154
+ export declare const deserializeAws_json1_0UntagResourceCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<UntagResourceCommandOutput>;
158
+ export declare const deserializeAws_json1_0UpdateScheduledQueryCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<UpdateScheduledQueryCommandOutput>;
@@ -1,41 +1,72 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
3
-
4
- export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
13
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
- region: string | import("@aws-sdk/types").Provider<any>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
- retryMode: string | import("@aws-sdk/types").Provider<string>;
17
- sha256: import("@aws-sdk/types").HashConstructor;
18
- streamCollector: import("@aws-sdk/types").StreamCollector;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- utf8Decoder: import("@aws-sdk/types").Decoder;
22
- utf8Encoder: import("@aws-sdk/types").Encoder;
23
- apiVersion: string;
24
- urlParser: import("@aws-sdk/types").UrlParser;
25
- disableHostPrefix: boolean;
26
- logger: import("@aws-sdk/types").Logger;
27
- serviceId: string;
28
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
30
- tls?: boolean | undefined;
31
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
- signingEscapePath?: boolean | undefined;
35
- systemClockOffset?: number | undefined;
36
- signingRegion?: string | undefined;
37
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
38
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
39
- endpointCacheSize?: number | undefined;
40
- endpointDiscoveryEnabled?: boolean | undefined;
41
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: TimestreamQueryClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<
20
+ boolean | undefined
21
+ >;
22
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
23
+ region: string | import("@aws-sdk/types").Provider<any>;
24
+ requestHandler:
25
+ | (import("@aws-sdk/types").RequestHandler<
26
+ any,
27
+ any,
28
+ import("@aws-sdk/types").HttpHandlerOptions
29
+ > &
30
+ import("@aws-sdk/protocol-http").HttpHandler)
31
+ | RequestHandler;
32
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
33
+ sha256: import("@aws-sdk/types").HashConstructor;
34
+ streamCollector: import("@aws-sdk/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
37
+ utf8Decoder: import("@aws-sdk/types").Decoder;
38
+ utf8Encoder: import("@aws-sdk/types").Encoder;
39
+ apiVersion: string;
40
+ urlParser: import("@aws-sdk/types").UrlParser;
41
+ disableHostPrefix: boolean;
42
+ logger: import("@aws-sdk/types").Logger;
43
+ serviceId: string;
44
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
45
+ endpoint?:
46
+ | string
47
+ | import("@aws-sdk/types").Endpoint
48
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
49
+ | undefined;
50
+ tls?: boolean | undefined;
51
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
52
+ credentials?:
53
+ | import("@aws-sdk/types").Credentials
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
55
+ | undefined;
56
+ signer?:
57
+ | import("@aws-sdk/types").RequestSigner
58
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
59
+ | undefined;
60
+ signingEscapePath?: boolean | undefined;
61
+ systemClockOffset?: number | undefined;
62
+ signingRegion?: string | undefined;
63
+ signerConstructor?:
64
+ | (new (
65
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
66
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
67
+ ) => import("@aws-sdk/types").RequestSigner)
68
+ | undefined;
69
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
70
+ endpointCacheSize?: number | undefined;
71
+ endpointDiscoveryEnabled?: boolean | undefined;
72
+ };
@@ -1,41 +1,72 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
3
-
4
- export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
13
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
- region: string | import("@aws-sdk/types").Provider<string>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
- retryMode: string | import("@aws-sdk/types").Provider<string>;
17
- sha256: import("@aws-sdk/types").HashConstructor;
18
- streamCollector: import("@aws-sdk/types").StreamCollector;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- utf8Decoder: import("@aws-sdk/types").Decoder;
22
- utf8Encoder: import("@aws-sdk/types").Encoder;
23
- apiVersion: string;
24
- urlParser: import("@aws-sdk/types").UrlParser;
25
- disableHostPrefix: boolean;
26
- logger: import("@aws-sdk/types").Logger;
27
- serviceId: string;
28
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
30
- tls?: boolean | undefined;
31
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
- signingEscapePath?: boolean | undefined;
35
- systemClockOffset?: number | undefined;
36
- signingRegion?: string | undefined;
37
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
38
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
39
- endpointCacheSize?: number | undefined;
40
- endpointDiscoveryEnabled?: boolean | undefined;
41
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: TimestreamQueryClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<
20
+ boolean | undefined
21
+ >;
22
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
23
+ region: string | import("@aws-sdk/types").Provider<string>;
24
+ requestHandler:
25
+ | (import("@aws-sdk/types").RequestHandler<
26
+ any,
27
+ any,
28
+ import("@aws-sdk/types").HttpHandlerOptions
29
+ > &
30
+ import("@aws-sdk/protocol-http").HttpHandler)
31
+ | RequestHandler;
32
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
33
+ sha256: import("@aws-sdk/types").HashConstructor;
34
+ streamCollector: import("@aws-sdk/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
37
+ utf8Decoder: import("@aws-sdk/types").Decoder;
38
+ utf8Encoder: import("@aws-sdk/types").Encoder;
39
+ apiVersion: string;
40
+ urlParser: import("@aws-sdk/types").UrlParser;
41
+ disableHostPrefix: boolean;
42
+ logger: import("@aws-sdk/types").Logger;
43
+ serviceId: string;
44
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
45
+ endpoint?:
46
+ | string
47
+ | import("@aws-sdk/types").Endpoint
48
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
49
+ | undefined;
50
+ tls?: boolean | undefined;
51
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
52
+ credentials?:
53
+ | import("@aws-sdk/types").Credentials
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
55
+ | undefined;
56
+ signer?:
57
+ | import("@aws-sdk/types").RequestSigner
58
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
59
+ | undefined;
60
+ signingEscapePath?: boolean | undefined;
61
+ systemClockOffset?: number | undefined;
62
+ signingRegion?: string | undefined;
63
+ signerConstructor?:
64
+ | (new (
65
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
66
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
67
+ ) => import("@aws-sdk/types").RequestSigner)
68
+ | undefined;
69
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
70
+ endpointCacheSize?: number | undefined;
71
+ endpointDiscoveryEnabled?: boolean | undefined;
72
+ };