@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
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Keyspaces } from "../Keyspaces";
3
- import { KeyspacesClient } from "../KeyspacesClient";
4
- export interface KeyspacesPaginationConfiguration extends PaginationConfiguration {
5
- client: Keyspaces | KeyspacesClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Keyspaces } from "../Keyspaces";
3
+ import { KeyspacesClient } from "../KeyspacesClient";
4
+ export interface KeyspacesPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Keyspaces | KeyspacesClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListKeyspacesCommandInput, ListKeyspacesCommandOutput } from "../commands/ListKeyspacesCommand";
3
- import { KeyspacesPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListKeyspaces(config: KeyspacesPaginationConfiguration, input: ListKeyspacesCommandInput, ...additionalArguments: any): Paginator<ListKeyspacesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListKeyspacesCommandInput,
4
+ ListKeyspacesCommandOutput,
5
+ } from "../commands/ListKeyspacesCommand";
6
+ import { KeyspacesPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListKeyspaces(
8
+ config: KeyspacesPaginationConfiguration,
9
+ input: ListKeyspacesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListKeyspacesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
3
- import { KeyspacesPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTables(config: KeyspacesPaginationConfiguration, input: ListTablesCommandInput, ...additionalArguments: any): Paginator<ListTablesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTablesCommandInput,
4
+ ListTablesCommandOutput,
5
+ } from "../commands/ListTablesCommand";
6
+ import { KeyspacesPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTables(
8
+ config: KeyspacesPaginationConfiguration,
9
+ input: ListTablesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTablesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
- import { KeyspacesPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTagsForResource(config: KeyspacesPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTagsForResourceCommandInput,
4
+ ListTagsForResourceCommandOutput,
5
+ } from "../commands/ListTagsForResourceCommand";
6
+ import { KeyspacesPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTagsForResource(
8
+ config: KeyspacesPaginationConfiguration,
9
+ input: ListTagsForResourceCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTagsForResourceCommandOutput>;
@@ -1,4 +1,4 @@
1
- export * from "./Interfaces";
2
- export * from "./ListKeyspacesPaginator";
3
- export * from "./ListTablesPaginator";
4
- export * from "./ListTagsForResourcePaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListKeyspacesPaginator";
3
+ export * from "./ListTablesPaginator";
4
+ export * from "./ListTagsForResourcePaginator";
@@ -1,41 +1,161 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateKeyspaceCommandInput, CreateKeyspaceCommandOutput } from "../commands/CreateKeyspaceCommand";
4
- import { CreateTableCommandInput, CreateTableCommandOutput } from "../commands/CreateTableCommand";
5
- import { DeleteKeyspaceCommandInput, DeleteKeyspaceCommandOutput } from "../commands/DeleteKeyspaceCommand";
6
- import { DeleteTableCommandInput, DeleteTableCommandOutput } from "../commands/DeleteTableCommand";
7
- import { GetKeyspaceCommandInput, GetKeyspaceCommandOutput } from "../commands/GetKeyspaceCommand";
8
- import { GetTableCommandInput, GetTableCommandOutput } from "../commands/GetTableCommand";
9
- import { ListKeyspacesCommandInput, ListKeyspacesCommandOutput } from "../commands/ListKeyspacesCommand";
10
- import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
11
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
12
- import { RestoreTableCommandInput, RestoreTableCommandOutput } from "../commands/RestoreTableCommand";
13
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
- import { UpdateTableCommandInput, UpdateTableCommandOutput } from "../commands/UpdateTableCommand";
16
- export declare const serializeAws_json1_0CreateKeyspaceCommand: (input: CreateKeyspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_json1_0CreateTableCommand: (input: CreateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_json1_0DeleteKeyspaceCommand: (input: DeleteKeyspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_json1_0DeleteTableCommand: (input: DeleteTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_json1_0GetKeyspaceCommand: (input: GetKeyspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_json1_0GetTableCommand: (input: GetTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_json1_0ListKeyspacesCommand: (input: ListKeyspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_json1_0ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_json1_0RestoreTableCommand: (input: RestoreTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_json1_0UpdateTableCommand: (input: UpdateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const deserializeAws_json1_0CreateKeyspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKeyspaceCommandOutput>;
30
- export declare const deserializeAws_json1_0CreateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTableCommandOutput>;
31
- export declare const deserializeAws_json1_0DeleteKeyspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKeyspaceCommandOutput>;
32
- export declare const deserializeAws_json1_0DeleteTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableCommandOutput>;
33
- export declare const deserializeAws_json1_0GetKeyspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKeyspaceCommandOutput>;
34
- export declare const deserializeAws_json1_0GetTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableCommandOutput>;
35
- export declare const deserializeAws_json1_0ListKeyspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKeyspacesCommandOutput>;
36
- export declare const deserializeAws_json1_0ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
37
- export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
38
- export declare const deserializeAws_json1_0RestoreTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreTableCommandOutput>;
39
- export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
40
- export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
41
- export declare const deserializeAws_json1_0UpdateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTableCommandOutput>;
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
+ CreateKeyspaceCommandInput,
8
+ CreateKeyspaceCommandOutput,
9
+ } from "../commands/CreateKeyspaceCommand";
10
+ import {
11
+ CreateTableCommandInput,
12
+ CreateTableCommandOutput,
13
+ } from "../commands/CreateTableCommand";
14
+ import {
15
+ DeleteKeyspaceCommandInput,
16
+ DeleteKeyspaceCommandOutput,
17
+ } from "../commands/DeleteKeyspaceCommand";
18
+ import {
19
+ DeleteTableCommandInput,
20
+ DeleteTableCommandOutput,
21
+ } from "../commands/DeleteTableCommand";
22
+ import {
23
+ GetKeyspaceCommandInput,
24
+ GetKeyspaceCommandOutput,
25
+ } from "../commands/GetKeyspaceCommand";
26
+ import {
27
+ GetTableCommandInput,
28
+ GetTableCommandOutput,
29
+ } from "../commands/GetTableCommand";
30
+ import {
31
+ ListKeyspacesCommandInput,
32
+ ListKeyspacesCommandOutput,
33
+ } from "../commands/ListKeyspacesCommand";
34
+ import {
35
+ ListTablesCommandInput,
36
+ ListTablesCommandOutput,
37
+ } from "../commands/ListTablesCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "../commands/ListTagsForResourceCommand";
42
+ import {
43
+ RestoreTableCommandInput,
44
+ RestoreTableCommandOutput,
45
+ } from "../commands/RestoreTableCommand";
46
+ import {
47
+ TagResourceCommandInput,
48
+ TagResourceCommandOutput,
49
+ } from "../commands/TagResourceCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "../commands/UntagResourceCommand";
54
+ import {
55
+ UpdateTableCommandInput,
56
+ UpdateTableCommandOutput,
57
+ } from "../commands/UpdateTableCommand";
58
+ export declare const serializeAws_json1_0CreateKeyspaceCommand: (
59
+ input: CreateKeyspaceCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_json1_0CreateTableCommand: (
63
+ input: CreateTableCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_json1_0DeleteKeyspaceCommand: (
67
+ input: DeleteKeyspaceCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_json1_0DeleteTableCommand: (
71
+ input: DeleteTableCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_json1_0GetKeyspaceCommand: (
75
+ input: GetKeyspaceCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_json1_0GetTableCommand: (
79
+ input: GetTableCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_json1_0ListKeyspacesCommand: (
83
+ input: ListKeyspacesCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_json1_0ListTablesCommand: (
87
+ input: ListTablesCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_json1_0ListTagsForResourceCommand: (
91
+ input: ListTagsForResourceCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_json1_0RestoreTableCommand: (
95
+ input: RestoreTableCommandInput,
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_0UpdateTableCommand: (
107
+ input: UpdateTableCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const deserializeAws_json1_0CreateKeyspaceCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<CreateKeyspaceCommandOutput>;
114
+ export declare const deserializeAws_json1_0CreateTableCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<CreateTableCommandOutput>;
118
+ export declare const deserializeAws_json1_0DeleteKeyspaceCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<DeleteKeyspaceCommandOutput>;
122
+ export declare const deserializeAws_json1_0DeleteTableCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<DeleteTableCommandOutput>;
126
+ export declare const deserializeAws_json1_0GetKeyspaceCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<GetKeyspaceCommandOutput>;
130
+ export declare const deserializeAws_json1_0GetTableCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<GetTableCommandOutput>;
134
+ export declare const deserializeAws_json1_0ListKeyspacesCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<ListKeyspacesCommandOutput>;
138
+ export declare const deserializeAws_json1_0ListTablesCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<ListTablesCommandOutput>;
142
+ export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<ListTagsForResourceCommandOutput>;
146
+ export declare const deserializeAws_json1_0RestoreTableCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<RestoreTableCommandOutput>;
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_0UpdateTableCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<UpdateTableCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { KeyspacesClientConfig } from "./KeyspacesClient";
3
-
4
- export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { KeyspacesClientConfig } from "./KeyspacesClient";
3
+
4
+ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,38 +1,66 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { KeyspacesClientConfig } from "./KeyspacesClient";
3
-
4
- export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { KeyspacesClientConfig } from "./KeyspacesClient";
3
+
4
+ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<string>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,37 +1,67 @@
1
- import { KeyspacesClientConfig } from "./KeyspacesClient";
2
-
3
- export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { KeyspacesClientConfig } from "./KeyspacesClient";
2
+
3
+ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler:
7
+ | (import("@aws-sdk/types").RequestHandler<
8
+ any,
9
+ any,
10
+ import("@aws-sdk/types").HttpHandlerOptions
11
+ > &
12
+ import("@aws-sdk/protocol-http").HttpHandler)
13
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
14
+ apiVersion: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ base64Decoder: import("@aws-sdk/types").Decoder;
19
+ base64Encoder: import("@aws-sdk/types").Encoder;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ disableHostPrefix: boolean;
23
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
24
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
27
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
28
+ serviceId: string;
29
+ region: string | import("@aws-sdk/types").Provider<any>;
30
+ credentialDefaultProvider: (
31
+ input: any
32
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
33
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
34
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
35
+ import("@aws-sdk/types").UserAgent
36
+ >;
37
+ defaultsMode:
38
+ | import("@aws-sdk/smithy-client").DefaultsMode
39
+ | import("@aws-sdk/types").Provider<
40
+ import("@aws-sdk/smithy-client").DefaultsMode
41
+ >;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };
@@ -1,11 +1,11 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
- import { KeyspacesClientConfig } from "./KeyspacesClient";
3
-
4
- export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
5
- apiVersion: string;
6
- disableHostPrefix: boolean;
7
- logger: __Logger;
8
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
- serviceId: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- };
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { KeyspacesClientConfig } from "./KeyspacesClient";
3
+
4
+ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };