@aws-sdk/client-timestream-write 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 (34) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/TimestreamWrite.d.ts +274 -80
  3. package/dist-types/ts3.4/TimestreamWriteClient.d.ts +228 -91
  4. package/dist-types/ts3.4/commands/CreateDatabaseCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteDatabaseCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DescribeDatabaseCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -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/UpdateDatabaseCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +6 -6
  22. package/dist-types/ts3.4/models/TimestreamWriteServiceException.d.ts +8 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +508 -465
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  26. package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  29. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +185 -47
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -41
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  34. package/package.json +35 -35
@@ -1,91 +1,228 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { EndpointDiscoveryInputConfig, EndpointDiscoveryResolvedConfig } from "@aws-sdk/middleware-endpoint-discovery";
3
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
4
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
5
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
6
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
- import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
11
- import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
12
- import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
13
- import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
14
- import { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "./commands/DescribeDatabaseCommand";
15
- import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
16
- import { DescribeTableCommandInput, DescribeTableCommandOutput } from "./commands/DescribeTableCommand";
17
- import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "./commands/ListDatabasesCommand";
18
- import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
19
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
20
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
22
- import { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "./commands/UpdateDatabaseCommand";
23
- import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
24
- import { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "./commands/WriteRecordsCommand";
25
- export declare type ServiceInputTypes = CreateDatabaseCommandInput | CreateTableCommandInput | DeleteDatabaseCommandInput | DeleteTableCommandInput | DescribeDatabaseCommandInput | DescribeEndpointsCommandInput | DescribeTableCommandInput | ListDatabasesCommandInput | ListTablesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatabaseCommandInput | UpdateTableCommandInput | WriteRecordsCommandInput;
26
- export declare type ServiceOutputTypes = CreateDatabaseCommandOutput | CreateTableCommandOutput | DeleteDatabaseCommandOutput | DeleteTableCommandOutput | DescribeDatabaseCommandOutput | DescribeEndpointsCommandOutput | DescribeTableCommandOutput | ListDatabasesCommandOutput | ListTablesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatabaseCommandOutput | UpdateTableCommandOutput | WriteRecordsCommandOutput;
27
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
28
-
29
- requestHandler?: __HttpHandler;
30
-
31
- sha256?: __HashConstructor;
32
-
33
- urlParser?: __UrlParser;
34
-
35
- bodyLengthChecker?: __BodyLengthCalculator;
36
-
37
- streamCollector?: __StreamCollector;
38
-
39
- base64Decoder?: __Decoder;
40
-
41
- base64Encoder?: __Encoder;
42
-
43
- utf8Decoder?: __Decoder;
44
-
45
- utf8Encoder?: __Encoder;
46
-
47
- runtime?: string;
48
-
49
- disableHostPrefix?: boolean;
50
-
51
- maxAttempts?: number | __Provider<number>;
52
-
53
- retryMode?: string | __Provider<string>;
54
-
55
- logger?: __Logger;
56
-
57
- useDualstackEndpoint?: boolean | __Provider<boolean>;
58
-
59
- useFipsEndpoint?: boolean | __Provider<boolean>;
60
-
61
- serviceId?: string;
62
-
63
- region?: string | __Provider<string>;
64
-
65
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
66
-
67
- regionInfoProvider?: RegionInfoProvider;
68
-
69
- defaultUserAgentProvider?: Provider<__UserAgent>;
70
-
71
- endpointDiscoveryEnabledProvider?: __Provider<boolean | undefined>;
72
-
73
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
74
- }
75
- declare type TimestreamWriteClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & EndpointDiscoveryInputConfig;
76
-
77
- export interface TimestreamWriteClientConfig extends TimestreamWriteClientConfigType {
78
- }
79
- declare type TimestreamWriteClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & EndpointDiscoveryResolvedConfig;
80
-
81
- export interface TimestreamWriteClientResolvedConfig extends TimestreamWriteClientResolvedConfigType {
82
- }
83
-
84
- export declare class TimestreamWriteClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig> {
85
-
86
- readonly config: TimestreamWriteClientResolvedConfig;
87
- constructor(configuration: TimestreamWriteClientConfig);
88
-
89
- destroy(): void;
90
- }
91
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ EndpointDiscoveryInputConfig,
9
+ EndpointDiscoveryResolvedConfig,
10
+ } from "@aws-sdk/middleware-endpoint-discovery";
11
+ import {
12
+ HostHeaderInputConfig,
13
+ HostHeaderResolvedConfig,
14
+ } from "@aws-sdk/middleware-host-header";
15
+ import {
16
+ RetryInputConfig,
17
+ RetryResolvedConfig,
18
+ } from "@aws-sdk/middleware-retry";
19
+ import {
20
+ AwsAuthInputConfig,
21
+ AwsAuthResolvedConfig,
22
+ } from "@aws-sdk/middleware-signing";
23
+ import {
24
+ UserAgentInputConfig,
25
+ UserAgentResolvedConfig,
26
+ } from "@aws-sdk/middleware-user-agent";
27
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
28
+ import {
29
+ Client as __Client,
30
+ DefaultsMode,
31
+ SmithyConfiguration as __SmithyConfiguration,
32
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
33
+ } from "@aws-sdk/smithy-client";
34
+ import {
35
+ BodyLengthCalculator as __BodyLengthCalculator,
36
+ Credentials as __Credentials,
37
+ Decoder as __Decoder,
38
+ Encoder as __Encoder,
39
+ HashConstructor as __HashConstructor,
40
+ HttpHandlerOptions as __HttpHandlerOptions,
41
+ Logger as __Logger,
42
+ Provider as __Provider,
43
+ Provider,
44
+ RegionInfoProvider,
45
+ StreamCollector as __StreamCollector,
46
+ UrlParser as __UrlParser,
47
+ UserAgent as __UserAgent,
48
+ } from "@aws-sdk/types";
49
+ import {
50
+ CreateDatabaseCommandInput,
51
+ CreateDatabaseCommandOutput,
52
+ } from "./commands/CreateDatabaseCommand";
53
+ import {
54
+ CreateTableCommandInput,
55
+ CreateTableCommandOutput,
56
+ } from "./commands/CreateTableCommand";
57
+ import {
58
+ DeleteDatabaseCommandInput,
59
+ DeleteDatabaseCommandOutput,
60
+ } from "./commands/DeleteDatabaseCommand";
61
+ import {
62
+ DeleteTableCommandInput,
63
+ DeleteTableCommandOutput,
64
+ } from "./commands/DeleteTableCommand";
65
+ import {
66
+ DescribeDatabaseCommandInput,
67
+ DescribeDatabaseCommandOutput,
68
+ } from "./commands/DescribeDatabaseCommand";
69
+ import {
70
+ DescribeEndpointsCommandInput,
71
+ DescribeEndpointsCommandOutput,
72
+ } from "./commands/DescribeEndpointsCommand";
73
+ import {
74
+ DescribeTableCommandInput,
75
+ DescribeTableCommandOutput,
76
+ } from "./commands/DescribeTableCommand";
77
+ import {
78
+ ListDatabasesCommandInput,
79
+ ListDatabasesCommandOutput,
80
+ } from "./commands/ListDatabasesCommand";
81
+ import {
82
+ ListTablesCommandInput,
83
+ ListTablesCommandOutput,
84
+ } from "./commands/ListTablesCommand";
85
+ import {
86
+ ListTagsForResourceCommandInput,
87
+ ListTagsForResourceCommandOutput,
88
+ } from "./commands/ListTagsForResourceCommand";
89
+ import {
90
+ TagResourceCommandInput,
91
+ TagResourceCommandOutput,
92
+ } from "./commands/TagResourceCommand";
93
+ import {
94
+ UntagResourceCommandInput,
95
+ UntagResourceCommandOutput,
96
+ } from "./commands/UntagResourceCommand";
97
+ import {
98
+ UpdateDatabaseCommandInput,
99
+ UpdateDatabaseCommandOutput,
100
+ } from "./commands/UpdateDatabaseCommand";
101
+ import {
102
+ UpdateTableCommandInput,
103
+ UpdateTableCommandOutput,
104
+ } from "./commands/UpdateTableCommand";
105
+ import {
106
+ WriteRecordsCommandInput,
107
+ WriteRecordsCommandOutput,
108
+ } from "./commands/WriteRecordsCommand";
109
+ export declare type ServiceInputTypes =
110
+ | CreateDatabaseCommandInput
111
+ | CreateTableCommandInput
112
+ | DeleteDatabaseCommandInput
113
+ | DeleteTableCommandInput
114
+ | DescribeDatabaseCommandInput
115
+ | DescribeEndpointsCommandInput
116
+ | DescribeTableCommandInput
117
+ | ListDatabasesCommandInput
118
+ | ListTablesCommandInput
119
+ | ListTagsForResourceCommandInput
120
+ | TagResourceCommandInput
121
+ | UntagResourceCommandInput
122
+ | UpdateDatabaseCommandInput
123
+ | UpdateTableCommandInput
124
+ | WriteRecordsCommandInput;
125
+ export declare type ServiceOutputTypes =
126
+ | CreateDatabaseCommandOutput
127
+ | CreateTableCommandOutput
128
+ | DeleteDatabaseCommandOutput
129
+ | DeleteTableCommandOutput
130
+ | DescribeDatabaseCommandOutput
131
+ | DescribeEndpointsCommandOutput
132
+ | DescribeTableCommandOutput
133
+ | ListDatabasesCommandOutput
134
+ | ListTablesCommandOutput
135
+ | ListTagsForResourceCommandOutput
136
+ | TagResourceCommandOutput
137
+ | UntagResourceCommandOutput
138
+ | UpdateDatabaseCommandOutput
139
+ | UpdateTableCommandOutput
140
+ | WriteRecordsCommandOutput;
141
+ export interface ClientDefaults
142
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
143
+ requestHandler?: __HttpHandler;
144
+
145
+ sha256?: __HashConstructor;
146
+
147
+ urlParser?: __UrlParser;
148
+
149
+ bodyLengthChecker?: __BodyLengthCalculator;
150
+
151
+ streamCollector?: __StreamCollector;
152
+
153
+ base64Decoder?: __Decoder;
154
+
155
+ base64Encoder?: __Encoder;
156
+
157
+ utf8Decoder?: __Decoder;
158
+
159
+ utf8Encoder?: __Encoder;
160
+
161
+ runtime?: string;
162
+
163
+ disableHostPrefix?: boolean;
164
+
165
+ maxAttempts?: number | __Provider<number>;
166
+
167
+ retryMode?: string | __Provider<string>;
168
+
169
+ logger?: __Logger;
170
+
171
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
172
+
173
+ useFipsEndpoint?: boolean | __Provider<boolean>;
174
+
175
+ serviceId?: string;
176
+
177
+ region?: string | __Provider<string>;
178
+
179
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
180
+
181
+ regionInfoProvider?: RegionInfoProvider;
182
+
183
+ defaultUserAgentProvider?: Provider<__UserAgent>;
184
+
185
+ endpointDiscoveryEnabledProvider?: __Provider<boolean | undefined>;
186
+
187
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
188
+ }
189
+ declare type TimestreamWriteClientConfigType = Partial<
190
+ __SmithyConfiguration<__HttpHandlerOptions>
191
+ > &
192
+ ClientDefaults &
193
+ RegionInputConfig &
194
+ EndpointsInputConfig &
195
+ RetryInputConfig &
196
+ HostHeaderInputConfig &
197
+ AwsAuthInputConfig &
198
+ UserAgentInputConfig &
199
+ EndpointDiscoveryInputConfig;
200
+
201
+ export interface TimestreamWriteClientConfig
202
+ extends TimestreamWriteClientConfigType {}
203
+ declare type TimestreamWriteClientResolvedConfigType =
204
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
205
+ Required<ClientDefaults> &
206
+ RegionResolvedConfig &
207
+ EndpointsResolvedConfig &
208
+ RetryResolvedConfig &
209
+ HostHeaderResolvedConfig &
210
+ AwsAuthResolvedConfig &
211
+ UserAgentResolvedConfig &
212
+ EndpointDiscoveryResolvedConfig;
213
+
214
+ export interface TimestreamWriteClientResolvedConfig
215
+ extends TimestreamWriteClientResolvedConfigType {}
216
+
217
+ export declare class TimestreamWriteClient extends __Client<
218
+ __HttpHandlerOptions,
219
+ ServiceInputTypes,
220
+ ServiceOutputTypes,
221
+ TimestreamWriteClientResolvedConfig
222
+ > {
223
+ readonly config: TimestreamWriteClientResolvedConfig;
224
+ constructor(configuration: TimestreamWriteClientConfig);
225
+
226
+ destroy(): void;
227
+ }
228
+ export {};
@@ -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 { CreateDatabaseRequest, CreateDatabaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
5
- export interface CreateDatabaseCommandInput extends CreateDatabaseRequest {
6
- }
7
- export interface CreateDatabaseCommandOutput extends CreateDatabaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateDatabaseCommand extends $Command<CreateDatabaseCommandInput, CreateDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
11
- readonly input: CreateDatabaseCommandInput;
12
- constructor(input: CreateDatabaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamWriteClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDatabaseCommandInput, CreateDatabaseCommandOutput>;
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
+ CreateDatabaseRequest,
10
+ CreateDatabaseResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ TimestreamWriteClientResolvedConfig,
16
+ } from "../TimestreamWriteClient";
17
+ export interface CreateDatabaseCommandInput extends CreateDatabaseRequest {}
18
+ export interface CreateDatabaseCommandOutput
19
+ extends CreateDatabaseResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateDatabaseCommand extends $Command<
23
+ CreateDatabaseCommandInput,
24
+ CreateDatabaseCommandOutput,
25
+ TimestreamWriteClientResolvedConfig
26
+ > {
27
+ readonly input: CreateDatabaseCommandInput;
28
+ constructor(input: CreateDatabaseCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: TimestreamWriteClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateDatabaseCommandInput, CreateDatabaseCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { CreateTableRequest, CreateTableResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
5
- export interface CreateTableCommandInput extends CreateTableRequest {
6
- }
7
- export interface CreateTableCommandOutput extends CreateTableResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateTableCommand extends $Command<CreateTableCommandInput, CreateTableCommandOutput, TimestreamWriteClientResolvedConfig> {
11
- readonly input: CreateTableCommandInput;
12
- constructor(input: CreateTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamWriteClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTableCommandInput, CreateTableCommandOutput>;
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 { CreateTableRequest, CreateTableResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ TimestreamWriteClientResolvedConfig,
13
+ } from "../TimestreamWriteClient";
14
+ export interface CreateTableCommandInput extends CreateTableRequest {}
15
+ export interface CreateTableCommandOutput
16
+ extends CreateTableResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateTableCommand extends $Command<
20
+ CreateTableCommandInput,
21
+ CreateTableCommandOutput,
22
+ TimestreamWriteClientResolvedConfig
23
+ > {
24
+ readonly input: CreateTableCommandInput;
25
+ constructor(input: CreateTableCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: TimestreamWriteClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateTableCommandInput, CreateTableCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,32 @@
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 { DeleteDatabaseRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
5
- export interface DeleteDatabaseCommandInput extends DeleteDatabaseRequest {
6
- }
7
- export interface DeleteDatabaseCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteDatabaseCommand extends $Command<DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
11
- readonly input: DeleteDatabaseCommandInput;
12
- constructor(input: DeleteDatabaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamWriteClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput>;
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 { DeleteDatabaseRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ TimestreamWriteClientResolvedConfig,
13
+ } from "../TimestreamWriteClient";
14
+ export interface DeleteDatabaseCommandInput extends DeleteDatabaseRequest {}
15
+ export interface DeleteDatabaseCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteDatabaseCommand extends $Command<
18
+ DeleteDatabaseCommandInput,
19
+ DeleteDatabaseCommandOutput,
20
+ TimestreamWriteClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteDatabaseCommandInput;
23
+ constructor(input: DeleteDatabaseCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: TimestreamWriteClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { DeleteTableRequest } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
5
- export interface DeleteTableCommandInput extends DeleteTableRequest {
6
- }
7
- export interface DeleteTableCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteTableCommand extends $Command<DeleteTableCommandInput, DeleteTableCommandOutput, TimestreamWriteClientResolvedConfig> {
11
- readonly input: DeleteTableCommandInput;
12
- constructor(input: DeleteTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamWriteClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTableCommandInput, DeleteTableCommandOutput>;
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 { DeleteTableRequest } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ TimestreamWriteClientResolvedConfig,
13
+ } from "../TimestreamWriteClient";
14
+ export interface DeleteTableCommandInput extends DeleteTableRequest {}
15
+ export interface DeleteTableCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteTableCommand extends $Command<
18
+ DeleteTableCommandInput,
19
+ DeleteTableCommandOutput,
20
+ TimestreamWriteClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteTableCommandInput;
23
+ constructor(input: DeleteTableCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: TimestreamWriteClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteTableCommandInput, DeleteTableCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { DescribeDatabaseRequest, DescribeDatabaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
5
- export interface DescribeDatabaseCommandInput extends DescribeDatabaseRequest {
6
- }
7
- export interface DescribeDatabaseCommandOutput extends DescribeDatabaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeDatabaseCommand extends $Command<DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
11
- readonly input: DescribeDatabaseCommandInput;
12
- constructor(input: DescribeDatabaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamWriteClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput>;
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
+ DescribeDatabaseRequest,
10
+ DescribeDatabaseResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ TimestreamWriteClientResolvedConfig,
16
+ } from "../TimestreamWriteClient";
17
+ export interface DescribeDatabaseCommandInput extends DescribeDatabaseRequest {}
18
+ export interface DescribeDatabaseCommandOutput
19
+ extends DescribeDatabaseResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeDatabaseCommand extends $Command<
23
+ DescribeDatabaseCommandInput,
24
+ DescribeDatabaseCommandOutput,
25
+ TimestreamWriteClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeDatabaseCommandInput;
28
+ constructor(input: DescribeDatabaseCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: TimestreamWriteClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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 { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
5
- export interface DescribeEndpointsCommandInput extends DescribeEndpointsRequest {
6
- }
7
- export interface DescribeEndpointsCommandOutput extends DescribeEndpointsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamWriteClientResolvedConfig> {
11
- readonly input: DescribeEndpointsCommandInput;
12
- constructor(input: DescribeEndpointsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TimestreamWriteClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
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
+ DescribeEndpointsRequest,
10
+ DescribeEndpointsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ TimestreamWriteClientResolvedConfig,
16
+ } from "../TimestreamWriteClient";
17
+ export interface DescribeEndpointsCommandInput
18
+ extends DescribeEndpointsRequest {}
19
+ export interface DescribeEndpointsCommandOutput
20
+ extends DescribeEndpointsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeEndpointsCommand extends $Command<
24
+ DescribeEndpointsCommandInput,
25
+ DescribeEndpointsCommandOutput,
26
+ TimestreamWriteClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeEndpointsCommandInput;
29
+ constructor(input: DescribeEndpointsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: TimestreamWriteClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }