@aws-sdk/client-timestream-query 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/TimestreamQuery.d.ts +235 -70
- package/dist-types/ts3.4/TimestreamQueryClient.d.ts +213 -89
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +36 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +697 -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 +73 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- 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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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,73 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: TimestreamQueryClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<
|
|
21
|
+
boolean | undefined
|
|
22
|
+
>;
|
|
23
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
requestHandler:
|
|
26
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
27
|
+
any,
|
|
28
|
+
any,
|
|
29
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
30
|
+
> &
|
|
31
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
32
|
+
| RequestHandler;
|
|
33
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
34
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
35
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
36
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
37
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
38
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
39
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
42
|
+
disableHostPrefix: boolean;
|
|
43
|
+
logger: import("@aws-sdk/types").Logger;
|
|
44
|
+
serviceId: string;
|
|
45
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
46
|
+
endpoint?:
|
|
47
|
+
| string
|
|
48
|
+
| import("@aws-sdk/types").Endpoint
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
50
|
+
| undefined;
|
|
51
|
+
tls?: boolean | undefined;
|
|
52
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
53
|
+
credentials?:
|
|
54
|
+
| import("@aws-sdk/types").Credentials
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
56
|
+
| undefined;
|
|
57
|
+
signer?:
|
|
58
|
+
| import("@aws-sdk/types").RequestSigner
|
|
59
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
60
|
+
| undefined;
|
|
61
|
+
signingEscapePath?: boolean | undefined;
|
|
62
|
+
systemClockOffset?: number | undefined;
|
|
63
|
+
signingRegion?: string | undefined;
|
|
64
|
+
signerConstructor?:
|
|
65
|
+
| (new (
|
|
66
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
67
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
68
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
69
|
+
| undefined;
|
|
70
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
71
|
+
endpointCacheSize?: number | undefined;
|
|
72
|
+
endpointDiscoveryEnabled?: boolean | undefined;
|
|
73
|
+
};
|
|
@@ -1,41 +1,73 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { TimestreamQueryClientConfig } from "./TimestreamQueryClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: TimestreamQueryClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<
|
|
21
|
+
boolean | undefined
|
|
22
|
+
>;
|
|
23
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
25
|
+
requestHandler:
|
|
26
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
27
|
+
any,
|
|
28
|
+
any,
|
|
29
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
30
|
+
> &
|
|
31
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
32
|
+
| RequestHandler;
|
|
33
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
34
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
35
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
36
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
37
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
38
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
39
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
42
|
+
disableHostPrefix: boolean;
|
|
43
|
+
logger: import("@aws-sdk/types").Logger;
|
|
44
|
+
serviceId: string;
|
|
45
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
46
|
+
endpoint?:
|
|
47
|
+
| string
|
|
48
|
+
| import("@aws-sdk/types").Endpoint
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
50
|
+
| undefined;
|
|
51
|
+
tls?: boolean | undefined;
|
|
52
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
53
|
+
credentials?:
|
|
54
|
+
| import("@aws-sdk/types").Credentials
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
56
|
+
| undefined;
|
|
57
|
+
signer?:
|
|
58
|
+
| import("@aws-sdk/types").RequestSigner
|
|
59
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
60
|
+
| undefined;
|
|
61
|
+
signingEscapePath?: boolean | undefined;
|
|
62
|
+
systemClockOffset?: number | undefined;
|
|
63
|
+
signingRegion?: string | undefined;
|
|
64
|
+
signerConstructor?:
|
|
65
|
+
| (new (
|
|
66
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
67
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
68
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
69
|
+
| undefined;
|
|
70
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
71
|
+
endpointCacheSize?: number | undefined;
|
|
72
|
+
endpointDiscoveryEnabled?: boolean | undefined;
|
|
73
|
+
};
|