@aws-sdk/client-keyspaces 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/Keyspaces.d.ts +225 -70
  3. package/dist-types/ts3.4/KeyspacesClient.d.ts +182 -86
  4. package/dist-types/ts3.4/commands/CreateKeyspaceCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteKeyspaceCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/GetKeyspaceCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/ListKeyspacesCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/RestoreTableCommand.d.ts +32 -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/UpdateTableCommand.d.ts +32 -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 +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 +362 -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 +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/package.json +34 -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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { CreateTableRequest, CreateTableResponse } from "../models/models_0";
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, KeyspacesClientResolvedConfig> {
11
- readonly input: CreateTableCommandInput;
12
- constructor(input: CreateTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, 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 {
9
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { CreateTableRequest, CreateTableResponse } from "../models/models_0";
14
+ export interface CreateTableCommandInput extends CreateTableRequest {}
15
+ export interface CreateTableCommandOutput
16
+ extends CreateTableResponse,
17
+ __MetadataBearer {}
18
+ export declare class CreateTableCommand extends $Command<
19
+ CreateTableCommandInput,
20
+ CreateTableCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: CreateTableCommandInput;
24
+ constructor(input: CreateTableCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateTableCommandInput, CreateTableCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { DeleteKeyspaceRequest, DeleteKeyspaceResponse } from "../models/models_0";
5
- export interface DeleteKeyspaceCommandInput extends DeleteKeyspaceRequest {
6
- }
7
- export interface DeleteKeyspaceCommandOutput extends DeleteKeyspaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteKeyspaceCommand extends $Command<DeleteKeyspaceCommandInput, DeleteKeyspaceCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: DeleteKeyspaceCommandInput;
12
- constructor(input: DeleteKeyspaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteKeyspaceCommandInput, DeleteKeyspaceCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import {
14
+ DeleteKeyspaceRequest,
15
+ DeleteKeyspaceResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteKeyspaceCommandInput extends DeleteKeyspaceRequest {}
18
+ export interface DeleteKeyspaceCommandOutput
19
+ extends DeleteKeyspaceResponse,
20
+ __MetadataBearer {}
21
+ export declare class DeleteKeyspaceCommand extends $Command<
22
+ DeleteKeyspaceCommandInput,
23
+ DeleteKeyspaceCommandOutput,
24
+ KeyspacesClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteKeyspaceCommandInput;
27
+ constructor(input: DeleteKeyspaceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KeyspacesClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteKeyspaceCommandInput, DeleteKeyspaceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { DeleteTableRequest, DeleteTableResponse } from "../models/models_0";
5
- export interface DeleteTableCommandInput extends DeleteTableRequest {
6
- }
7
- export interface DeleteTableCommandOutput extends DeleteTableResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteTableCommand extends $Command<DeleteTableCommandInput, DeleteTableCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: DeleteTableCommandInput;
12
- constructor(input: DeleteTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, 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 {
9
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { DeleteTableRequest, DeleteTableResponse } from "../models/models_0";
14
+ export interface DeleteTableCommandInput extends DeleteTableRequest {}
15
+ export interface DeleteTableCommandOutput
16
+ extends DeleteTableResponse,
17
+ __MetadataBearer {}
18
+ export declare class DeleteTableCommand extends $Command<
19
+ DeleteTableCommandInput,
20
+ DeleteTableCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteTableCommandInput;
24
+ constructor(input: DeleteTableCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteTableCommandInput, DeleteTableCommandOutput>;
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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { GetKeyspaceRequest, GetKeyspaceResponse } from "../models/models_0";
5
- export interface GetKeyspaceCommandInput extends GetKeyspaceRequest {
6
- }
7
- export interface GetKeyspaceCommandOutput extends GetKeyspaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetKeyspaceCommand extends $Command<GetKeyspaceCommandInput, GetKeyspaceCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: GetKeyspaceCommandInput;
12
- constructor(input: GetKeyspaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetKeyspaceCommandInput, GetKeyspaceCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { GetKeyspaceRequest, GetKeyspaceResponse } from "../models/models_0";
14
+ export interface GetKeyspaceCommandInput extends GetKeyspaceRequest {}
15
+ export interface GetKeyspaceCommandOutput
16
+ extends GetKeyspaceResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetKeyspaceCommand extends $Command<
19
+ GetKeyspaceCommandInput,
20
+ GetKeyspaceCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: GetKeyspaceCommandInput;
24
+ constructor(input: GetKeyspaceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetKeyspaceCommandInput, GetKeyspaceCommandOutput>;
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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { GetTableRequest, GetTableResponse } from "../models/models_0";
5
- export interface GetTableCommandInput extends GetTableRequest {
6
- }
7
- export interface GetTableCommandOutput extends GetTableResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetTableCommand extends $Command<GetTableCommandInput, GetTableCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: GetTableCommandInput;
12
- constructor(input: GetTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTableCommandInput, GetTableCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { GetTableRequest, GetTableResponse } from "../models/models_0";
14
+ export interface GetTableCommandInput extends GetTableRequest {}
15
+ export interface GetTableCommandOutput
16
+ extends GetTableResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetTableCommand extends $Command<
19
+ GetTableCommandInput,
20
+ GetTableCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: GetTableCommandInput;
24
+ constructor(input: GetTableCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetTableCommandInput, GetTableCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { ListKeyspacesRequest, ListKeyspacesResponse } from "../models/models_0";
5
- export interface ListKeyspacesCommandInput extends ListKeyspacesRequest {
6
- }
7
- export interface ListKeyspacesCommandOutput extends ListKeyspacesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListKeyspacesCommand extends $Command<ListKeyspacesCommandInput, ListKeyspacesCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: ListKeyspacesCommandInput;
12
- constructor(input: ListKeyspacesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListKeyspacesCommandInput, ListKeyspacesCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import {
14
+ ListKeyspacesRequest,
15
+ ListKeyspacesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListKeyspacesCommandInput extends ListKeyspacesRequest {}
18
+ export interface ListKeyspacesCommandOutput
19
+ extends ListKeyspacesResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListKeyspacesCommand extends $Command<
22
+ ListKeyspacesCommandInput,
23
+ ListKeyspacesCommandOutput,
24
+ KeyspacesClientResolvedConfig
25
+ > {
26
+ readonly input: ListKeyspacesCommandInput;
27
+ constructor(input: ListKeyspacesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KeyspacesClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListKeyspacesCommandInput, ListKeyspacesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
5
- export interface ListTablesCommandInput extends ListTablesRequest {
6
- }
7
- export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: ListTablesCommandInput;
12
- constructor(input: ListTablesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
14
+ export interface ListTablesCommandInput extends ListTablesRequest {}
15
+ export interface ListTablesCommandOutput
16
+ extends ListTablesResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListTablesCommand extends $Command<
19
+ ListTablesCommandInput,
20
+ ListTablesCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: ListTablesCommandInput;
24
+ constructor(input: ListTablesCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ KeyspacesClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: KeyspacesClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { RestoreTableRequest, RestoreTableResponse } from "../models/models_0";
5
- export interface RestoreTableCommandInput extends RestoreTableRequest {
6
- }
7
- export interface RestoreTableCommandOutput extends RestoreTableResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RestoreTableCommand extends $Command<RestoreTableCommandInput, RestoreTableCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: RestoreTableCommandInput;
12
- constructor(input: RestoreTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreTableCommandInput, RestoreTableCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { RestoreTableRequest, RestoreTableResponse } from "../models/models_0";
14
+ export interface RestoreTableCommandInput extends RestoreTableRequest {}
15
+ export interface RestoreTableCommandOutput
16
+ extends RestoreTableResponse,
17
+ __MetadataBearer {}
18
+ export declare class RestoreTableCommand extends $Command<
19
+ RestoreTableCommandInput,
20
+ RestoreTableCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: RestoreTableCommandInput;
24
+ constructor(input: RestoreTableCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<RestoreTableCommandInput, RestoreTableCommandOutput>;
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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ KeyspacesClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: KeyspacesClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient";
4
- import { UpdateTableRequest, UpdateTableResponse } from "../models/models_0";
5
- export interface UpdateTableCommandInput extends UpdateTableRequest {
6
- }
7
- export interface UpdateTableCommandOutput extends UpdateTableResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateTableCommand extends $Command<UpdateTableCommandInput, UpdateTableCommandOutput, KeyspacesClientResolvedConfig> {
11
- readonly input: UpdateTableCommandInput;
12
- constructor(input: UpdateTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KeyspacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTableCommandInput, UpdateTableCommandOutput>;
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
+ KeyspacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KeyspacesClient";
13
+ import { UpdateTableRequest, UpdateTableResponse } from "../models/models_0";
14
+ export interface UpdateTableCommandInput extends UpdateTableRequest {}
15
+ export interface UpdateTableCommandOutput
16
+ extends UpdateTableResponse,
17
+ __MetadataBearer {}
18
+ export declare class UpdateTableCommand extends $Command<
19
+ UpdateTableCommandInput,
20
+ UpdateTableCommandOutput,
21
+ KeyspacesClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateTableCommandInput;
24
+ constructor(input: UpdateTableCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: KeyspacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateTableCommandInput, UpdateTableCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }