@aws-sdk/client-keyspaces 3.716.0 → 3.723.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/dist-cjs/index.js +134 -97
- package/dist-es/KeyspacesClient.js +1 -0
- package/dist-es/models/models_0.js +13 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -163,7 +163,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
163
163
|
}, "resolveRuntimeExtensions");
|
|
164
164
|
|
|
165
165
|
// src/KeyspacesClient.ts
|
|
166
|
-
var
|
|
166
|
+
var KeyspacesClient = class extends import_smithy_client.Client {
|
|
167
|
+
static {
|
|
168
|
+
__name(this, "KeyspacesClient");
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* The resolved configuration of KeyspacesClient class. This is resolved and normalized from the {@link KeyspacesClientConfig | constructor configuration interface}.
|
|
172
|
+
*/
|
|
173
|
+
config;
|
|
167
174
|
constructor(...[configuration]) {
|
|
168
175
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
169
176
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -173,7 +180,7 @@ var _KeyspacesClient = class _KeyspacesClient extends import_smithy_client.Clien
|
|
|
173
180
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
174
181
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
175
182
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
176
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
183
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
177
184
|
super(_config_8);
|
|
178
185
|
this.config = _config_8;
|
|
179
186
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -201,8 +208,6 @@ var _KeyspacesClient = class _KeyspacesClient extends import_smithy_client.Clien
|
|
|
201
208
|
super.destroy();
|
|
202
209
|
}
|
|
203
210
|
};
|
|
204
|
-
__name(_KeyspacesClient, "KeyspacesClient");
|
|
205
|
-
var KeyspacesClient = _KeyspacesClient;
|
|
206
211
|
|
|
207
212
|
// src/Keyspaces.ts
|
|
208
213
|
|
|
@@ -219,7 +224,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
219
224
|
|
|
220
225
|
// src/models/KeyspacesServiceException.ts
|
|
221
226
|
|
|
222
|
-
var
|
|
227
|
+
var KeyspacesServiceException = class _KeyspacesServiceException extends import_smithy_client.ServiceException {
|
|
228
|
+
static {
|
|
229
|
+
__name(this, "KeyspacesServiceException");
|
|
230
|
+
}
|
|
223
231
|
/**
|
|
224
232
|
* @internal
|
|
225
233
|
*/
|
|
@@ -228,11 +236,14 @@ var _KeyspacesServiceException = class _KeyspacesServiceException extends import
|
|
|
228
236
|
Object.setPrototypeOf(this, _KeyspacesServiceException.prototype);
|
|
229
237
|
}
|
|
230
238
|
};
|
|
231
|
-
__name(_KeyspacesServiceException, "KeyspacesServiceException");
|
|
232
|
-
var KeyspacesServiceException = _KeyspacesServiceException;
|
|
233
239
|
|
|
234
240
|
// src/models/models_0.ts
|
|
235
|
-
var
|
|
241
|
+
var AccessDeniedException = class _AccessDeniedException extends KeyspacesServiceException {
|
|
242
|
+
static {
|
|
243
|
+
__name(this, "AccessDeniedException");
|
|
244
|
+
}
|
|
245
|
+
name = "AccessDeniedException";
|
|
246
|
+
$fault = "client";
|
|
236
247
|
/**
|
|
237
248
|
* @internal
|
|
238
249
|
*/
|
|
@@ -242,13 +253,9 @@ var _AccessDeniedException = class _AccessDeniedException extends KeyspacesServi
|
|
|
242
253
|
$fault: "client",
|
|
243
254
|
...opts
|
|
244
255
|
});
|
|
245
|
-
this.name = "AccessDeniedException";
|
|
246
|
-
this.$fault = "client";
|
|
247
256
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
248
257
|
}
|
|
249
258
|
};
|
|
250
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
251
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
252
259
|
var ThroughputMode = {
|
|
253
260
|
PAY_PER_REQUEST: "PAY_PER_REQUEST",
|
|
254
261
|
PROVISIONED: "PROVISIONED"
|
|
@@ -260,7 +267,12 @@ var SortOrder = {
|
|
|
260
267
|
ASC: "ASC",
|
|
261
268
|
DESC: "DESC"
|
|
262
269
|
};
|
|
263
|
-
var
|
|
270
|
+
var ConflictException = class _ConflictException extends KeyspacesServiceException {
|
|
271
|
+
static {
|
|
272
|
+
__name(this, "ConflictException");
|
|
273
|
+
}
|
|
274
|
+
name = "ConflictException";
|
|
275
|
+
$fault = "client";
|
|
264
276
|
/**
|
|
265
277
|
* @internal
|
|
266
278
|
*/
|
|
@@ -270,18 +282,19 @@ var _ConflictException = class _ConflictException extends KeyspacesServiceExcept
|
|
|
270
282
|
$fault: "client",
|
|
271
283
|
...opts
|
|
272
284
|
});
|
|
273
|
-
this.name = "ConflictException";
|
|
274
|
-
this.$fault = "client";
|
|
275
285
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
276
286
|
}
|
|
277
287
|
};
|
|
278
|
-
__name(_ConflictException, "ConflictException");
|
|
279
|
-
var ConflictException = _ConflictException;
|
|
280
288
|
var Rs = {
|
|
281
289
|
MULTI_REGION: "MULTI_REGION",
|
|
282
290
|
SINGLE_REGION: "SINGLE_REGION"
|
|
283
291
|
};
|
|
284
|
-
var
|
|
292
|
+
var InternalServerException = class _InternalServerException extends KeyspacesServiceException {
|
|
293
|
+
static {
|
|
294
|
+
__name(this, "InternalServerException");
|
|
295
|
+
}
|
|
296
|
+
name = "InternalServerException";
|
|
297
|
+
$fault = "server";
|
|
285
298
|
/**
|
|
286
299
|
* @internal
|
|
287
300
|
*/
|
|
@@ -291,14 +304,15 @@ var _InternalServerException = class _InternalServerException extends KeyspacesS
|
|
|
291
304
|
$fault: "server",
|
|
292
305
|
...opts
|
|
293
306
|
});
|
|
294
|
-
this.name = "InternalServerException";
|
|
295
|
-
this.$fault = "server";
|
|
296
307
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
297
308
|
}
|
|
298
309
|
};
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
310
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends KeyspacesServiceException {
|
|
311
|
+
static {
|
|
312
|
+
__name(this, "ServiceQuotaExceededException");
|
|
313
|
+
}
|
|
314
|
+
name = "ServiceQuotaExceededException";
|
|
315
|
+
$fault = "client";
|
|
302
316
|
/**
|
|
303
317
|
* @internal
|
|
304
318
|
*/
|
|
@@ -308,14 +322,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
308
322
|
$fault: "client",
|
|
309
323
|
...opts
|
|
310
324
|
});
|
|
311
|
-
this.name = "ServiceQuotaExceededException";
|
|
312
|
-
this.$fault = "client";
|
|
313
325
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
314
326
|
}
|
|
315
327
|
};
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
328
|
+
var ValidationException = class _ValidationException extends KeyspacesServiceException {
|
|
329
|
+
static {
|
|
330
|
+
__name(this, "ValidationException");
|
|
331
|
+
}
|
|
332
|
+
name = "ValidationException";
|
|
333
|
+
$fault = "client";
|
|
319
334
|
/**
|
|
320
335
|
* @internal
|
|
321
336
|
*/
|
|
@@ -325,13 +340,9 @@ var _ValidationException = class _ValidationException extends KeyspacesServiceEx
|
|
|
325
340
|
$fault: "client",
|
|
326
341
|
...opts
|
|
327
342
|
});
|
|
328
|
-
this.name = "ValidationException";
|
|
329
|
-
this.$fault = "client";
|
|
330
343
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
331
344
|
}
|
|
332
345
|
};
|
|
333
|
-
__name(_ValidationException, "ValidationException");
|
|
334
|
-
var ValidationException = _ValidationException;
|
|
335
346
|
var EncryptionType = {
|
|
336
347
|
AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY",
|
|
337
348
|
CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY"
|
|
@@ -343,7 +354,17 @@ var PointInTimeRecoveryStatus = {
|
|
|
343
354
|
var TimeToLiveStatus = {
|
|
344
355
|
ENABLED: "ENABLED"
|
|
345
356
|
};
|
|
346
|
-
var
|
|
357
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends KeyspacesServiceException {
|
|
358
|
+
static {
|
|
359
|
+
__name(this, "ResourceNotFoundException");
|
|
360
|
+
}
|
|
361
|
+
name = "ResourceNotFoundException";
|
|
362
|
+
$fault = "client";
|
|
363
|
+
/**
|
|
364
|
+
* <p>The unique identifier in the format of Amazon Resource Name (ARN) for the resource couldn’t be found.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
resourceArn;
|
|
347
368
|
/**
|
|
348
369
|
* @internal
|
|
349
370
|
*/
|
|
@@ -353,14 +374,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Keyspa
|
|
|
353
374
|
$fault: "client",
|
|
354
375
|
...opts
|
|
355
376
|
});
|
|
356
|
-
this.name = "ResourceNotFoundException";
|
|
357
|
-
this.$fault = "client";
|
|
358
377
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
359
378
|
this.resourceArn = opts.resourceArn;
|
|
360
379
|
}
|
|
361
380
|
};
|
|
362
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
363
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
364
381
|
var KeyspaceStatus = {
|
|
365
382
|
ACTIVE: "ACTIVE",
|
|
366
383
|
CREATING: "CREATING",
|
|
@@ -1059,267 +1076,286 @@ function sharedHeaders(operation) {
|
|
|
1059
1076
|
__name(sharedHeaders, "sharedHeaders");
|
|
1060
1077
|
|
|
1061
1078
|
// src/commands/CreateKeyspaceCommand.ts
|
|
1062
|
-
var
|
|
1079
|
+
var CreateKeyspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1063
1080
|
return [
|
|
1064
1081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1065
1082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1066
1083
|
];
|
|
1067
1084
|
}).s("KeyspacesService", "CreateKeyspace", {}).n("KeyspacesClient", "CreateKeyspaceCommand").f(void 0, void 0).ser(se_CreateKeyspaceCommand).de(de_CreateKeyspaceCommand).build() {
|
|
1085
|
+
static {
|
|
1086
|
+
__name(this, "CreateKeyspaceCommand");
|
|
1087
|
+
}
|
|
1068
1088
|
};
|
|
1069
|
-
__name(_CreateKeyspaceCommand, "CreateKeyspaceCommand");
|
|
1070
|
-
var CreateKeyspaceCommand = _CreateKeyspaceCommand;
|
|
1071
1089
|
|
|
1072
1090
|
// src/commands/CreateTableCommand.ts
|
|
1073
1091
|
|
|
1074
1092
|
|
|
1075
1093
|
|
|
1076
|
-
var
|
|
1094
|
+
var CreateTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1077
1095
|
return [
|
|
1078
1096
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1079
1097
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1080
1098
|
];
|
|
1081
1099
|
}).s("KeyspacesService", "CreateTable", {}).n("KeyspacesClient", "CreateTableCommand").f(void 0, void 0).ser(se_CreateTableCommand).de(de_CreateTableCommand).build() {
|
|
1100
|
+
static {
|
|
1101
|
+
__name(this, "CreateTableCommand");
|
|
1102
|
+
}
|
|
1082
1103
|
};
|
|
1083
|
-
__name(_CreateTableCommand, "CreateTableCommand");
|
|
1084
|
-
var CreateTableCommand = _CreateTableCommand;
|
|
1085
1104
|
|
|
1086
1105
|
// src/commands/CreateTypeCommand.ts
|
|
1087
1106
|
|
|
1088
1107
|
|
|
1089
1108
|
|
|
1090
|
-
var
|
|
1109
|
+
var CreateTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1091
1110
|
return [
|
|
1092
1111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1093
1112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1094
1113
|
];
|
|
1095
1114
|
}).s("KeyspacesService", "CreateType", {}).n("KeyspacesClient", "CreateTypeCommand").f(void 0, void 0).ser(se_CreateTypeCommand).de(de_CreateTypeCommand).build() {
|
|
1115
|
+
static {
|
|
1116
|
+
__name(this, "CreateTypeCommand");
|
|
1117
|
+
}
|
|
1096
1118
|
};
|
|
1097
|
-
__name(_CreateTypeCommand, "CreateTypeCommand");
|
|
1098
|
-
var CreateTypeCommand = _CreateTypeCommand;
|
|
1099
1119
|
|
|
1100
1120
|
// src/commands/DeleteKeyspaceCommand.ts
|
|
1101
1121
|
|
|
1102
1122
|
|
|
1103
1123
|
|
|
1104
|
-
var
|
|
1124
|
+
var DeleteKeyspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1105
1125
|
return [
|
|
1106
1126
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1107
1127
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1108
1128
|
];
|
|
1109
1129
|
}).s("KeyspacesService", "DeleteKeyspace", {}).n("KeyspacesClient", "DeleteKeyspaceCommand").f(void 0, void 0).ser(se_DeleteKeyspaceCommand).de(de_DeleteKeyspaceCommand).build() {
|
|
1130
|
+
static {
|
|
1131
|
+
__name(this, "DeleteKeyspaceCommand");
|
|
1132
|
+
}
|
|
1110
1133
|
};
|
|
1111
|
-
__name(_DeleteKeyspaceCommand, "DeleteKeyspaceCommand");
|
|
1112
|
-
var DeleteKeyspaceCommand = _DeleteKeyspaceCommand;
|
|
1113
1134
|
|
|
1114
1135
|
// src/commands/DeleteTableCommand.ts
|
|
1115
1136
|
|
|
1116
1137
|
|
|
1117
1138
|
|
|
1118
|
-
var
|
|
1139
|
+
var DeleteTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1119
1140
|
return [
|
|
1120
1141
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1121
1142
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1122
1143
|
];
|
|
1123
1144
|
}).s("KeyspacesService", "DeleteTable", {}).n("KeyspacesClient", "DeleteTableCommand").f(void 0, void 0).ser(se_DeleteTableCommand).de(de_DeleteTableCommand).build() {
|
|
1145
|
+
static {
|
|
1146
|
+
__name(this, "DeleteTableCommand");
|
|
1147
|
+
}
|
|
1124
1148
|
};
|
|
1125
|
-
__name(_DeleteTableCommand, "DeleteTableCommand");
|
|
1126
|
-
var DeleteTableCommand = _DeleteTableCommand;
|
|
1127
1149
|
|
|
1128
1150
|
// src/commands/DeleteTypeCommand.ts
|
|
1129
1151
|
|
|
1130
1152
|
|
|
1131
1153
|
|
|
1132
|
-
var
|
|
1154
|
+
var DeleteTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1133
1155
|
return [
|
|
1134
1156
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1135
1157
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1136
1158
|
];
|
|
1137
1159
|
}).s("KeyspacesService", "DeleteType", {}).n("KeyspacesClient", "DeleteTypeCommand").f(void 0, void 0).ser(se_DeleteTypeCommand).de(de_DeleteTypeCommand).build() {
|
|
1160
|
+
static {
|
|
1161
|
+
__name(this, "DeleteTypeCommand");
|
|
1162
|
+
}
|
|
1138
1163
|
};
|
|
1139
|
-
__name(_DeleteTypeCommand, "DeleteTypeCommand");
|
|
1140
|
-
var DeleteTypeCommand = _DeleteTypeCommand;
|
|
1141
1164
|
|
|
1142
1165
|
// src/commands/GetKeyspaceCommand.ts
|
|
1143
1166
|
|
|
1144
1167
|
|
|
1145
1168
|
|
|
1146
|
-
var
|
|
1169
|
+
var GetKeyspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1147
1170
|
return [
|
|
1148
1171
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1149
1172
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1150
1173
|
];
|
|
1151
1174
|
}).s("KeyspacesService", "GetKeyspace", {}).n("KeyspacesClient", "GetKeyspaceCommand").f(void 0, void 0).ser(se_GetKeyspaceCommand).de(de_GetKeyspaceCommand).build() {
|
|
1175
|
+
static {
|
|
1176
|
+
__name(this, "GetKeyspaceCommand");
|
|
1177
|
+
}
|
|
1152
1178
|
};
|
|
1153
|
-
__name(_GetKeyspaceCommand, "GetKeyspaceCommand");
|
|
1154
|
-
var GetKeyspaceCommand = _GetKeyspaceCommand;
|
|
1155
1179
|
|
|
1156
1180
|
// src/commands/GetTableAutoScalingSettingsCommand.ts
|
|
1157
1181
|
|
|
1158
1182
|
|
|
1159
1183
|
|
|
1160
|
-
var
|
|
1184
|
+
var GetTableAutoScalingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1161
1185
|
return [
|
|
1162
1186
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1163
1187
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1164
1188
|
];
|
|
1165
1189
|
}).s("KeyspacesService", "GetTableAutoScalingSettings", {}).n("KeyspacesClient", "GetTableAutoScalingSettingsCommand").f(void 0, void 0).ser(se_GetTableAutoScalingSettingsCommand).de(de_GetTableAutoScalingSettingsCommand).build() {
|
|
1190
|
+
static {
|
|
1191
|
+
__name(this, "GetTableAutoScalingSettingsCommand");
|
|
1192
|
+
}
|
|
1166
1193
|
};
|
|
1167
|
-
__name(_GetTableAutoScalingSettingsCommand, "GetTableAutoScalingSettingsCommand");
|
|
1168
|
-
var GetTableAutoScalingSettingsCommand = _GetTableAutoScalingSettingsCommand;
|
|
1169
1194
|
|
|
1170
1195
|
// src/commands/GetTableCommand.ts
|
|
1171
1196
|
|
|
1172
1197
|
|
|
1173
1198
|
|
|
1174
|
-
var
|
|
1199
|
+
var GetTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1175
1200
|
return [
|
|
1176
1201
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1177
1202
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1178
1203
|
];
|
|
1179
1204
|
}).s("KeyspacesService", "GetTable", {}).n("KeyspacesClient", "GetTableCommand").f(void 0, void 0).ser(se_GetTableCommand).de(de_GetTableCommand).build() {
|
|
1205
|
+
static {
|
|
1206
|
+
__name(this, "GetTableCommand");
|
|
1207
|
+
}
|
|
1180
1208
|
};
|
|
1181
|
-
__name(_GetTableCommand, "GetTableCommand");
|
|
1182
|
-
var GetTableCommand = _GetTableCommand;
|
|
1183
1209
|
|
|
1184
1210
|
// src/commands/GetTypeCommand.ts
|
|
1185
1211
|
|
|
1186
1212
|
|
|
1187
1213
|
|
|
1188
|
-
var
|
|
1214
|
+
var GetTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1189
1215
|
return [
|
|
1190
1216
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1191
1217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1192
1218
|
];
|
|
1193
1219
|
}).s("KeyspacesService", "GetType", {}).n("KeyspacesClient", "GetTypeCommand").f(void 0, void 0).ser(se_GetTypeCommand).de(de_GetTypeCommand).build() {
|
|
1220
|
+
static {
|
|
1221
|
+
__name(this, "GetTypeCommand");
|
|
1222
|
+
}
|
|
1194
1223
|
};
|
|
1195
|
-
__name(_GetTypeCommand, "GetTypeCommand");
|
|
1196
|
-
var GetTypeCommand = _GetTypeCommand;
|
|
1197
1224
|
|
|
1198
1225
|
// src/commands/ListKeyspacesCommand.ts
|
|
1199
1226
|
|
|
1200
1227
|
|
|
1201
1228
|
|
|
1202
|
-
var
|
|
1229
|
+
var ListKeyspacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1203
1230
|
return [
|
|
1204
1231
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1205
1232
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1206
1233
|
];
|
|
1207
1234
|
}).s("KeyspacesService", "ListKeyspaces", {}).n("KeyspacesClient", "ListKeyspacesCommand").f(void 0, void 0).ser(se_ListKeyspacesCommand).de(de_ListKeyspacesCommand).build() {
|
|
1235
|
+
static {
|
|
1236
|
+
__name(this, "ListKeyspacesCommand");
|
|
1237
|
+
}
|
|
1208
1238
|
};
|
|
1209
|
-
__name(_ListKeyspacesCommand, "ListKeyspacesCommand");
|
|
1210
|
-
var ListKeyspacesCommand = _ListKeyspacesCommand;
|
|
1211
1239
|
|
|
1212
1240
|
// src/commands/ListTablesCommand.ts
|
|
1213
1241
|
|
|
1214
1242
|
|
|
1215
1243
|
|
|
1216
|
-
var
|
|
1244
|
+
var ListTablesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1217
1245
|
return [
|
|
1218
1246
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1219
1247
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1220
1248
|
];
|
|
1221
1249
|
}).s("KeyspacesService", "ListTables", {}).n("KeyspacesClient", "ListTablesCommand").f(void 0, void 0).ser(se_ListTablesCommand).de(de_ListTablesCommand).build() {
|
|
1250
|
+
static {
|
|
1251
|
+
__name(this, "ListTablesCommand");
|
|
1252
|
+
}
|
|
1222
1253
|
};
|
|
1223
|
-
__name(_ListTablesCommand, "ListTablesCommand");
|
|
1224
|
-
var ListTablesCommand = _ListTablesCommand;
|
|
1225
1254
|
|
|
1226
1255
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1227
1256
|
|
|
1228
1257
|
|
|
1229
1258
|
|
|
1230
|
-
var
|
|
1259
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1231
1260
|
return [
|
|
1232
1261
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1233
1262
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1234
1263
|
];
|
|
1235
1264
|
}).s("KeyspacesService", "ListTagsForResource", {}).n("KeyspacesClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1265
|
+
static {
|
|
1266
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1267
|
+
}
|
|
1236
1268
|
};
|
|
1237
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1238
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1239
1269
|
|
|
1240
1270
|
// src/commands/ListTypesCommand.ts
|
|
1241
1271
|
|
|
1242
1272
|
|
|
1243
1273
|
|
|
1244
|
-
var
|
|
1274
|
+
var ListTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1245
1275
|
return [
|
|
1246
1276
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1247
1277
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1248
1278
|
];
|
|
1249
1279
|
}).s("KeyspacesService", "ListTypes", {}).n("KeyspacesClient", "ListTypesCommand").f(void 0, void 0).ser(se_ListTypesCommand).de(de_ListTypesCommand).build() {
|
|
1280
|
+
static {
|
|
1281
|
+
__name(this, "ListTypesCommand");
|
|
1282
|
+
}
|
|
1250
1283
|
};
|
|
1251
|
-
__name(_ListTypesCommand, "ListTypesCommand");
|
|
1252
|
-
var ListTypesCommand = _ListTypesCommand;
|
|
1253
1284
|
|
|
1254
1285
|
// src/commands/RestoreTableCommand.ts
|
|
1255
1286
|
|
|
1256
1287
|
|
|
1257
1288
|
|
|
1258
|
-
var
|
|
1289
|
+
var RestoreTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1259
1290
|
return [
|
|
1260
1291
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1261
1292
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1262
1293
|
];
|
|
1263
1294
|
}).s("KeyspacesService", "RestoreTable", {}).n("KeyspacesClient", "RestoreTableCommand").f(void 0, void 0).ser(se_RestoreTableCommand).de(de_RestoreTableCommand).build() {
|
|
1295
|
+
static {
|
|
1296
|
+
__name(this, "RestoreTableCommand");
|
|
1297
|
+
}
|
|
1264
1298
|
};
|
|
1265
|
-
__name(_RestoreTableCommand, "RestoreTableCommand");
|
|
1266
|
-
var RestoreTableCommand = _RestoreTableCommand;
|
|
1267
1299
|
|
|
1268
1300
|
// src/commands/TagResourceCommand.ts
|
|
1269
1301
|
|
|
1270
1302
|
|
|
1271
1303
|
|
|
1272
|
-
var
|
|
1304
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1273
1305
|
return [
|
|
1274
1306
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1275
1307
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1276
1308
|
];
|
|
1277
1309
|
}).s("KeyspacesService", "TagResource", {}).n("KeyspacesClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1310
|
+
static {
|
|
1311
|
+
__name(this, "TagResourceCommand");
|
|
1312
|
+
}
|
|
1278
1313
|
};
|
|
1279
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1280
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1281
1314
|
|
|
1282
1315
|
// src/commands/UntagResourceCommand.ts
|
|
1283
1316
|
|
|
1284
1317
|
|
|
1285
1318
|
|
|
1286
|
-
var
|
|
1319
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1287
1320
|
return [
|
|
1288
1321
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1289
1322
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1290
1323
|
];
|
|
1291
1324
|
}).s("KeyspacesService", "UntagResource", {}).n("KeyspacesClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1325
|
+
static {
|
|
1326
|
+
__name(this, "UntagResourceCommand");
|
|
1327
|
+
}
|
|
1292
1328
|
};
|
|
1293
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1294
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1295
1329
|
|
|
1296
1330
|
// src/commands/UpdateKeyspaceCommand.ts
|
|
1297
1331
|
|
|
1298
1332
|
|
|
1299
1333
|
|
|
1300
|
-
var
|
|
1334
|
+
var UpdateKeyspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1301
1335
|
return [
|
|
1302
1336
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1303
1337
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1304
1338
|
];
|
|
1305
1339
|
}).s("KeyspacesService", "UpdateKeyspace", {}).n("KeyspacesClient", "UpdateKeyspaceCommand").f(void 0, void 0).ser(se_UpdateKeyspaceCommand).de(de_UpdateKeyspaceCommand).build() {
|
|
1340
|
+
static {
|
|
1341
|
+
__name(this, "UpdateKeyspaceCommand");
|
|
1342
|
+
}
|
|
1306
1343
|
};
|
|
1307
|
-
__name(_UpdateKeyspaceCommand, "UpdateKeyspaceCommand");
|
|
1308
|
-
var UpdateKeyspaceCommand = _UpdateKeyspaceCommand;
|
|
1309
1344
|
|
|
1310
1345
|
// src/commands/UpdateTableCommand.ts
|
|
1311
1346
|
|
|
1312
1347
|
|
|
1313
1348
|
|
|
1314
|
-
var
|
|
1349
|
+
var UpdateTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1315
1350
|
return [
|
|
1316
1351
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1317
1352
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1318
1353
|
];
|
|
1319
1354
|
}).s("KeyspacesService", "UpdateTable", {}).n("KeyspacesClient", "UpdateTableCommand").f(void 0, void 0).ser(se_UpdateTableCommand).de(de_UpdateTableCommand).build() {
|
|
1355
|
+
static {
|
|
1356
|
+
__name(this, "UpdateTableCommand");
|
|
1357
|
+
}
|
|
1320
1358
|
};
|
|
1321
|
-
__name(_UpdateTableCommand, "UpdateTableCommand");
|
|
1322
|
-
var UpdateTableCommand = _UpdateTableCommand;
|
|
1323
1359
|
|
|
1324
1360
|
// src/Keyspaces.ts
|
|
1325
1361
|
var commands = {
|
|
@@ -1343,10 +1379,11 @@ var commands = {
|
|
|
1343
1379
|
UpdateKeyspaceCommand,
|
|
1344
1380
|
UpdateTableCommand
|
|
1345
1381
|
};
|
|
1346
|
-
var
|
|
1382
|
+
var Keyspaces = class extends KeyspacesClient {
|
|
1383
|
+
static {
|
|
1384
|
+
__name(this, "Keyspaces");
|
|
1385
|
+
}
|
|
1347
1386
|
};
|
|
1348
|
-
__name(_Keyspaces, "Keyspaces");
|
|
1349
|
-
var Keyspaces = _Keyspaces;
|
|
1350
1387
|
(0, import_smithy_client.createAggregatedClient)(commands, Keyspaces);
|
|
1351
1388
|
|
|
1352
1389
|
// src/pagination/ListKeyspacesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class KeyspacesClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { KeyspacesServiceException as __BaseException } from "./KeyspacesServiceException";
|
|
2
2
|
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "AccessDeniedException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "AccessDeniedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -23,14 +23,14 @@ export const SortOrder = {
|
|
|
23
23
|
DESC: "DESC",
|
|
24
24
|
};
|
|
25
25
|
export class ConflictException extends __BaseException {
|
|
26
|
+
name = "ConflictException";
|
|
27
|
+
$fault = "client";
|
|
26
28
|
constructor(opts) {
|
|
27
29
|
super({
|
|
28
30
|
name: "ConflictException",
|
|
29
31
|
$fault: "client",
|
|
30
32
|
...opts,
|
|
31
33
|
});
|
|
32
|
-
this.name = "ConflictException";
|
|
33
|
-
this.$fault = "client";
|
|
34
34
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -39,38 +39,38 @@ export const Rs = {
|
|
|
39
39
|
SINGLE_REGION: "SINGLE_REGION",
|
|
40
40
|
};
|
|
41
41
|
export class InternalServerException extends __BaseException {
|
|
42
|
+
name = "InternalServerException";
|
|
43
|
+
$fault = "server";
|
|
42
44
|
constructor(opts) {
|
|
43
45
|
super({
|
|
44
46
|
name: "InternalServerException",
|
|
45
47
|
$fault: "server",
|
|
46
48
|
...opts,
|
|
47
49
|
});
|
|
48
|
-
this.name = "InternalServerException";
|
|
49
|
-
this.$fault = "server";
|
|
50
50
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
54
|
+
name = "ServiceQuotaExceededException";
|
|
55
|
+
$fault = "client";
|
|
54
56
|
constructor(opts) {
|
|
55
57
|
super({
|
|
56
58
|
name: "ServiceQuotaExceededException",
|
|
57
59
|
$fault: "client",
|
|
58
60
|
...opts,
|
|
59
61
|
});
|
|
60
|
-
this.name = "ServiceQuotaExceededException";
|
|
61
|
-
this.$fault = "client";
|
|
62
62
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
export class ValidationException extends __BaseException {
|
|
66
|
+
name = "ValidationException";
|
|
67
|
+
$fault = "client";
|
|
66
68
|
constructor(opts) {
|
|
67
69
|
super({
|
|
68
70
|
name: "ValidationException",
|
|
69
71
|
$fault: "client",
|
|
70
72
|
...opts,
|
|
71
73
|
});
|
|
72
|
-
this.name = "ValidationException";
|
|
73
|
-
this.$fault = "client";
|
|
74
74
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -86,14 +86,15 @@ export const TimeToLiveStatus = {
|
|
|
86
86
|
ENABLED: "ENABLED",
|
|
87
87
|
};
|
|
88
88
|
export class ResourceNotFoundException extends __BaseException {
|
|
89
|
+
name = "ResourceNotFoundException";
|
|
90
|
+
$fault = "client";
|
|
91
|
+
resourceArn;
|
|
89
92
|
constructor(opts) {
|
|
90
93
|
super({
|
|
91
94
|
name: "ResourceNotFoundException",
|
|
92
95
|
$fault: "client",
|
|
93
96
|
...opts,
|
|
94
97
|
});
|
|
95
|
-
this.name = "ResourceNotFoundException";
|
|
96
|
-
this.$fault = "client";
|
|
97
98
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
98
99
|
this.resourceArn = opts.resourceArn;
|
|
99
100
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: KeyspacesClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.723.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,56 +20,56 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|