@aws-sdk/client-keyspaces 3.490.0 → 3.494.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 +8 -0
- package/dist-cjs/Keyspaces.js +2 -0
- package/dist-cjs/commands/GetTableAutoScalingSettingsCommand.js +28 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +196 -3
- package/dist-es/Keyspaces.js +2 -0
- package/dist-es/commands/GetTableAutoScalingSettingsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +194 -3
- package/dist-types/Keyspaces.d.ts +7 -0
- package/dist-types/KeyspacesClient.d.ts +3 -2
- package/dist-types/commands/CreateKeyspaceCommand.d.ts +2 -2
- package/dist-types/commands/CreateTableCommand.d.ts +49 -2
- package/dist-types/commands/DeleteKeyspaceCommand.d.ts +2 -2
- package/dist-types/commands/DeleteTableCommand.d.ts +2 -2
- package/dist-types/commands/GetKeyspaceCommand.d.ts +1 -1
- package/dist-types/commands/GetTableAutoScalingSettingsCommand.d.ts +142 -0
- package/dist-types/commands/GetTableCommand.d.ts +13 -1
- package/dist-types/commands/ListKeyspacesCommand.d.ts +1 -1
- package/dist-types/commands/ListTablesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RestoreTableCommand.d.ts +55 -9
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateTableCommand.d.ts +50 -3
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +362 -2
- package/dist-types/protocols/Aws_json1_0.d.ts +9 -0
- package/dist-types/ts3.4/Keyspaces.d.ts +17 -0
- package/dist-types/ts3.4/KeyspacesClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetTableAutoScalingSettingsCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +51 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
GetKeyspaceCommandInput,
|
|
24
24
|
GetKeyspaceCommandOutput,
|
|
25
25
|
} from "../commands/GetKeyspaceCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetTableAutoScalingSettingsCommandInput,
|
|
28
|
+
GetTableAutoScalingSettingsCommandOutput,
|
|
29
|
+
} from "../commands/GetTableAutoScalingSettingsCommand";
|
|
26
30
|
import {
|
|
27
31
|
GetTableCommandInput,
|
|
28
32
|
GetTableCommandOutput,
|
|
@@ -79,6 +83,10 @@ export declare const se_GetTableCommand: (
|
|
|
79
83
|
input: GetTableCommandInput,
|
|
80
84
|
context: __SerdeContext
|
|
81
85
|
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_GetTableAutoScalingSettingsCommand: (
|
|
87
|
+
input: GetTableAutoScalingSettingsCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
82
90
|
export declare const se_ListKeyspacesCommand: (
|
|
83
91
|
input: ListKeyspacesCommandInput,
|
|
84
92
|
context: __SerdeContext
|
|
@@ -131,6 +139,10 @@ export declare const de_GetTableCommand: (
|
|
|
131
139
|
output: __HttpResponse,
|
|
132
140
|
context: __SerdeContext
|
|
133
141
|
) => Promise<GetTableCommandOutput>;
|
|
142
|
+
export declare const de_GetTableAutoScalingSettingsCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<GetTableAutoScalingSettingsCommandOutput>;
|
|
134
146
|
export declare const de_ListKeyspacesCommand: (
|
|
135
147
|
output: __HttpResponse,
|
|
136
148
|
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.494.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|