@aws-sdk/client-keyspaces 3.682.0 → 3.686.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 (49) hide show
  1. package/README.md +33 -1
  2. package/dist-cjs/index.js +173 -2
  3. package/dist-es/Keyspaces.js +8 -0
  4. package/dist-es/commands/CreateTypeCommand.js +22 -0
  5. package/dist-es/commands/DeleteTypeCommand.js +22 -0
  6. package/dist-es/commands/GetTypeCommand.js +22 -0
  7. package/dist-es/commands/ListTypesCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +6 -0
  10. package/dist-es/pagination/ListTypesPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_json1_0.js +89 -0
  13. package/dist-types/Keyspaces.d.ts +28 -0
  14. package/dist-types/KeyspacesClient.d.ts +6 -2
  15. package/dist-types/commands/CreateKeyspaceCommand.d.ts +1 -1
  16. package/dist-types/commands/CreateTableCommand.d.ts +3 -2
  17. package/dist-types/commands/CreateTypeCommand.d.ts +105 -0
  18. package/dist-types/commands/DeleteKeyspaceCommand.d.ts +2 -1
  19. package/dist-types/commands/DeleteTableCommand.d.ts +2 -1
  20. package/dist-types/commands/DeleteTypeCommand.d.ts +98 -0
  21. package/dist-types/commands/GetKeyspaceCommand.d.ts +2 -1
  22. package/dist-types/commands/GetTableAutoScalingSettingsCommand.d.ts +2 -1
  23. package/dist-types/commands/GetTableCommand.d.ts +5 -3
  24. package/dist-types/commands/GetTypeCommand.d.ts +112 -0
  25. package/dist-types/commands/ListKeyspacesCommand.d.ts +3 -2
  26. package/dist-types/commands/ListTablesCommand.d.ts +6 -2
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -1
  28. package/dist-types/commands/ListTypesCommand.d.ts +98 -0
  29. package/dist-types/commands/RestoreTableCommand.d.ts +2 -1
  30. package/dist-types/commands/TagResourceCommand.d.ts +7 -1
  31. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  32. package/dist-types/commands/UpdateTableCommand.d.ts +2 -1
  33. package/dist-types/commands/index.d.ts +4 -0
  34. package/dist-types/models/models_0.d.ts +268 -2
  35. package/dist-types/pagination/ListTypesPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/protocols/Aws_json1_0.d.ts +36 -0
  38. package/dist-types/ts3.4/Keyspaces.d.ts +68 -0
  39. package/dist-types/ts3.4/KeyspacesClient.d.ts +24 -0
  40. package/dist-types/ts3.4/commands/CreateTypeCommand.d.ts +47 -0
  41. package/dist-types/ts3.4/commands/DeleteTypeCommand.d.ts +47 -0
  42. package/dist-types/ts3.4/commands/GetTypeCommand.d.ts +43 -0
  43. package/dist-types/ts3.4/commands/ListTypesCommand.d.ts +47 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +52 -0
  46. package/dist-types/ts3.4/pagination/ListTypesPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  48. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +48 -0
  49. package/package.json +35 -35
@@ -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.682.0",
4
+ "version": "3.686.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",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.682.0",
24
- "@aws-sdk/client-sts": "3.682.0",
25
- "@aws-sdk/core": "3.679.0",
26
- "@aws-sdk/credential-provider-node": "3.682.0",
27
- "@aws-sdk/middleware-host-header": "3.679.0",
28
- "@aws-sdk/middleware-logger": "3.679.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
- "@aws-sdk/middleware-user-agent": "3.682.0",
31
- "@aws-sdk/region-config-resolver": "3.679.0",
32
- "@aws-sdk/types": "3.679.0",
33
- "@aws-sdk/util-endpoints": "3.679.0",
34
- "@aws-sdk/util-user-agent-browser": "3.679.0",
35
- "@aws-sdk/util-user-agent-node": "3.682.0",
36
- "@smithy/config-resolver": "^3.0.9",
37
- "@smithy/core": "^2.4.8",
38
- "@smithy/fetch-http-handler": "^3.2.9",
39
- "@smithy/hash-node": "^3.0.7",
40
- "@smithy/invalid-dependency": "^3.0.7",
41
- "@smithy/middleware-content-length": "^3.0.9",
42
- "@smithy/middleware-endpoint": "^3.1.4",
43
- "@smithy/middleware-retry": "^3.0.23",
44
- "@smithy/middleware-serde": "^3.0.7",
45
- "@smithy/middleware-stack": "^3.0.7",
46
- "@smithy/node-config-provider": "^3.1.8",
47
- "@smithy/node-http-handler": "^3.2.4",
48
- "@smithy/protocol-http": "^4.1.4",
49
- "@smithy/smithy-client": "^3.4.0",
50
- "@smithy/types": "^3.5.0",
51
- "@smithy/url-parser": "^3.0.7",
23
+ "@aws-sdk/client-sso-oidc": "3.686.0",
24
+ "@aws-sdk/client-sts": "3.686.0",
25
+ "@aws-sdk/core": "3.686.0",
26
+ "@aws-sdk/credential-provider-node": "3.686.0",
27
+ "@aws-sdk/middleware-host-header": "3.686.0",
28
+ "@aws-sdk/middleware-logger": "3.686.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.686.0",
31
+ "@aws-sdk/region-config-resolver": "3.686.0",
32
+ "@aws-sdk/types": "3.686.0",
33
+ "@aws-sdk/util-endpoints": "3.686.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.686.0",
36
+ "@smithy/config-resolver": "^3.0.10",
37
+ "@smithy/core": "^2.5.1",
38
+ "@smithy/fetch-http-handler": "^4.0.0",
39
+ "@smithy/hash-node": "^3.0.8",
40
+ "@smithy/invalid-dependency": "^3.0.8",
41
+ "@smithy/middleware-content-length": "^3.0.10",
42
+ "@smithy/middleware-endpoint": "^3.2.1",
43
+ "@smithy/middleware-retry": "^3.0.25",
44
+ "@smithy/middleware-serde": "^3.0.8",
45
+ "@smithy/middleware-stack": "^3.0.8",
46
+ "@smithy/node-config-provider": "^3.1.9",
47
+ "@smithy/node-http-handler": "^3.2.5",
48
+ "@smithy/protocol-http": "^4.1.5",
49
+ "@smithy/smithy-client": "^3.4.2",
50
+ "@smithy/types": "^3.6.0",
51
+ "@smithy/url-parser": "^3.0.8",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.23",
56
- "@smithy/util-defaults-mode-node": "^3.0.23",
57
- "@smithy/util-endpoints": "^2.1.3",
58
- "@smithy/util-middleware": "^3.0.7",
59
- "@smithy/util-retry": "^3.0.7",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.25",
56
+ "@smithy/util-defaults-mode-node": "^3.0.25",
57
+ "@smithy/util-endpoints": "^2.1.4",
58
+ "@smithy/util-middleware": "^3.0.8",
59
+ "@smithy/util-retry": "^3.0.8",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },