@aws-sdk/client-keyspaces 3.682.0 → 3.683.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -1
- package/dist-cjs/index.js +173 -2
- package/dist-es/Keyspaces.js +8 -0
- package/dist-es/commands/CreateTypeCommand.js +22 -0
- package/dist-es/commands/DeleteTypeCommand.js +22 -0
- package/dist-es/commands/GetTypeCommand.js +22 -0
- package/dist-es/commands/ListTypesCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/pagination/ListTypesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +89 -0
- package/dist-types/Keyspaces.d.ts +28 -0
- package/dist-types/KeyspacesClient.d.ts +6 -2
- package/dist-types/commands/CreateKeyspaceCommand.d.ts +1 -1
- package/dist-types/commands/CreateTableCommand.d.ts +3 -2
- package/dist-types/commands/CreateTypeCommand.d.ts +105 -0
- package/dist-types/commands/DeleteKeyspaceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTableCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTypeCommand.d.ts +98 -0
- package/dist-types/commands/GetKeyspaceCommand.d.ts +2 -1
- package/dist-types/commands/GetTableAutoScalingSettingsCommand.d.ts +2 -1
- package/dist-types/commands/GetTableCommand.d.ts +5 -3
- package/dist-types/commands/GetTypeCommand.d.ts +112 -0
- package/dist-types/commands/ListKeyspacesCommand.d.ts +3 -2
- package/dist-types/commands/ListTablesCommand.d.ts +6 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -1
- package/dist-types/commands/ListTypesCommand.d.ts +98 -0
- package/dist-types/commands/RestoreTableCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +7 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTableCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +268 -2
- package/dist-types/pagination/ListTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +36 -0
- package/dist-types/ts3.4/Keyspaces.d.ts +68 -0
- package/dist-types/ts3.4/KeyspacesClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateTypeCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTypeCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTypeCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListTypesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -0
- package/dist-types/ts3.4/pagination/ListTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +48 -0
- package/package.json +1 -1
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
CreateTableCommandInput,
|
|
12
12
|
CreateTableCommandOutput,
|
|
13
13
|
} from "../commands/CreateTableCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateTypeCommandInput,
|
|
16
|
+
CreateTypeCommandOutput,
|
|
17
|
+
} from "../commands/CreateTypeCommand";
|
|
14
18
|
import {
|
|
15
19
|
DeleteKeyspaceCommandInput,
|
|
16
20
|
DeleteKeyspaceCommandOutput,
|
|
@@ -19,6 +23,10 @@ import {
|
|
|
19
23
|
DeleteTableCommandInput,
|
|
20
24
|
DeleteTableCommandOutput,
|
|
21
25
|
} from "../commands/DeleteTableCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteTypeCommandInput,
|
|
28
|
+
DeleteTypeCommandOutput,
|
|
29
|
+
} from "../commands/DeleteTypeCommand";
|
|
22
30
|
import {
|
|
23
31
|
GetKeyspaceCommandInput,
|
|
24
32
|
GetKeyspaceCommandOutput,
|
|
@@ -31,6 +39,10 @@ import {
|
|
|
31
39
|
GetTableCommandInput,
|
|
32
40
|
GetTableCommandOutput,
|
|
33
41
|
} from "../commands/GetTableCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetTypeCommandInput,
|
|
44
|
+
GetTypeCommandOutput,
|
|
45
|
+
} from "../commands/GetTypeCommand";
|
|
34
46
|
import {
|
|
35
47
|
ListKeyspacesCommandInput,
|
|
36
48
|
ListKeyspacesCommandOutput,
|
|
@@ -43,6 +55,10 @@ import {
|
|
|
43
55
|
ListTagsForResourceCommandInput,
|
|
44
56
|
ListTagsForResourceCommandOutput,
|
|
45
57
|
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListTypesCommandInput,
|
|
60
|
+
ListTypesCommandOutput,
|
|
61
|
+
} from "../commands/ListTypesCommand";
|
|
46
62
|
import {
|
|
47
63
|
RestoreTableCommandInput,
|
|
48
64
|
RestoreTableCommandOutput,
|
|
@@ -67,6 +83,10 @@ export declare const se_CreateTableCommand: (
|
|
|
67
83
|
input: CreateTableCommandInput,
|
|
68
84
|
context: __SerdeContext
|
|
69
85
|
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_CreateTypeCommand: (
|
|
87
|
+
input: CreateTypeCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
70
90
|
export declare const se_DeleteKeyspaceCommand: (
|
|
71
91
|
input: DeleteKeyspaceCommandInput,
|
|
72
92
|
context: __SerdeContext
|
|
@@ -75,6 +95,10 @@ export declare const se_DeleteTableCommand: (
|
|
|
75
95
|
input: DeleteTableCommandInput,
|
|
76
96
|
context: __SerdeContext
|
|
77
97
|
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_DeleteTypeCommand: (
|
|
99
|
+
input: DeleteTypeCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
78
102
|
export declare const se_GetKeyspaceCommand: (
|
|
79
103
|
input: GetKeyspaceCommandInput,
|
|
80
104
|
context: __SerdeContext
|
|
@@ -87,6 +111,10 @@ export declare const se_GetTableAutoScalingSettingsCommand: (
|
|
|
87
111
|
input: GetTableAutoScalingSettingsCommandInput,
|
|
88
112
|
context: __SerdeContext
|
|
89
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_GetTypeCommand: (
|
|
115
|
+
input: GetTypeCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
90
118
|
export declare const se_ListKeyspacesCommand: (
|
|
91
119
|
input: ListKeyspacesCommandInput,
|
|
92
120
|
context: __SerdeContext
|
|
@@ -99,6 +127,10 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
99
127
|
input: ListTagsForResourceCommandInput,
|
|
100
128
|
context: __SerdeContext
|
|
101
129
|
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_ListTypesCommand: (
|
|
131
|
+
input: ListTypesCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
102
134
|
export declare const se_RestoreTableCommand: (
|
|
103
135
|
input: RestoreTableCommandInput,
|
|
104
136
|
context: __SerdeContext
|
|
@@ -123,6 +155,10 @@ export declare const de_CreateTableCommand: (
|
|
|
123
155
|
output: __HttpResponse,
|
|
124
156
|
context: __SerdeContext
|
|
125
157
|
) => Promise<CreateTableCommandOutput>;
|
|
158
|
+
export declare const de_CreateTypeCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<CreateTypeCommandOutput>;
|
|
126
162
|
export declare const de_DeleteKeyspaceCommand: (
|
|
127
163
|
output: __HttpResponse,
|
|
128
164
|
context: __SerdeContext
|
|
@@ -131,6 +167,10 @@ export declare const de_DeleteTableCommand: (
|
|
|
131
167
|
output: __HttpResponse,
|
|
132
168
|
context: __SerdeContext
|
|
133
169
|
) => Promise<DeleteTableCommandOutput>;
|
|
170
|
+
export declare const de_DeleteTypeCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<DeleteTypeCommandOutput>;
|
|
134
174
|
export declare const de_GetKeyspaceCommand: (
|
|
135
175
|
output: __HttpResponse,
|
|
136
176
|
context: __SerdeContext
|
|
@@ -143,6 +183,10 @@ export declare const de_GetTableAutoScalingSettingsCommand: (
|
|
|
143
183
|
output: __HttpResponse,
|
|
144
184
|
context: __SerdeContext
|
|
145
185
|
) => Promise<GetTableAutoScalingSettingsCommandOutput>;
|
|
186
|
+
export declare const de_GetTypeCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<GetTypeCommandOutput>;
|
|
146
190
|
export declare const de_ListKeyspacesCommand: (
|
|
147
191
|
output: __HttpResponse,
|
|
148
192
|
context: __SerdeContext
|
|
@@ -155,6 +199,10 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
155
199
|
output: __HttpResponse,
|
|
156
200
|
context: __SerdeContext
|
|
157
201
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
202
|
+
export declare const de_ListTypesCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<ListTypesCommandOutput>;
|
|
158
206
|
export declare const de_RestoreTableCommand: (
|
|
159
207
|
output: __HttpResponse,
|
|
160
208
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-keyspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Keyspaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.683.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-keyspaces",
|