@aws-sdk/client-keyspaces 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/Keyspaces.d.ts +238 -70
  3. package/dist-types/ts3.4/KeyspacesClient.d.ts +207 -86
  4. package/dist-types/ts3.4/commands/CreateKeyspaceCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteKeyspaceCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/GetKeyspaceCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/ListKeyspacesCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/RestoreTableCommand.d.ts +34 -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/UpdateTableCommand.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/KeyspacesServiceException.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 +496 -457
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  24. package/dist-types/ts3.4/pagination/ListKeyspacesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.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 +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  33. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-keyspaces
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-keyspaces
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-keyspaces
@@ -1,70 +1,238 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateKeyspaceCommandInput, CreateKeyspaceCommandOutput } from "./commands/CreateKeyspaceCommand";
3
- import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
4
- import { DeleteKeyspaceCommandInput, DeleteKeyspaceCommandOutput } from "./commands/DeleteKeyspaceCommand";
5
- import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
6
- import { GetKeyspaceCommandInput, GetKeyspaceCommandOutput } from "./commands/GetKeyspaceCommand";
7
- import { GetTableCommandInput, GetTableCommandOutput } from "./commands/GetTableCommand";
8
- import { ListKeyspacesCommandInput, ListKeyspacesCommandOutput } from "./commands/ListKeyspacesCommand";
9
- import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
10
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
11
- import { RestoreTableCommandInput, RestoreTableCommandOutput } from "./commands/RestoreTableCommand";
12
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
13
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
14
- import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
15
- import { KeyspacesClient } from "./KeyspacesClient";
16
-
17
- export declare class Keyspaces extends KeyspacesClient {
18
-
19
- createKeyspace(args: CreateKeyspaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateKeyspaceCommandOutput>;
20
- createKeyspace(args: CreateKeyspaceCommandInput, cb: (err: any, data?: CreateKeyspaceCommandOutput) => void): void;
21
- createKeyspace(args: CreateKeyspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKeyspaceCommandOutput) => void): void;
22
-
23
- createTable(args: CreateTableCommandInput, options?: __HttpHandlerOptions): Promise<CreateTableCommandOutput>;
24
- createTable(args: CreateTableCommandInput, cb: (err: any, data?: CreateTableCommandOutput) => void): void;
25
- createTable(args: CreateTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTableCommandOutput) => void): void;
26
-
27
- deleteKeyspace(args: DeleteKeyspaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKeyspaceCommandOutput>;
28
- deleteKeyspace(args: DeleteKeyspaceCommandInput, cb: (err: any, data?: DeleteKeyspaceCommandOutput) => void): void;
29
- deleteKeyspace(args: DeleteKeyspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKeyspaceCommandOutput) => void): void;
30
-
31
- deleteTable(args: DeleteTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTableCommandOutput>;
32
- deleteTable(args: DeleteTableCommandInput, cb: (err: any, data?: DeleteTableCommandOutput) => void): void;
33
- deleteTable(args: DeleteTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTableCommandOutput) => void): void;
34
-
35
- getKeyspace(args: GetKeyspaceCommandInput, options?: __HttpHandlerOptions): Promise<GetKeyspaceCommandOutput>;
36
- getKeyspace(args: GetKeyspaceCommandInput, cb: (err: any, data?: GetKeyspaceCommandOutput) => void): void;
37
- getKeyspace(args: GetKeyspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKeyspaceCommandOutput) => void): void;
38
-
39
- getTable(args: GetTableCommandInput, options?: __HttpHandlerOptions): Promise<GetTableCommandOutput>;
40
- getTable(args: GetTableCommandInput, cb: (err: any, data?: GetTableCommandOutput) => void): void;
41
- getTable(args: GetTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableCommandOutput) => void): void;
42
-
43
- listKeyspaces(args: ListKeyspacesCommandInput, options?: __HttpHandlerOptions): Promise<ListKeyspacesCommandOutput>;
44
- listKeyspaces(args: ListKeyspacesCommandInput, cb: (err: any, data?: ListKeyspacesCommandOutput) => void): void;
45
- listKeyspaces(args: ListKeyspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKeyspacesCommandOutput) => void): void;
46
-
47
- listTables(args: ListTablesCommandInput, options?: __HttpHandlerOptions): Promise<ListTablesCommandOutput>;
48
- listTables(args: ListTablesCommandInput, cb: (err: any, data?: ListTablesCommandOutput) => void): void;
49
- listTables(args: ListTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTablesCommandOutput) => void): void;
50
-
51
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
52
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
53
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
54
-
55
- restoreTable(args: RestoreTableCommandInput, options?: __HttpHandlerOptions): Promise<RestoreTableCommandOutput>;
56
- restoreTable(args: RestoreTableCommandInput, cb: (err: any, data?: RestoreTableCommandOutput) => void): void;
57
- restoreTable(args: RestoreTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreTableCommandOutput) => void): void;
58
-
59
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
60
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
61
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
62
-
63
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
64
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
65
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
66
-
67
- updateTable(args: UpdateTableCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTableCommandOutput>;
68
- updateTable(args: UpdateTableCommandInput, cb: (err: any, data?: UpdateTableCommandOutput) => void): void;
69
- updateTable(args: UpdateTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTableCommandOutput) => void): void;
70
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateKeyspaceCommandInput,
4
+ CreateKeyspaceCommandOutput,
5
+ } from "./commands/CreateKeyspaceCommand";
6
+ import {
7
+ CreateTableCommandInput,
8
+ CreateTableCommandOutput,
9
+ } from "./commands/CreateTableCommand";
10
+ import {
11
+ DeleteKeyspaceCommandInput,
12
+ DeleteKeyspaceCommandOutput,
13
+ } from "./commands/DeleteKeyspaceCommand";
14
+ import {
15
+ DeleteTableCommandInput,
16
+ DeleteTableCommandOutput,
17
+ } from "./commands/DeleteTableCommand";
18
+ import {
19
+ GetKeyspaceCommandInput,
20
+ GetKeyspaceCommandOutput,
21
+ } from "./commands/GetKeyspaceCommand";
22
+ import {
23
+ GetTableCommandInput,
24
+ GetTableCommandOutput,
25
+ } from "./commands/GetTableCommand";
26
+ import {
27
+ ListKeyspacesCommandInput,
28
+ ListKeyspacesCommandOutput,
29
+ } from "./commands/ListKeyspacesCommand";
30
+ import {
31
+ ListTablesCommandInput,
32
+ ListTablesCommandOutput,
33
+ } from "./commands/ListTablesCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "./commands/ListTagsForResourceCommand";
38
+ import {
39
+ RestoreTableCommandInput,
40
+ RestoreTableCommandOutput,
41
+ } from "./commands/RestoreTableCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "./commands/TagResourceCommand";
46
+ import {
47
+ UntagResourceCommandInput,
48
+ UntagResourceCommandOutput,
49
+ } from "./commands/UntagResourceCommand";
50
+ import {
51
+ UpdateTableCommandInput,
52
+ UpdateTableCommandOutput,
53
+ } from "./commands/UpdateTableCommand";
54
+ import { KeyspacesClient } from "./KeyspacesClient";
55
+
56
+ export declare class Keyspaces extends KeyspacesClient {
57
+ createKeyspace(
58
+ args: CreateKeyspaceCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<CreateKeyspaceCommandOutput>;
61
+ createKeyspace(
62
+ args: CreateKeyspaceCommandInput,
63
+ cb: (err: any, data?: CreateKeyspaceCommandOutput) => void
64
+ ): void;
65
+ createKeyspace(
66
+ args: CreateKeyspaceCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: CreateKeyspaceCommandOutput) => void
69
+ ): void;
70
+
71
+ createTable(
72
+ args: CreateTableCommandInput,
73
+ options?: __HttpHandlerOptions
74
+ ): Promise<CreateTableCommandOutput>;
75
+ createTable(
76
+ args: CreateTableCommandInput,
77
+ cb: (err: any, data?: CreateTableCommandOutput) => void
78
+ ): void;
79
+ createTable(
80
+ args: CreateTableCommandInput,
81
+ options: __HttpHandlerOptions,
82
+ cb: (err: any, data?: CreateTableCommandOutput) => void
83
+ ): void;
84
+
85
+ deleteKeyspace(
86
+ args: DeleteKeyspaceCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<DeleteKeyspaceCommandOutput>;
89
+ deleteKeyspace(
90
+ args: DeleteKeyspaceCommandInput,
91
+ cb: (err: any, data?: DeleteKeyspaceCommandOutput) => void
92
+ ): void;
93
+ deleteKeyspace(
94
+ args: DeleteKeyspaceCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: DeleteKeyspaceCommandOutput) => void
97
+ ): void;
98
+
99
+ deleteTable(
100
+ args: DeleteTableCommandInput,
101
+ options?: __HttpHandlerOptions
102
+ ): Promise<DeleteTableCommandOutput>;
103
+ deleteTable(
104
+ args: DeleteTableCommandInput,
105
+ cb: (err: any, data?: DeleteTableCommandOutput) => void
106
+ ): void;
107
+ deleteTable(
108
+ args: DeleteTableCommandInput,
109
+ options: __HttpHandlerOptions,
110
+ cb: (err: any, data?: DeleteTableCommandOutput) => void
111
+ ): void;
112
+
113
+ getKeyspace(
114
+ args: GetKeyspaceCommandInput,
115
+ options?: __HttpHandlerOptions
116
+ ): Promise<GetKeyspaceCommandOutput>;
117
+ getKeyspace(
118
+ args: GetKeyspaceCommandInput,
119
+ cb: (err: any, data?: GetKeyspaceCommandOutput) => void
120
+ ): void;
121
+ getKeyspace(
122
+ args: GetKeyspaceCommandInput,
123
+ options: __HttpHandlerOptions,
124
+ cb: (err: any, data?: GetKeyspaceCommandOutput) => void
125
+ ): void;
126
+
127
+ getTable(
128
+ args: GetTableCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<GetTableCommandOutput>;
131
+ getTable(
132
+ args: GetTableCommandInput,
133
+ cb: (err: any, data?: GetTableCommandOutput) => void
134
+ ): void;
135
+ getTable(
136
+ args: GetTableCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: GetTableCommandOutput) => void
139
+ ): void;
140
+
141
+ listKeyspaces(
142
+ args: ListKeyspacesCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<ListKeyspacesCommandOutput>;
145
+ listKeyspaces(
146
+ args: ListKeyspacesCommandInput,
147
+ cb: (err: any, data?: ListKeyspacesCommandOutput) => void
148
+ ): void;
149
+ listKeyspaces(
150
+ args: ListKeyspacesCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: ListKeyspacesCommandOutput) => void
153
+ ): void;
154
+
155
+ listTables(
156
+ args: ListTablesCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<ListTablesCommandOutput>;
159
+ listTables(
160
+ args: ListTablesCommandInput,
161
+ cb: (err: any, data?: ListTablesCommandOutput) => void
162
+ ): void;
163
+ listTables(
164
+ args: ListTablesCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: ListTablesCommandOutput) => void
167
+ ): void;
168
+
169
+ listTagsForResource(
170
+ args: ListTagsForResourceCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<ListTagsForResourceCommandOutput>;
173
+ listTagsForResource(
174
+ args: ListTagsForResourceCommandInput,
175
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
176
+ ): void;
177
+ listTagsForResource(
178
+ args: ListTagsForResourceCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
181
+ ): void;
182
+
183
+ restoreTable(
184
+ args: RestoreTableCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<RestoreTableCommandOutput>;
187
+ restoreTable(
188
+ args: RestoreTableCommandInput,
189
+ cb: (err: any, data?: RestoreTableCommandOutput) => void
190
+ ): void;
191
+ restoreTable(
192
+ args: RestoreTableCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: RestoreTableCommandOutput) => void
195
+ ): void;
196
+
197
+ tagResource(
198
+ args: TagResourceCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<TagResourceCommandOutput>;
201
+ tagResource(
202
+ args: TagResourceCommandInput,
203
+ cb: (err: any, data?: TagResourceCommandOutput) => void
204
+ ): void;
205
+ tagResource(
206
+ args: TagResourceCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: TagResourceCommandOutput) => void
209
+ ): void;
210
+
211
+ untagResource(
212
+ args: UntagResourceCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<UntagResourceCommandOutput>;
215
+ untagResource(
216
+ args: UntagResourceCommandInput,
217
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
218
+ ): void;
219
+ untagResource(
220
+ args: UntagResourceCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
223
+ ): void;
224
+
225
+ updateTable(
226
+ args: UpdateTableCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<UpdateTableCommandOutput>;
229
+ updateTable(
230
+ args: UpdateTableCommandInput,
231
+ cb: (err: any, data?: UpdateTableCommandOutput) => void
232
+ ): void;
233
+ updateTable(
234
+ args: UpdateTableCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: UpdateTableCommandOutput) => void
237
+ ): void;
238
+ }
@@ -1,86 +1,207 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- 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";
9
- import { CreateKeyspaceCommandInput, CreateKeyspaceCommandOutput } from "./commands/CreateKeyspaceCommand";
10
- import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
11
- import { DeleteKeyspaceCommandInput, DeleteKeyspaceCommandOutput } from "./commands/DeleteKeyspaceCommand";
12
- import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
13
- import { GetKeyspaceCommandInput, GetKeyspaceCommandOutput } from "./commands/GetKeyspaceCommand";
14
- import { GetTableCommandInput, GetTableCommandOutput } from "./commands/GetTableCommand";
15
- import { ListKeyspacesCommandInput, ListKeyspacesCommandOutput } from "./commands/ListKeyspacesCommand";
16
- import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
17
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
- import { RestoreTableCommandInput, RestoreTableCommandOutput } from "./commands/RestoreTableCommand";
19
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
20
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
21
- import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
22
- export declare type ServiceInputTypes = CreateKeyspaceCommandInput | CreateTableCommandInput | DeleteKeyspaceCommandInput | DeleteTableCommandInput | GetKeyspaceCommandInput | GetTableCommandInput | ListKeyspacesCommandInput | ListTablesCommandInput | ListTagsForResourceCommandInput | RestoreTableCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateTableCommandInput;
23
- export declare type ServiceOutputTypes = CreateKeyspaceCommandOutput | CreateTableCommandOutput | DeleteKeyspaceCommandOutput | DeleteTableCommandOutput | GetKeyspaceCommandOutput | GetTableCommandOutput | ListKeyspacesCommandOutput | ListTablesCommandOutput | ListTagsForResourceCommandOutput | RestoreTableCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateTableCommandOutput;
24
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
25
-
26
- requestHandler?: __HttpHandler;
27
-
28
- sha256?: __HashConstructor;
29
-
30
- urlParser?: __UrlParser;
31
-
32
- bodyLengthChecker?: __BodyLengthCalculator;
33
-
34
- streamCollector?: __StreamCollector;
35
-
36
- base64Decoder?: __Decoder;
37
-
38
- base64Encoder?: __Encoder;
39
-
40
- utf8Decoder?: __Decoder;
41
-
42
- utf8Encoder?: __Encoder;
43
-
44
- runtime?: string;
45
-
46
- disableHostPrefix?: boolean;
47
-
48
- maxAttempts?: number | __Provider<number>;
49
-
50
- retryMode?: string | __Provider<string>;
51
-
52
- logger?: __Logger;
53
-
54
- useDualstackEndpoint?: boolean | __Provider<boolean>;
55
-
56
- useFipsEndpoint?: boolean | __Provider<boolean>;
57
-
58
- serviceId?: string;
59
-
60
- region?: string | __Provider<string>;
61
-
62
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
63
-
64
- regionInfoProvider?: RegionInfoProvider;
65
-
66
- defaultUserAgentProvider?: Provider<__UserAgent>;
67
-
68
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
69
- }
70
- declare type KeyspacesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
71
-
72
- export interface KeyspacesClientConfig extends KeyspacesClientConfigType {
73
- }
74
- declare type KeyspacesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
75
-
76
- export interface KeyspacesClientResolvedConfig extends KeyspacesClientResolvedConfigType {
77
- }
78
-
79
- export declare class KeyspacesClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KeyspacesClientResolvedConfig> {
80
-
81
- readonly config: KeyspacesClientResolvedConfig;
82
- constructor(configuration: KeyspacesClientConfig);
83
-
84
- destroy(): void;
85
- }
86
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateKeyspaceCommandInput,
47
+ CreateKeyspaceCommandOutput,
48
+ } from "./commands/CreateKeyspaceCommand";
49
+ import {
50
+ CreateTableCommandInput,
51
+ CreateTableCommandOutput,
52
+ } from "./commands/CreateTableCommand";
53
+ import {
54
+ DeleteKeyspaceCommandInput,
55
+ DeleteKeyspaceCommandOutput,
56
+ } from "./commands/DeleteKeyspaceCommand";
57
+ import {
58
+ DeleteTableCommandInput,
59
+ DeleteTableCommandOutput,
60
+ } from "./commands/DeleteTableCommand";
61
+ import {
62
+ GetKeyspaceCommandInput,
63
+ GetKeyspaceCommandOutput,
64
+ } from "./commands/GetKeyspaceCommand";
65
+ import {
66
+ GetTableCommandInput,
67
+ GetTableCommandOutput,
68
+ } from "./commands/GetTableCommand";
69
+ import {
70
+ ListKeyspacesCommandInput,
71
+ ListKeyspacesCommandOutput,
72
+ } from "./commands/ListKeyspacesCommand";
73
+ import {
74
+ ListTablesCommandInput,
75
+ ListTablesCommandOutput,
76
+ } from "./commands/ListTablesCommand";
77
+ import {
78
+ ListTagsForResourceCommandInput,
79
+ ListTagsForResourceCommandOutput,
80
+ } from "./commands/ListTagsForResourceCommand";
81
+ import {
82
+ RestoreTableCommandInput,
83
+ RestoreTableCommandOutput,
84
+ } from "./commands/RestoreTableCommand";
85
+ import {
86
+ TagResourceCommandInput,
87
+ TagResourceCommandOutput,
88
+ } from "./commands/TagResourceCommand";
89
+ import {
90
+ UntagResourceCommandInput,
91
+ UntagResourceCommandOutput,
92
+ } from "./commands/UntagResourceCommand";
93
+ import {
94
+ UpdateTableCommandInput,
95
+ UpdateTableCommandOutput,
96
+ } from "./commands/UpdateTableCommand";
97
+ export declare type ServiceInputTypes =
98
+ | CreateKeyspaceCommandInput
99
+ | CreateTableCommandInput
100
+ | DeleteKeyspaceCommandInput
101
+ | DeleteTableCommandInput
102
+ | GetKeyspaceCommandInput
103
+ | GetTableCommandInput
104
+ | ListKeyspacesCommandInput
105
+ | ListTablesCommandInput
106
+ | ListTagsForResourceCommandInput
107
+ | RestoreTableCommandInput
108
+ | TagResourceCommandInput
109
+ | UntagResourceCommandInput
110
+ | UpdateTableCommandInput;
111
+ export declare type ServiceOutputTypes =
112
+ | CreateKeyspaceCommandOutput
113
+ | CreateTableCommandOutput
114
+ | DeleteKeyspaceCommandOutput
115
+ | DeleteTableCommandOutput
116
+ | GetKeyspaceCommandOutput
117
+ | GetTableCommandOutput
118
+ | ListKeyspacesCommandOutput
119
+ | ListTablesCommandOutput
120
+ | ListTagsForResourceCommandOutput
121
+ | RestoreTableCommandOutput
122
+ | TagResourceCommandOutput
123
+ | UntagResourceCommandOutput
124
+ | UpdateTableCommandOutput;
125
+ export interface ClientDefaults
126
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
127
+ requestHandler?: __HttpHandler;
128
+
129
+ sha256?: __HashConstructor;
130
+
131
+ urlParser?: __UrlParser;
132
+
133
+ bodyLengthChecker?: __BodyLengthCalculator;
134
+
135
+ streamCollector?: __StreamCollector;
136
+
137
+ base64Decoder?: __Decoder;
138
+
139
+ base64Encoder?: __Encoder;
140
+
141
+ utf8Decoder?: __Decoder;
142
+
143
+ utf8Encoder?: __Encoder;
144
+
145
+ runtime?: string;
146
+
147
+ disableHostPrefix?: boolean;
148
+
149
+ maxAttempts?: number | __Provider<number>;
150
+
151
+ retryMode?: string | __Provider<string>;
152
+
153
+ logger?: __Logger;
154
+
155
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
156
+
157
+ useFipsEndpoint?: boolean | __Provider<boolean>;
158
+
159
+ serviceId?: string;
160
+
161
+ region?: string | __Provider<string>;
162
+
163
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
164
+
165
+ regionInfoProvider?: RegionInfoProvider;
166
+
167
+ defaultUserAgentProvider?: Provider<__UserAgent>;
168
+
169
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
170
+ }
171
+ declare type KeyspacesClientConfigType = Partial<
172
+ __SmithyConfiguration<__HttpHandlerOptions>
173
+ > &
174
+ ClientDefaults &
175
+ RegionInputConfig &
176
+ EndpointsInputConfig &
177
+ RetryInputConfig &
178
+ HostHeaderInputConfig &
179
+ AwsAuthInputConfig &
180
+ UserAgentInputConfig;
181
+
182
+ export interface KeyspacesClientConfig extends KeyspacesClientConfigType {}
183
+ declare type KeyspacesClientResolvedConfigType =
184
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
185
+ Required<ClientDefaults> &
186
+ RegionResolvedConfig &
187
+ EndpointsResolvedConfig &
188
+ RetryResolvedConfig &
189
+ HostHeaderResolvedConfig &
190
+ AwsAuthResolvedConfig &
191
+ UserAgentResolvedConfig;
192
+
193
+ export interface KeyspacesClientResolvedConfig
194
+ extends KeyspacesClientResolvedConfigType {}
195
+
196
+ export declare class KeyspacesClient extends __Client<
197
+ __HttpHandlerOptions,
198
+ ServiceInputTypes,
199
+ ServiceOutputTypes,
200
+ KeyspacesClientResolvedConfig
201
+ > {
202
+ readonly config: KeyspacesClientResolvedConfig;
203
+ constructor(configuration: KeyspacesClientConfig);
204
+
205
+ destroy(): void;
206
+ }
207
+ export {};