@aws-sdk/client-keyspaces 3.987.0 → 3.989.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 +38 -867
- package/dist-cjs/models/KeyspacesServiceException.js +12 -0
- package/dist-cjs/models/errors.js +84 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +680 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +51 -45
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var KeyspacesServiceException = require('./models/KeyspacesServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,753 +113,6 @@ class KeyspacesClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class KeyspacesServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, KeyspacesServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends KeyspacesServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends KeyspacesServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ConflictException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InternalServerException extends KeyspacesServiceException {
|
|
145
|
-
name = "InternalServerException";
|
|
146
|
-
$fault = "server";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "InternalServerException",
|
|
150
|
-
$fault: "server",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ServiceQuotaExceededException extends KeyspacesServiceException {
|
|
157
|
-
name = "ServiceQuotaExceededException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ServiceQuotaExceededException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends KeyspacesServiceException {
|
|
169
|
-
name = "ValidationException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ValidationException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ResourceNotFoundException extends KeyspacesServiceException {
|
|
181
|
-
name = "ResourceNotFoundException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
resourceArn;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ResourceNotFoundException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
191
|
-
this.resourceArn = opts.resourceArn;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
const _ADE = "AccessDeniedException";
|
|
196
|
-
const _ASP = "AutoScalingPolicy";
|
|
197
|
-
const _ASS = "AutoScalingSettings";
|
|
198
|
-
const _ASSu = "AutoScalingSpecification";
|
|
199
|
-
const _C = "Comment";
|
|
200
|
-
const _CD = "ColumnDefinition";
|
|
201
|
-
const _CDL = "ColumnDefinitionList";
|
|
202
|
-
const _CE = "ConflictException";
|
|
203
|
-
const _CK = "ClusteringKey";
|
|
204
|
-
const _CKL = "ClusteringKeyList";
|
|
205
|
-
const _CKR = "CreateKeyspaceRequest";
|
|
206
|
-
const _CKRr = "CreateKeyspaceResponse";
|
|
207
|
-
const _CKr = "CreateKeyspace";
|
|
208
|
-
const _CS = "CapacitySpecification";
|
|
209
|
-
const _CSS = "CapacitySpecificationSummary";
|
|
210
|
-
const _CSSd = "CdcSpecificationSummary";
|
|
211
|
-
const _CST = "ClientSideTimestamps";
|
|
212
|
-
const _CSd = "CdcSpecification";
|
|
213
|
-
const _CT = "CreateTable";
|
|
214
|
-
const _CTR = "CreateTableRequest";
|
|
215
|
-
const _CTRr = "CreateTableResponse";
|
|
216
|
-
const _CTRre = "CreateTypeRequest";
|
|
217
|
-
const _CTRrea = "CreateTypeResponse";
|
|
218
|
-
const _CTr = "CreateType";
|
|
219
|
-
const _DK = "DeleteKeyspace";
|
|
220
|
-
const _DKR = "DeleteKeyspaceRequest";
|
|
221
|
-
const _DKRe = "DeleteKeyspaceResponse";
|
|
222
|
-
const _DT = "DeleteTable";
|
|
223
|
-
const _DTR = "DeleteTableRequest";
|
|
224
|
-
const _DTRe = "DeleteTableResponse";
|
|
225
|
-
const _DTRel = "DeleteTypeRequest";
|
|
226
|
-
const _DTRele = "DeleteTypeResponse";
|
|
227
|
-
const _DTe = "DeleteType";
|
|
228
|
-
const _ES = "EncryptionSpecification";
|
|
229
|
-
const _FD = "FieldDefinition";
|
|
230
|
-
const _FL = "FieldList";
|
|
231
|
-
const _GK = "GetKeyspace";
|
|
232
|
-
const _GKR = "GetKeyspaceRequest";
|
|
233
|
-
const _GKRe = "GetKeyspaceResponse";
|
|
234
|
-
const _GT = "GetTable";
|
|
235
|
-
const _GTASS = "GetTableAutoScalingSettings";
|
|
236
|
-
const _GTASSR = "GetTableAutoScalingSettingsRequest";
|
|
237
|
-
const _GTASSRe = "GetTableAutoScalingSettingsResponse";
|
|
238
|
-
const _GTR = "GetTableRequest";
|
|
239
|
-
const _GTRe = "GetTableResponse";
|
|
240
|
-
const _GTRet = "GetTypeRequest";
|
|
241
|
-
const _GTRety = "GetTypeResponse";
|
|
242
|
-
const _GTe = "GetType";
|
|
243
|
-
const _ISE = "InternalServerException";
|
|
244
|
-
const _KS = "KeyspaceSummary";
|
|
245
|
-
const _KSL = "KeyspaceSummaryList";
|
|
246
|
-
const _LK = "ListKeyspaces";
|
|
247
|
-
const _LKR = "ListKeyspacesRequest";
|
|
248
|
-
const _LKRi = "ListKeyspacesResponse";
|
|
249
|
-
const _LT = "ListTables";
|
|
250
|
-
const _LTFR = "ListTagsForResource";
|
|
251
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
252
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
253
|
-
const _LTR = "ListTablesRequest";
|
|
254
|
-
const _LTRi = "ListTablesResponse";
|
|
255
|
-
const _LTRis = "ListTypesRequest";
|
|
256
|
-
const _LTRist = "ListTypesResponse";
|
|
257
|
-
const _LTi = "ListTypes";
|
|
258
|
-
const _PITR = "PointInTimeRecovery";
|
|
259
|
-
const _PITRS = "PointInTimeRecoverySummary";
|
|
260
|
-
const _PK = "PartitionKey";
|
|
261
|
-
const _PKL = "PartitionKeyList";
|
|
262
|
-
const _RASS = "ReplicaAutoScalingSpecification";
|
|
263
|
-
const _RASSL = "ReplicaAutoScalingSpecificationList";
|
|
264
|
-
const _RGS = "ReplicationGroupStatus";
|
|
265
|
-
const _RGSL = "ReplicationGroupStatusList";
|
|
266
|
-
const _RNFE = "ResourceNotFoundException";
|
|
267
|
-
const _RS = "ReplicaSpecification";
|
|
268
|
-
const _RSL = "ReplicaSpecificationList";
|
|
269
|
-
const _RSS = "ReplicaSpecificationSummary";
|
|
270
|
-
const _RSSL = "ReplicaSpecificationSummaryList";
|
|
271
|
-
const _RSe = "ReplicationSpecification";
|
|
272
|
-
const _RT = "RestoreTable";
|
|
273
|
-
const _RTR = "RestoreTableRequest";
|
|
274
|
-
const _RTRe = "RestoreTableResponse";
|
|
275
|
-
const _SC = "StaticColumn";
|
|
276
|
-
const _SCL = "StaticColumnList";
|
|
277
|
-
const _SD = "SchemaDefinition";
|
|
278
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
279
|
-
const _T = "Tag";
|
|
280
|
-
const _TL = "TagList";
|
|
281
|
-
const _TR = "TagResource";
|
|
282
|
-
const _TRR = "TagResourceRequest";
|
|
283
|
-
const _TRRa = "TagResourceResponse";
|
|
284
|
-
const _TS = "TableSummary";
|
|
285
|
-
const _TSL = "TableSummaryList";
|
|
286
|
-
const _TTL = "TimeToLive";
|
|
287
|
-
const _TTSPC = "TargetTrackingScalingPolicyConfiguration";
|
|
288
|
-
const _UK = "UpdateKeyspace";
|
|
289
|
-
const _UKR = "UpdateKeyspaceRequest";
|
|
290
|
-
const _UKRp = "UpdateKeyspaceResponse";
|
|
291
|
-
const _UR = "UntagResource";
|
|
292
|
-
const _URR = "UntagResourceRequest";
|
|
293
|
-
const _URRn = "UntagResourceResponse";
|
|
294
|
-
const _UT = "UpdateTable";
|
|
295
|
-
const _UTR = "UpdateTableRequest";
|
|
296
|
-
const _UTRp = "UpdateTableResponse";
|
|
297
|
-
const _VE = "ValidationException";
|
|
298
|
-
const _WTS = "WarmThroughputSpecification";
|
|
299
|
-
const _WTSS = "WarmThroughputSpecificationSummary";
|
|
300
|
-
const _aC = "allColumns";
|
|
301
|
-
const _aCd = "addColumns";
|
|
302
|
-
const _aQE = "awsQueryError";
|
|
303
|
-
const _aSD = "autoScalingDisabled";
|
|
304
|
-
const _aSS = "autoScalingSpecification";
|
|
305
|
-
const _c = "client";
|
|
306
|
-
const _cK = "clusteringKeys";
|
|
307
|
-
const _cS = "capacitySpecification";
|
|
308
|
-
const _cSO = "capacitySpecificationOverride";
|
|
309
|
-
const _cST = "clientSideTimestamps";
|
|
310
|
-
const _cSd = "cdcSpecification";
|
|
311
|
-
const _cT = "creationTimestamp";
|
|
312
|
-
const _co = "comment";
|
|
313
|
-
const _dPT = "directParentTypes";
|
|
314
|
-
const _dRT = "directReferringTables";
|
|
315
|
-
const _dSI = "disableScaleIn";
|
|
316
|
-
const _dTTL = "defaultTimeToLive";
|
|
317
|
-
const _e = "error";
|
|
318
|
-
const _eRT = "earliestRestorableTimestamp";
|
|
319
|
-
const _eS = "encryptionSpecification";
|
|
320
|
-
const _eSO = "encryptionSpecificationOverride";
|
|
321
|
-
const _fD = "fieldDefinitions";
|
|
322
|
-
const _hE = "httpError";
|
|
323
|
-
const _k = "keyspaces";
|
|
324
|
-
const _kA = "keyspaceArn";
|
|
325
|
-
const _kKI = "kmsKeyIdentifier";
|
|
326
|
-
const _kN = "keyspaceName";
|
|
327
|
-
const _kS = "keyspaceStatus";
|
|
328
|
-
const _ke = "key";
|
|
329
|
-
const _lMT = "lastModifiedTimestamp";
|
|
330
|
-
const _lSA = "latestStreamArn";
|
|
331
|
-
const _lUTPPRT = "lastUpdateToPayPerRequestTimestamp";
|
|
332
|
-
const _m = "message";
|
|
333
|
-
const _mND = "maxNestingDepth";
|
|
334
|
-
const _mR = "maxResults";
|
|
335
|
-
const _mU = "minimumUnits";
|
|
336
|
-
const _mUa = "maximumUnits";
|
|
337
|
-
const _n = "name";
|
|
338
|
-
const _nT = "nextToken";
|
|
339
|
-
const _oB = "orderBy";
|
|
340
|
-
const _pITR = "pointInTimeRecovery";
|
|
341
|
-
const _pITRO = "pointInTimeRecoveryOverride";
|
|
342
|
-
const _pK = "partitionKeys";
|
|
343
|
-
const _pT = "propagateTags";
|
|
344
|
-
const _r = "region";
|
|
345
|
-
const _rA = "resourceArn";
|
|
346
|
-
const _rCAS = "readCapacityAutoScaling";
|
|
347
|
-
const _rCU = "readCapacityUnits";
|
|
348
|
-
const _rGS = "replicationGroupStatuses";
|
|
349
|
-
const _rL = "regionList";
|
|
350
|
-
const _rR = "replicationRegions";
|
|
351
|
-
const _rS = "replicationSpecification";
|
|
352
|
-
const _rSe = "replicaSpecifications";
|
|
353
|
-
const _rSep = "replicationStrategy";
|
|
354
|
-
const _rT = "restoreTimestamp";
|
|
355
|
-
const _rTARN = "restoredTableARN";
|
|
356
|
-
const _rUPS = "readUnitsPerSecond";
|
|
357
|
-
const _s = "status";
|
|
358
|
-
const _sC = "staticColumns";
|
|
359
|
-
const _sD = "schemaDefinition";
|
|
360
|
-
const _sIC = "scaleInCooldown";
|
|
361
|
-
const _sKN = "sourceKeyspaceName";
|
|
362
|
-
const _sOC = "scaleOutCooldown";
|
|
363
|
-
const _sP = "scalingPolicy";
|
|
364
|
-
const _sTN = "sourceTableName";
|
|
365
|
-
const _se = "server";
|
|
366
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.keyspaces";
|
|
367
|
-
const _t = "tags";
|
|
368
|
-
const _tKN = "targetKeyspaceName";
|
|
369
|
-
const _tM = "throughputMode";
|
|
370
|
-
const _tN = "tableName";
|
|
371
|
-
const _tNy = "typeName";
|
|
372
|
-
const _tO = "tagsOverride";
|
|
373
|
-
const _tRP = "tablesReplicationProgress";
|
|
374
|
-
const _tTN = "targetTableName";
|
|
375
|
-
const _tTSPC = "targetTrackingScalingPolicyConfiguration";
|
|
376
|
-
const _tV = "targetValue";
|
|
377
|
-
const _ta = "tables";
|
|
378
|
-
const _tt = "ttl";
|
|
379
|
-
const _ty = "type";
|
|
380
|
-
const _typ = "types";
|
|
381
|
-
const _v = "value";
|
|
382
|
-
const _vT = "viewType";
|
|
383
|
-
const _wCAS = "writeCapacityAutoScaling";
|
|
384
|
-
const _wCU = "writeCapacityUnits";
|
|
385
|
-
const _wTS = "warmThroughputSpecification";
|
|
386
|
-
const _wUPS = "writeUnitsPerSecond";
|
|
387
|
-
const n0 = "com.amazonaws.keyspaces";
|
|
388
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
389
|
-
{ [_aQE]: [`AccessDeniedException`, 403], [_e]: _c, [_hE]: 403 },
|
|
390
|
-
[_m],
|
|
391
|
-
[0]
|
|
392
|
-
];
|
|
393
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
394
|
-
var AutoScalingPolicy$ = [3, n0, _ASP,
|
|
395
|
-
0,
|
|
396
|
-
[_tTSPC],
|
|
397
|
-
[() => TargetTrackingScalingPolicyConfiguration$]
|
|
398
|
-
];
|
|
399
|
-
var AutoScalingSettings$ = [3, n0, _ASS,
|
|
400
|
-
0,
|
|
401
|
-
[_aSD, _mU, _mUa, _sP],
|
|
402
|
-
[2, 1, 1, () => AutoScalingPolicy$]
|
|
403
|
-
];
|
|
404
|
-
var AutoScalingSpecification$ = [3, n0, _ASSu,
|
|
405
|
-
0,
|
|
406
|
-
[_wCAS, _rCAS],
|
|
407
|
-
[() => AutoScalingSettings$, () => AutoScalingSettings$]
|
|
408
|
-
];
|
|
409
|
-
var CapacitySpecification$ = [3, n0, _CS,
|
|
410
|
-
0,
|
|
411
|
-
[_tM, _rCU, _wCU],
|
|
412
|
-
[0, 1, 1], 1
|
|
413
|
-
];
|
|
414
|
-
var CapacitySpecificationSummary$ = [3, n0, _CSS,
|
|
415
|
-
0,
|
|
416
|
-
[_tM, _rCU, _wCU, _lUTPPRT],
|
|
417
|
-
[0, 1, 1, 4], 1
|
|
418
|
-
];
|
|
419
|
-
var CdcSpecification$ = [3, n0, _CSd,
|
|
420
|
-
0,
|
|
421
|
-
[_s, _vT, _t, _pT],
|
|
422
|
-
[0, 0, () => TagList, 0], 1
|
|
423
|
-
];
|
|
424
|
-
var CdcSpecificationSummary$ = [3, n0, _CSSd,
|
|
425
|
-
0,
|
|
426
|
-
[_s, _vT],
|
|
427
|
-
[0, 0], 1
|
|
428
|
-
];
|
|
429
|
-
var ClientSideTimestamps$ = [3, n0, _CST,
|
|
430
|
-
0,
|
|
431
|
-
[_s],
|
|
432
|
-
[0], 1
|
|
433
|
-
];
|
|
434
|
-
var ClusteringKey$ = [3, n0, _CK,
|
|
435
|
-
0,
|
|
436
|
-
[_n, _oB],
|
|
437
|
-
[0, 0], 2
|
|
438
|
-
];
|
|
439
|
-
var ColumnDefinition$ = [3, n0, _CD,
|
|
440
|
-
0,
|
|
441
|
-
[_n, _ty],
|
|
442
|
-
[0, 0], 2
|
|
443
|
-
];
|
|
444
|
-
var Comment$ = [3, n0, _C,
|
|
445
|
-
0,
|
|
446
|
-
[_m],
|
|
447
|
-
[0], 1
|
|
448
|
-
];
|
|
449
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
450
|
-
{ [_aQE]: [`ConflictException`, 409], [_e]: _c, [_hE]: 409 },
|
|
451
|
-
[_m],
|
|
452
|
-
[0]
|
|
453
|
-
];
|
|
454
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
455
|
-
var CreateKeyspaceRequest$ = [3, n0, _CKR,
|
|
456
|
-
0,
|
|
457
|
-
[_kN, _t, _rS],
|
|
458
|
-
[0, () => TagList, () => ReplicationSpecification$], 1
|
|
459
|
-
];
|
|
460
|
-
var CreateKeyspaceResponse$ = [3, n0, _CKRr,
|
|
461
|
-
0,
|
|
462
|
-
[_rA],
|
|
463
|
-
[0], 1
|
|
464
|
-
];
|
|
465
|
-
var CreateTableRequest$ = [3, n0, _CTR,
|
|
466
|
-
0,
|
|
467
|
-
[_kN, _tN, _sD, _co, _cS, _eS, _pITR, _tt, _dTTL, _t, _cST, _aSS, _rSe, _cSd, _wTS],
|
|
468
|
-
[0, 0, () => SchemaDefinition$, () => Comment$, () => CapacitySpecification$, () => EncryptionSpecification$, () => PointInTimeRecovery$, () => TimeToLive$, 1, () => TagList, () => ClientSideTimestamps$, () => AutoScalingSpecification$, () => ReplicaSpecificationList, () => CdcSpecification$, () => WarmThroughputSpecification$], 3
|
|
469
|
-
];
|
|
470
|
-
var CreateTableResponse$ = [3, n0, _CTRr,
|
|
471
|
-
0,
|
|
472
|
-
[_rA],
|
|
473
|
-
[0], 1
|
|
474
|
-
];
|
|
475
|
-
var CreateTypeRequest$ = [3, n0, _CTRre,
|
|
476
|
-
0,
|
|
477
|
-
[_kN, _tNy, _fD],
|
|
478
|
-
[0, 0, () => FieldList], 3
|
|
479
|
-
];
|
|
480
|
-
var CreateTypeResponse$ = [3, n0, _CTRrea,
|
|
481
|
-
0,
|
|
482
|
-
[_kA, _tNy],
|
|
483
|
-
[0, 0], 2
|
|
484
|
-
];
|
|
485
|
-
var DeleteKeyspaceRequest$ = [3, n0, _DKR,
|
|
486
|
-
0,
|
|
487
|
-
[_kN],
|
|
488
|
-
[0], 1
|
|
489
|
-
];
|
|
490
|
-
var DeleteKeyspaceResponse$ = [3, n0, _DKRe,
|
|
491
|
-
0,
|
|
492
|
-
[],
|
|
493
|
-
[]
|
|
494
|
-
];
|
|
495
|
-
var DeleteTableRequest$ = [3, n0, _DTR,
|
|
496
|
-
0,
|
|
497
|
-
[_kN, _tN],
|
|
498
|
-
[0, 0], 2
|
|
499
|
-
];
|
|
500
|
-
var DeleteTableResponse$ = [3, n0, _DTRe,
|
|
501
|
-
0,
|
|
502
|
-
[],
|
|
503
|
-
[]
|
|
504
|
-
];
|
|
505
|
-
var DeleteTypeRequest$ = [3, n0, _DTRel,
|
|
506
|
-
0,
|
|
507
|
-
[_kN, _tNy],
|
|
508
|
-
[0, 0], 2
|
|
509
|
-
];
|
|
510
|
-
var DeleteTypeResponse$ = [3, n0, _DTRele,
|
|
511
|
-
0,
|
|
512
|
-
[_kA, _tNy],
|
|
513
|
-
[0, 0], 2
|
|
514
|
-
];
|
|
515
|
-
var EncryptionSpecification$ = [3, n0, _ES,
|
|
516
|
-
0,
|
|
517
|
-
[_ty, _kKI],
|
|
518
|
-
[0, 0], 1
|
|
519
|
-
];
|
|
520
|
-
var FieldDefinition$ = [3, n0, _FD,
|
|
521
|
-
0,
|
|
522
|
-
[_n, _ty],
|
|
523
|
-
[0, 0], 2
|
|
524
|
-
];
|
|
525
|
-
var GetKeyspaceRequest$ = [3, n0, _GKR,
|
|
526
|
-
0,
|
|
527
|
-
[_kN],
|
|
528
|
-
[0], 1
|
|
529
|
-
];
|
|
530
|
-
var GetKeyspaceResponse$ = [3, n0, _GKRe,
|
|
531
|
-
0,
|
|
532
|
-
[_kN, _rA, _rSep, _rR, _rGS],
|
|
533
|
-
[0, 0, 0, 64 | 0, () => ReplicationGroupStatusList], 3
|
|
534
|
-
];
|
|
535
|
-
var GetTableAutoScalingSettingsRequest$ = [3, n0, _GTASSR,
|
|
536
|
-
0,
|
|
537
|
-
[_kN, _tN],
|
|
538
|
-
[0, 0], 2
|
|
539
|
-
];
|
|
540
|
-
var GetTableAutoScalingSettingsResponse$ = [3, n0, _GTASSRe,
|
|
541
|
-
0,
|
|
542
|
-
[_kN, _tN, _rA, _aSS, _rSe],
|
|
543
|
-
[0, 0, 0, () => AutoScalingSpecification$, () => ReplicaAutoScalingSpecificationList], 3
|
|
544
|
-
];
|
|
545
|
-
var GetTableRequest$ = [3, n0, _GTR,
|
|
546
|
-
0,
|
|
547
|
-
[_kN, _tN],
|
|
548
|
-
[0, 0], 2
|
|
549
|
-
];
|
|
550
|
-
var GetTableResponse$ = [3, n0, _GTRe,
|
|
551
|
-
0,
|
|
552
|
-
[_kN, _tN, _rA, _cT, _s, _sD, _cS, _eS, _pITR, _tt, _dTTL, _co, _cST, _rSe, _lSA, _cSd, _wTS],
|
|
553
|
-
[0, 0, 0, 4, 0, () => SchemaDefinition$, () => CapacitySpecificationSummary$, () => EncryptionSpecification$, () => PointInTimeRecoverySummary$, () => TimeToLive$, 1, () => Comment$, () => ClientSideTimestamps$, () => ReplicaSpecificationSummaryList, 0, () => CdcSpecificationSummary$, () => WarmThroughputSpecificationSummary$], 3
|
|
554
|
-
];
|
|
555
|
-
var GetTypeRequest$ = [3, n0, _GTRet,
|
|
556
|
-
0,
|
|
557
|
-
[_kN, _tNy],
|
|
558
|
-
[0, 0], 2
|
|
559
|
-
];
|
|
560
|
-
var GetTypeResponse$ = [3, n0, _GTRety,
|
|
561
|
-
0,
|
|
562
|
-
[_kN, _tNy, _kA, _fD, _lMT, _s, _dRT, _dPT, _mND],
|
|
563
|
-
[0, 0, 0, () => FieldList, 4, 0, 64 | 0, 64 | 0, 1], 3
|
|
564
|
-
];
|
|
565
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
566
|
-
{ [_aQE]: [`InternalServerException`, 500], [_e]: _se, [_hE]: 500 },
|
|
567
|
-
[_m],
|
|
568
|
-
[0]
|
|
569
|
-
];
|
|
570
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
571
|
-
var KeyspaceSummary$ = [3, n0, _KS,
|
|
572
|
-
0,
|
|
573
|
-
[_kN, _rA, _rSep, _rR],
|
|
574
|
-
[0, 0, 0, 64 | 0], 3
|
|
575
|
-
];
|
|
576
|
-
var ListKeyspacesRequest$ = [3, n0, _LKR,
|
|
577
|
-
0,
|
|
578
|
-
[_nT, _mR],
|
|
579
|
-
[0, 1]
|
|
580
|
-
];
|
|
581
|
-
var ListKeyspacesResponse$ = [3, n0, _LKRi,
|
|
582
|
-
0,
|
|
583
|
-
[_k, _nT],
|
|
584
|
-
[() => KeyspaceSummaryList, 0], 1
|
|
585
|
-
];
|
|
586
|
-
var ListTablesRequest$ = [3, n0, _LTR,
|
|
587
|
-
0,
|
|
588
|
-
[_kN, _nT, _mR],
|
|
589
|
-
[0, 0, 1], 1
|
|
590
|
-
];
|
|
591
|
-
var ListTablesResponse$ = [3, n0, _LTRi,
|
|
592
|
-
0,
|
|
593
|
-
[_nT, _ta],
|
|
594
|
-
[0, () => TableSummaryList]
|
|
595
|
-
];
|
|
596
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
597
|
-
0,
|
|
598
|
-
[_rA, _nT, _mR],
|
|
599
|
-
[0, 0, 1], 1
|
|
600
|
-
];
|
|
601
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
602
|
-
0,
|
|
603
|
-
[_nT, _t],
|
|
604
|
-
[0, () => TagList]
|
|
605
|
-
];
|
|
606
|
-
var ListTypesRequest$ = [3, n0, _LTRis,
|
|
607
|
-
0,
|
|
608
|
-
[_kN, _nT, _mR],
|
|
609
|
-
[0, 0, 1], 1
|
|
610
|
-
];
|
|
611
|
-
var ListTypesResponse$ = [3, n0, _LTRist,
|
|
612
|
-
0,
|
|
613
|
-
[_typ, _nT],
|
|
614
|
-
[64 | 0, 0], 1
|
|
615
|
-
];
|
|
616
|
-
var PartitionKey$ = [3, n0, _PK,
|
|
617
|
-
0,
|
|
618
|
-
[_n],
|
|
619
|
-
[0], 1
|
|
620
|
-
];
|
|
621
|
-
var PointInTimeRecovery$ = [3, n0, _PITR,
|
|
622
|
-
0,
|
|
623
|
-
[_s],
|
|
624
|
-
[0], 1
|
|
625
|
-
];
|
|
626
|
-
var PointInTimeRecoverySummary$ = [3, n0, _PITRS,
|
|
627
|
-
0,
|
|
628
|
-
[_s, _eRT],
|
|
629
|
-
[0, 4], 1
|
|
630
|
-
];
|
|
631
|
-
var ReplicaAutoScalingSpecification$ = [3, n0, _RASS,
|
|
632
|
-
0,
|
|
633
|
-
[_r, _aSS],
|
|
634
|
-
[0, () => AutoScalingSpecification$]
|
|
635
|
-
];
|
|
636
|
-
var ReplicaSpecification$ = [3, n0, _RS,
|
|
637
|
-
0,
|
|
638
|
-
[_r, _rCU, _rCAS],
|
|
639
|
-
[0, 1, () => AutoScalingSettings$], 1
|
|
640
|
-
];
|
|
641
|
-
var ReplicaSpecificationSummary$ = [3, n0, _RSS,
|
|
642
|
-
0,
|
|
643
|
-
[_r, _s, _cS, _wTS],
|
|
644
|
-
[0, 0, () => CapacitySpecificationSummary$, () => WarmThroughputSpecificationSummary$]
|
|
645
|
-
];
|
|
646
|
-
var ReplicationGroupStatus$ = [3, n0, _RGS,
|
|
647
|
-
0,
|
|
648
|
-
[_r, _kS, _tRP],
|
|
649
|
-
[0, 0, 0], 2
|
|
650
|
-
];
|
|
651
|
-
var ReplicationSpecification$ = [3, n0, _RSe,
|
|
652
|
-
0,
|
|
653
|
-
[_rSep, _rL],
|
|
654
|
-
[0, 64 | 0], 1
|
|
655
|
-
];
|
|
656
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
657
|
-
{ [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
658
|
-
[_m, _rA],
|
|
659
|
-
[0, 0]
|
|
660
|
-
];
|
|
661
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
662
|
-
var RestoreTableRequest$ = [3, n0, _RTR,
|
|
663
|
-
0,
|
|
664
|
-
[_sKN, _sTN, _tKN, _tTN, _rT, _cSO, _eSO, _pITRO, _tO, _aSS, _rSe],
|
|
665
|
-
[0, 0, 0, 0, 4, () => CapacitySpecification$, () => EncryptionSpecification$, () => PointInTimeRecovery$, () => TagList, () => AutoScalingSpecification$, () => ReplicaSpecificationList], 4
|
|
666
|
-
];
|
|
667
|
-
var RestoreTableResponse$ = [3, n0, _RTRe,
|
|
668
|
-
0,
|
|
669
|
-
[_rTARN],
|
|
670
|
-
[0], 1
|
|
671
|
-
];
|
|
672
|
-
var SchemaDefinition$ = [3, n0, _SD,
|
|
673
|
-
0,
|
|
674
|
-
[_aC, _pK, _cK, _sC],
|
|
675
|
-
[() => ColumnDefinitionList, () => PartitionKeyList, () => ClusteringKeyList, () => StaticColumnList], 2
|
|
676
|
-
];
|
|
677
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
678
|
-
{ [_aQE]: [`ServiceQuotaExceededException`, 402], [_e]: _c, [_hE]: 402 },
|
|
679
|
-
[_m],
|
|
680
|
-
[0]
|
|
681
|
-
];
|
|
682
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
683
|
-
var StaticColumn$ = [3, n0, _SC,
|
|
684
|
-
0,
|
|
685
|
-
[_n],
|
|
686
|
-
[0], 1
|
|
687
|
-
];
|
|
688
|
-
var TableSummary$ = [3, n0, _TS,
|
|
689
|
-
0,
|
|
690
|
-
[_kN, _tN, _rA],
|
|
691
|
-
[0, 0, 0], 3
|
|
692
|
-
];
|
|
693
|
-
var Tag$ = [3, n0, _T,
|
|
694
|
-
0,
|
|
695
|
-
[_ke, _v],
|
|
696
|
-
[0, 0], 2
|
|
697
|
-
];
|
|
698
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
699
|
-
0,
|
|
700
|
-
[_rA, _t],
|
|
701
|
-
[0, () => TagList], 2
|
|
702
|
-
];
|
|
703
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
704
|
-
0,
|
|
705
|
-
[],
|
|
706
|
-
[]
|
|
707
|
-
];
|
|
708
|
-
var TargetTrackingScalingPolicyConfiguration$ = [3, n0, _TTSPC,
|
|
709
|
-
0,
|
|
710
|
-
[_tV, _dSI, _sIC, _sOC],
|
|
711
|
-
[1, 2, 1, 1], 1
|
|
712
|
-
];
|
|
713
|
-
var TimeToLive$ = [3, n0, _TTL,
|
|
714
|
-
0,
|
|
715
|
-
[_s],
|
|
716
|
-
[0], 1
|
|
717
|
-
];
|
|
718
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
719
|
-
0,
|
|
720
|
-
[_rA, _t],
|
|
721
|
-
[0, () => TagList], 2
|
|
722
|
-
];
|
|
723
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
724
|
-
0,
|
|
725
|
-
[],
|
|
726
|
-
[]
|
|
727
|
-
];
|
|
728
|
-
var UpdateKeyspaceRequest$ = [3, n0, _UKR,
|
|
729
|
-
0,
|
|
730
|
-
[_kN, _rS, _cST],
|
|
731
|
-
[0, () => ReplicationSpecification$, () => ClientSideTimestamps$], 2
|
|
732
|
-
];
|
|
733
|
-
var UpdateKeyspaceResponse$ = [3, n0, _UKRp,
|
|
734
|
-
0,
|
|
735
|
-
[_rA],
|
|
736
|
-
[0], 1
|
|
737
|
-
];
|
|
738
|
-
var UpdateTableRequest$ = [3, n0, _UTR,
|
|
739
|
-
0,
|
|
740
|
-
[_kN, _tN, _aCd, _cS, _eS, _pITR, _tt, _dTTL, _cST, _aSS, _rSe, _cSd, _wTS],
|
|
741
|
-
[0, 0, () => ColumnDefinitionList, () => CapacitySpecification$, () => EncryptionSpecification$, () => PointInTimeRecovery$, () => TimeToLive$, 1, () => ClientSideTimestamps$, () => AutoScalingSpecification$, () => ReplicaSpecificationList, () => CdcSpecification$, () => WarmThroughputSpecification$], 2
|
|
742
|
-
];
|
|
743
|
-
var UpdateTableResponse$ = [3, n0, _UTRp,
|
|
744
|
-
0,
|
|
745
|
-
[_rA],
|
|
746
|
-
[0], 1
|
|
747
|
-
];
|
|
748
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
749
|
-
{ [_aQE]: [`ValidationException`, 400], [_e]: _c },
|
|
750
|
-
[_m],
|
|
751
|
-
[0]
|
|
752
|
-
];
|
|
753
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
754
|
-
var WarmThroughputSpecification$ = [3, n0, _WTS,
|
|
755
|
-
0,
|
|
756
|
-
[_rUPS, _wUPS],
|
|
757
|
-
[1, 1]
|
|
758
|
-
];
|
|
759
|
-
var WarmThroughputSpecificationSummary$ = [3, n0, _WTSS,
|
|
760
|
-
0,
|
|
761
|
-
[_rUPS, _wUPS, _s],
|
|
762
|
-
[1, 1, 0], 3
|
|
763
|
-
];
|
|
764
|
-
var KeyspacesServiceException$ = [-3, _sm, "KeyspacesServiceException", 0, [], []];
|
|
765
|
-
schema.TypeRegistry.for(_sm).registerError(KeyspacesServiceException$, KeyspacesServiceException);
|
|
766
|
-
var ClusteringKeyList = [1, n0, _CKL,
|
|
767
|
-
0, () => ClusteringKey$
|
|
768
|
-
];
|
|
769
|
-
var ColumnDefinitionList = [1, n0, _CDL,
|
|
770
|
-
0, () => ColumnDefinition$
|
|
771
|
-
];
|
|
772
|
-
var FieldList = [1, n0, _FL,
|
|
773
|
-
0, () => FieldDefinition$
|
|
774
|
-
];
|
|
775
|
-
var KeyspaceSummaryList = [1, n0, _KSL,
|
|
776
|
-
0, () => KeyspaceSummary$
|
|
777
|
-
];
|
|
778
|
-
var PartitionKeyList = [1, n0, _PKL,
|
|
779
|
-
0, () => PartitionKey$
|
|
780
|
-
];
|
|
781
|
-
var ReplicaAutoScalingSpecificationList = [1, n0, _RASSL,
|
|
782
|
-
0, () => ReplicaAutoScalingSpecification$
|
|
783
|
-
];
|
|
784
|
-
var ReplicaSpecificationList = [1, n0, _RSL,
|
|
785
|
-
0, () => ReplicaSpecification$
|
|
786
|
-
];
|
|
787
|
-
var ReplicaSpecificationSummaryList = [1, n0, _RSSL,
|
|
788
|
-
0, () => ReplicaSpecificationSummary$
|
|
789
|
-
];
|
|
790
|
-
var ReplicationGroupStatusList = [1, n0, _RGSL,
|
|
791
|
-
0, () => ReplicationGroupStatus$
|
|
792
|
-
];
|
|
793
|
-
var StaticColumnList = [1, n0, _SCL,
|
|
794
|
-
0, () => StaticColumn$
|
|
795
|
-
];
|
|
796
|
-
var TableSummaryList = [1, n0, _TSL,
|
|
797
|
-
0, () => TableSummary$
|
|
798
|
-
];
|
|
799
|
-
var TagList = [1, n0, _TL,
|
|
800
|
-
0, () => Tag$
|
|
801
|
-
];
|
|
802
|
-
var CreateKeyspace$ = [9, n0, _CKr,
|
|
803
|
-
0, () => CreateKeyspaceRequest$, () => CreateKeyspaceResponse$
|
|
804
|
-
];
|
|
805
|
-
var CreateTable$ = [9, n0, _CT,
|
|
806
|
-
0, () => CreateTableRequest$, () => CreateTableResponse$
|
|
807
|
-
];
|
|
808
|
-
var CreateType$ = [9, n0, _CTr,
|
|
809
|
-
0, () => CreateTypeRequest$, () => CreateTypeResponse$
|
|
810
|
-
];
|
|
811
|
-
var DeleteKeyspace$ = [9, n0, _DK,
|
|
812
|
-
0, () => DeleteKeyspaceRequest$, () => DeleteKeyspaceResponse$
|
|
813
|
-
];
|
|
814
|
-
var DeleteTable$ = [9, n0, _DT,
|
|
815
|
-
0, () => DeleteTableRequest$, () => DeleteTableResponse$
|
|
816
|
-
];
|
|
817
|
-
var DeleteType$ = [9, n0, _DTe,
|
|
818
|
-
0, () => DeleteTypeRequest$, () => DeleteTypeResponse$
|
|
819
|
-
];
|
|
820
|
-
var GetKeyspace$ = [9, n0, _GK,
|
|
821
|
-
0, () => GetKeyspaceRequest$, () => GetKeyspaceResponse$
|
|
822
|
-
];
|
|
823
|
-
var GetTable$ = [9, n0, _GT,
|
|
824
|
-
0, () => GetTableRequest$, () => GetTableResponse$
|
|
825
|
-
];
|
|
826
|
-
var GetTableAutoScalingSettings$ = [9, n0, _GTASS,
|
|
827
|
-
0, () => GetTableAutoScalingSettingsRequest$, () => GetTableAutoScalingSettingsResponse$
|
|
828
|
-
];
|
|
829
|
-
var GetType$ = [9, n0, _GTe,
|
|
830
|
-
0, () => GetTypeRequest$, () => GetTypeResponse$
|
|
831
|
-
];
|
|
832
|
-
var ListKeyspaces$ = [9, n0, _LK,
|
|
833
|
-
0, () => ListKeyspacesRequest$, () => ListKeyspacesResponse$
|
|
834
|
-
];
|
|
835
|
-
var ListTables$ = [9, n0, _LT,
|
|
836
|
-
0, () => ListTablesRequest$, () => ListTablesResponse$
|
|
837
|
-
];
|
|
838
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
839
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
840
|
-
];
|
|
841
|
-
var ListTypes$ = [9, n0, _LTi,
|
|
842
|
-
0, () => ListTypesRequest$, () => ListTypesResponse$
|
|
843
|
-
];
|
|
844
|
-
var RestoreTable$ = [9, n0, _RT,
|
|
845
|
-
0, () => RestoreTableRequest$, () => RestoreTableResponse$
|
|
846
|
-
];
|
|
847
|
-
var TagResource$ = [9, n0, _TR,
|
|
848
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
849
|
-
];
|
|
850
|
-
var UntagResource$ = [9, n0, _UR,
|
|
851
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
852
|
-
];
|
|
853
|
-
var UpdateKeyspace$ = [9, n0, _UK,
|
|
854
|
-
0, () => UpdateKeyspaceRequest$, () => UpdateKeyspaceResponse$
|
|
855
|
-
];
|
|
856
|
-
var UpdateTable$ = [9, n0, _UT,
|
|
857
|
-
0, () => UpdateTableRequest$, () => UpdateTableResponse$
|
|
858
|
-
];
|
|
859
|
-
|
|
860
116
|
class CreateKeyspaceCommand extends smithyClient.Command
|
|
861
117
|
.classBuilder()
|
|
862
118
|
.ep(commonParams)
|
|
@@ -865,7 +121,7 @@ class CreateKeyspaceCommand extends smithyClient.Command
|
|
|
865
121
|
})
|
|
866
122
|
.s("KeyspacesService", "CreateKeyspace", {})
|
|
867
123
|
.n("KeyspacesClient", "CreateKeyspaceCommand")
|
|
868
|
-
.sc(CreateKeyspace$)
|
|
124
|
+
.sc(schemas_0.CreateKeyspace$)
|
|
869
125
|
.build() {
|
|
870
126
|
}
|
|
871
127
|
|
|
@@ -877,7 +133,7 @@ class CreateTableCommand extends smithyClient.Command
|
|
|
877
133
|
})
|
|
878
134
|
.s("KeyspacesService", "CreateTable", {})
|
|
879
135
|
.n("KeyspacesClient", "CreateTableCommand")
|
|
880
|
-
.sc(CreateTable$)
|
|
136
|
+
.sc(schemas_0.CreateTable$)
|
|
881
137
|
.build() {
|
|
882
138
|
}
|
|
883
139
|
|
|
@@ -889,7 +145,7 @@ class CreateTypeCommand extends smithyClient.Command
|
|
|
889
145
|
})
|
|
890
146
|
.s("KeyspacesService", "CreateType", {})
|
|
891
147
|
.n("KeyspacesClient", "CreateTypeCommand")
|
|
892
|
-
.sc(CreateType$)
|
|
148
|
+
.sc(schemas_0.CreateType$)
|
|
893
149
|
.build() {
|
|
894
150
|
}
|
|
895
151
|
|
|
@@ -901,7 +157,7 @@ class DeleteKeyspaceCommand extends smithyClient.Command
|
|
|
901
157
|
})
|
|
902
158
|
.s("KeyspacesService", "DeleteKeyspace", {})
|
|
903
159
|
.n("KeyspacesClient", "DeleteKeyspaceCommand")
|
|
904
|
-
.sc(DeleteKeyspace$)
|
|
160
|
+
.sc(schemas_0.DeleteKeyspace$)
|
|
905
161
|
.build() {
|
|
906
162
|
}
|
|
907
163
|
|
|
@@ -913,7 +169,7 @@ class DeleteTableCommand extends smithyClient.Command
|
|
|
913
169
|
})
|
|
914
170
|
.s("KeyspacesService", "DeleteTable", {})
|
|
915
171
|
.n("KeyspacesClient", "DeleteTableCommand")
|
|
916
|
-
.sc(DeleteTable$)
|
|
172
|
+
.sc(schemas_0.DeleteTable$)
|
|
917
173
|
.build() {
|
|
918
174
|
}
|
|
919
175
|
|
|
@@ -925,7 +181,7 @@ class DeleteTypeCommand extends smithyClient.Command
|
|
|
925
181
|
})
|
|
926
182
|
.s("KeyspacesService", "DeleteType", {})
|
|
927
183
|
.n("KeyspacesClient", "DeleteTypeCommand")
|
|
928
|
-
.sc(DeleteType$)
|
|
184
|
+
.sc(schemas_0.DeleteType$)
|
|
929
185
|
.build() {
|
|
930
186
|
}
|
|
931
187
|
|
|
@@ -937,7 +193,7 @@ class GetKeyspaceCommand extends smithyClient.Command
|
|
|
937
193
|
})
|
|
938
194
|
.s("KeyspacesService", "GetKeyspace", {})
|
|
939
195
|
.n("KeyspacesClient", "GetKeyspaceCommand")
|
|
940
|
-
.sc(GetKeyspace$)
|
|
196
|
+
.sc(schemas_0.GetKeyspace$)
|
|
941
197
|
.build() {
|
|
942
198
|
}
|
|
943
199
|
|
|
@@ -949,7 +205,7 @@ class GetTableAutoScalingSettingsCommand extends smithyClient.Command
|
|
|
949
205
|
})
|
|
950
206
|
.s("KeyspacesService", "GetTableAutoScalingSettings", {})
|
|
951
207
|
.n("KeyspacesClient", "GetTableAutoScalingSettingsCommand")
|
|
952
|
-
.sc(GetTableAutoScalingSettings$)
|
|
208
|
+
.sc(schemas_0.GetTableAutoScalingSettings$)
|
|
953
209
|
.build() {
|
|
954
210
|
}
|
|
955
211
|
|
|
@@ -961,7 +217,7 @@ class GetTableCommand extends smithyClient.Command
|
|
|
961
217
|
})
|
|
962
218
|
.s("KeyspacesService", "GetTable", {})
|
|
963
219
|
.n("KeyspacesClient", "GetTableCommand")
|
|
964
|
-
.sc(GetTable$)
|
|
220
|
+
.sc(schemas_0.GetTable$)
|
|
965
221
|
.build() {
|
|
966
222
|
}
|
|
967
223
|
|
|
@@ -973,7 +229,7 @@ class GetTypeCommand extends smithyClient.Command
|
|
|
973
229
|
})
|
|
974
230
|
.s("KeyspacesService", "GetType", {})
|
|
975
231
|
.n("KeyspacesClient", "GetTypeCommand")
|
|
976
|
-
.sc(GetType$)
|
|
232
|
+
.sc(schemas_0.GetType$)
|
|
977
233
|
.build() {
|
|
978
234
|
}
|
|
979
235
|
|
|
@@ -985,7 +241,7 @@ class ListKeyspacesCommand extends smithyClient.Command
|
|
|
985
241
|
})
|
|
986
242
|
.s("KeyspacesService", "ListKeyspaces", {})
|
|
987
243
|
.n("KeyspacesClient", "ListKeyspacesCommand")
|
|
988
|
-
.sc(ListKeyspaces$)
|
|
244
|
+
.sc(schemas_0.ListKeyspaces$)
|
|
989
245
|
.build() {
|
|
990
246
|
}
|
|
991
247
|
|
|
@@ -997,7 +253,7 @@ class ListTablesCommand extends smithyClient.Command
|
|
|
997
253
|
})
|
|
998
254
|
.s("KeyspacesService", "ListTables", {})
|
|
999
255
|
.n("KeyspacesClient", "ListTablesCommand")
|
|
1000
|
-
.sc(ListTables$)
|
|
256
|
+
.sc(schemas_0.ListTables$)
|
|
1001
257
|
.build() {
|
|
1002
258
|
}
|
|
1003
259
|
|
|
@@ -1009,7 +265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1009
265
|
})
|
|
1010
266
|
.s("KeyspacesService", "ListTagsForResource", {})
|
|
1011
267
|
.n("KeyspacesClient", "ListTagsForResourceCommand")
|
|
1012
|
-
.sc(ListTagsForResource$)
|
|
268
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1013
269
|
.build() {
|
|
1014
270
|
}
|
|
1015
271
|
|
|
@@ -1021,7 +277,7 @@ class ListTypesCommand extends smithyClient.Command
|
|
|
1021
277
|
})
|
|
1022
278
|
.s("KeyspacesService", "ListTypes", {})
|
|
1023
279
|
.n("KeyspacesClient", "ListTypesCommand")
|
|
1024
|
-
.sc(ListTypes$)
|
|
280
|
+
.sc(schemas_0.ListTypes$)
|
|
1025
281
|
.build() {
|
|
1026
282
|
}
|
|
1027
283
|
|
|
@@ -1033,7 +289,7 @@ class RestoreTableCommand extends smithyClient.Command
|
|
|
1033
289
|
})
|
|
1034
290
|
.s("KeyspacesService", "RestoreTable", {})
|
|
1035
291
|
.n("KeyspacesClient", "RestoreTableCommand")
|
|
1036
|
-
.sc(RestoreTable$)
|
|
292
|
+
.sc(schemas_0.RestoreTable$)
|
|
1037
293
|
.build() {
|
|
1038
294
|
}
|
|
1039
295
|
|
|
@@ -1045,7 +301,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1045
301
|
})
|
|
1046
302
|
.s("KeyspacesService", "TagResource", {})
|
|
1047
303
|
.n("KeyspacesClient", "TagResourceCommand")
|
|
1048
|
-
.sc(TagResource$)
|
|
304
|
+
.sc(schemas_0.TagResource$)
|
|
1049
305
|
.build() {
|
|
1050
306
|
}
|
|
1051
307
|
|
|
@@ -1057,7 +313,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1057
313
|
})
|
|
1058
314
|
.s("KeyspacesService", "UntagResource", {})
|
|
1059
315
|
.n("KeyspacesClient", "UntagResourceCommand")
|
|
1060
|
-
.sc(UntagResource$)
|
|
316
|
+
.sc(schemas_0.UntagResource$)
|
|
1061
317
|
.build() {
|
|
1062
318
|
}
|
|
1063
319
|
|
|
@@ -1069,7 +325,7 @@ class UpdateKeyspaceCommand extends smithyClient.Command
|
|
|
1069
325
|
})
|
|
1070
326
|
.s("KeyspacesService", "UpdateKeyspace", {})
|
|
1071
327
|
.n("KeyspacesClient", "UpdateKeyspaceCommand")
|
|
1072
|
-
.sc(UpdateKeyspace$)
|
|
328
|
+
.sc(schemas_0.UpdateKeyspace$)
|
|
1073
329
|
.build() {
|
|
1074
330
|
}
|
|
1075
331
|
|
|
@@ -1081,7 +337,7 @@ class UpdateTableCommand extends smithyClient.Command
|
|
|
1081
337
|
})
|
|
1082
338
|
.s("KeyspacesService", "UpdateTable", {})
|
|
1083
339
|
.n("KeyspacesClient", "UpdateTableCommand")
|
|
1084
|
-
.sc(UpdateTable$)
|
|
340
|
+
.sc(schemas_0.UpdateTable$)
|
|
1085
341
|
.build() {
|
|
1086
342
|
}
|
|
1087
343
|
|
|
@@ -1200,143 +456,58 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1200
456
|
enumerable: true,
|
|
1201
457
|
get: function () { return smithyClient.Client; }
|
|
1202
458
|
});
|
|
1203
|
-
exports
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
exports.AutoScalingSpecification$ = AutoScalingSpecification$;
|
|
1208
|
-
exports.CapacitySpecification$ = CapacitySpecification$;
|
|
1209
|
-
exports.CapacitySpecificationSummary$ = CapacitySpecificationSummary$;
|
|
459
|
+
Object.defineProperty(exports, "KeyspacesServiceException", {
|
|
460
|
+
enumerable: true,
|
|
461
|
+
get: function () { return KeyspacesServiceException.KeyspacesServiceException; }
|
|
462
|
+
});
|
|
1210
463
|
exports.CdcPropagateTags = CdcPropagateTags;
|
|
1211
|
-
exports.CdcSpecification$ = CdcSpecification$;
|
|
1212
|
-
exports.CdcSpecificationSummary$ = CdcSpecificationSummary$;
|
|
1213
464
|
exports.CdcStatus = CdcStatus;
|
|
1214
|
-
exports.ClientSideTimestamps$ = ClientSideTimestamps$;
|
|
1215
465
|
exports.ClientSideTimestampsStatus = ClientSideTimestampsStatus;
|
|
1216
|
-
exports.ClusteringKey$ = ClusteringKey$;
|
|
1217
|
-
exports.ColumnDefinition$ = ColumnDefinition$;
|
|
1218
|
-
exports.Comment$ = Comment$;
|
|
1219
|
-
exports.ConflictException = ConflictException;
|
|
1220
|
-
exports.ConflictException$ = ConflictException$;
|
|
1221
|
-
exports.CreateKeyspace$ = CreateKeyspace$;
|
|
1222
466
|
exports.CreateKeyspaceCommand = CreateKeyspaceCommand;
|
|
1223
|
-
exports.CreateKeyspaceRequest$ = CreateKeyspaceRequest$;
|
|
1224
|
-
exports.CreateKeyspaceResponse$ = CreateKeyspaceResponse$;
|
|
1225
|
-
exports.CreateTable$ = CreateTable$;
|
|
1226
467
|
exports.CreateTableCommand = CreateTableCommand;
|
|
1227
|
-
exports.CreateTableRequest$ = CreateTableRequest$;
|
|
1228
|
-
exports.CreateTableResponse$ = CreateTableResponse$;
|
|
1229
|
-
exports.CreateType$ = CreateType$;
|
|
1230
468
|
exports.CreateTypeCommand = CreateTypeCommand;
|
|
1231
|
-
exports.CreateTypeRequest$ = CreateTypeRequest$;
|
|
1232
|
-
exports.CreateTypeResponse$ = CreateTypeResponse$;
|
|
1233
|
-
exports.DeleteKeyspace$ = DeleteKeyspace$;
|
|
1234
469
|
exports.DeleteKeyspaceCommand = DeleteKeyspaceCommand;
|
|
1235
|
-
exports.DeleteKeyspaceRequest$ = DeleteKeyspaceRequest$;
|
|
1236
|
-
exports.DeleteKeyspaceResponse$ = DeleteKeyspaceResponse$;
|
|
1237
|
-
exports.DeleteTable$ = DeleteTable$;
|
|
1238
470
|
exports.DeleteTableCommand = DeleteTableCommand;
|
|
1239
|
-
exports.DeleteTableRequest$ = DeleteTableRequest$;
|
|
1240
|
-
exports.DeleteTableResponse$ = DeleteTableResponse$;
|
|
1241
|
-
exports.DeleteType$ = DeleteType$;
|
|
1242
471
|
exports.DeleteTypeCommand = DeleteTypeCommand;
|
|
1243
|
-
exports.DeleteTypeRequest$ = DeleteTypeRequest$;
|
|
1244
|
-
exports.DeleteTypeResponse$ = DeleteTypeResponse$;
|
|
1245
|
-
exports.EncryptionSpecification$ = EncryptionSpecification$;
|
|
1246
472
|
exports.EncryptionType = EncryptionType;
|
|
1247
|
-
exports.FieldDefinition$ = FieldDefinition$;
|
|
1248
|
-
exports.GetKeyspace$ = GetKeyspace$;
|
|
1249
473
|
exports.GetKeyspaceCommand = GetKeyspaceCommand;
|
|
1250
|
-
exports.GetKeyspaceRequest$ = GetKeyspaceRequest$;
|
|
1251
|
-
exports.GetKeyspaceResponse$ = GetKeyspaceResponse$;
|
|
1252
|
-
exports.GetTable$ = GetTable$;
|
|
1253
|
-
exports.GetTableAutoScalingSettings$ = GetTableAutoScalingSettings$;
|
|
1254
474
|
exports.GetTableAutoScalingSettingsCommand = GetTableAutoScalingSettingsCommand;
|
|
1255
|
-
exports.GetTableAutoScalingSettingsRequest$ = GetTableAutoScalingSettingsRequest$;
|
|
1256
|
-
exports.GetTableAutoScalingSettingsResponse$ = GetTableAutoScalingSettingsResponse$;
|
|
1257
475
|
exports.GetTableCommand = GetTableCommand;
|
|
1258
|
-
exports.GetTableRequest$ = GetTableRequest$;
|
|
1259
|
-
exports.GetTableResponse$ = GetTableResponse$;
|
|
1260
|
-
exports.GetType$ = GetType$;
|
|
1261
476
|
exports.GetTypeCommand = GetTypeCommand;
|
|
1262
|
-
exports.GetTypeRequest$ = GetTypeRequest$;
|
|
1263
|
-
exports.GetTypeResponse$ = GetTypeResponse$;
|
|
1264
|
-
exports.InternalServerException = InternalServerException;
|
|
1265
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1266
477
|
exports.KeyspaceStatus = KeyspaceStatus;
|
|
1267
|
-
exports.KeyspaceSummary$ = KeyspaceSummary$;
|
|
1268
478
|
exports.Keyspaces = Keyspaces;
|
|
1269
479
|
exports.KeyspacesClient = KeyspacesClient;
|
|
1270
|
-
exports.KeyspacesServiceException = KeyspacesServiceException;
|
|
1271
|
-
exports.KeyspacesServiceException$ = KeyspacesServiceException$;
|
|
1272
|
-
exports.ListKeyspaces$ = ListKeyspaces$;
|
|
1273
480
|
exports.ListKeyspacesCommand = ListKeyspacesCommand;
|
|
1274
|
-
exports.ListKeyspacesRequest$ = ListKeyspacesRequest$;
|
|
1275
|
-
exports.ListKeyspacesResponse$ = ListKeyspacesResponse$;
|
|
1276
|
-
exports.ListTables$ = ListTables$;
|
|
1277
481
|
exports.ListTablesCommand = ListTablesCommand;
|
|
1278
|
-
exports.ListTablesRequest$ = ListTablesRequest$;
|
|
1279
|
-
exports.ListTablesResponse$ = ListTablesResponse$;
|
|
1280
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1281
482
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1282
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1283
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1284
|
-
exports.ListTypes$ = ListTypes$;
|
|
1285
483
|
exports.ListTypesCommand = ListTypesCommand;
|
|
1286
|
-
exports.ListTypesRequest$ = ListTypesRequest$;
|
|
1287
|
-
exports.ListTypesResponse$ = ListTypesResponse$;
|
|
1288
|
-
exports.PartitionKey$ = PartitionKey$;
|
|
1289
|
-
exports.PointInTimeRecovery$ = PointInTimeRecovery$;
|
|
1290
484
|
exports.PointInTimeRecoveryStatus = PointInTimeRecoveryStatus;
|
|
1291
|
-
exports.PointInTimeRecoverySummary$ = PointInTimeRecoverySummary$;
|
|
1292
|
-
exports.ReplicaAutoScalingSpecification$ = ReplicaAutoScalingSpecification$;
|
|
1293
|
-
exports.ReplicaSpecification$ = ReplicaSpecification$;
|
|
1294
|
-
exports.ReplicaSpecificationSummary$ = ReplicaSpecificationSummary$;
|
|
1295
|
-
exports.ReplicationGroupStatus$ = ReplicationGroupStatus$;
|
|
1296
|
-
exports.ReplicationSpecification$ = ReplicationSpecification$;
|
|
1297
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1298
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1299
|
-
exports.RestoreTable$ = RestoreTable$;
|
|
1300
485
|
exports.RestoreTableCommand = RestoreTableCommand;
|
|
1301
|
-
exports.RestoreTableRequest$ = RestoreTableRequest$;
|
|
1302
|
-
exports.RestoreTableResponse$ = RestoreTableResponse$;
|
|
1303
486
|
exports.Rs = Rs;
|
|
1304
|
-
exports.SchemaDefinition$ = SchemaDefinition$;
|
|
1305
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1306
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1307
487
|
exports.SortOrder = SortOrder;
|
|
1308
|
-
exports.StaticColumn$ = StaticColumn$;
|
|
1309
488
|
exports.TableStatus = TableStatus;
|
|
1310
|
-
exports.TableSummary$ = TableSummary$;
|
|
1311
|
-
exports.Tag$ = Tag$;
|
|
1312
|
-
exports.TagResource$ = TagResource$;
|
|
1313
489
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1314
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1315
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1316
|
-
exports.TargetTrackingScalingPolicyConfiguration$ = TargetTrackingScalingPolicyConfiguration$;
|
|
1317
490
|
exports.ThroughputMode = ThroughputMode;
|
|
1318
|
-
exports.TimeToLive$ = TimeToLive$;
|
|
1319
491
|
exports.TimeToLiveStatus = TimeToLiveStatus;
|
|
1320
492
|
exports.TypeStatus = TypeStatus;
|
|
1321
|
-
exports.UntagResource$ = UntagResource$;
|
|
1322
493
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1323
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1324
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1325
|
-
exports.UpdateKeyspace$ = UpdateKeyspace$;
|
|
1326
494
|
exports.UpdateKeyspaceCommand = UpdateKeyspaceCommand;
|
|
1327
|
-
exports.UpdateKeyspaceRequest$ = UpdateKeyspaceRequest$;
|
|
1328
|
-
exports.UpdateKeyspaceResponse$ = UpdateKeyspaceResponse$;
|
|
1329
|
-
exports.UpdateTable$ = UpdateTable$;
|
|
1330
495
|
exports.UpdateTableCommand = UpdateTableCommand;
|
|
1331
|
-
exports.UpdateTableRequest$ = UpdateTableRequest$;
|
|
1332
|
-
exports.UpdateTableResponse$ = UpdateTableResponse$;
|
|
1333
|
-
exports.ValidationException = ValidationException;
|
|
1334
|
-
exports.ValidationException$ = ValidationException$;
|
|
1335
496
|
exports.ViewType = ViewType;
|
|
1336
|
-
exports.WarmThroughputSpecification$ = WarmThroughputSpecification$;
|
|
1337
|
-
exports.WarmThroughputSpecificationSummary$ = WarmThroughputSpecificationSummary$;
|
|
1338
497
|
exports.WarmThroughputStatus = WarmThroughputStatus;
|
|
1339
498
|
exports.paginateListKeyspaces = paginateListKeyspaces;
|
|
1340
499
|
exports.paginateListTables = paginateListTables;
|
|
1341
500
|
exports.paginateListTagsForResource = paginateListTagsForResource;
|
|
1342
501
|
exports.paginateListTypes = paginateListTypes;
|
|
502
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
503
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
504
|
+
enumerable: true,
|
|
505
|
+
get: function () { return schemas_0[k]; }
|
|
506
|
+
});
|
|
507
|
+
});
|
|
508
|
+
Object.keys(errors).forEach(function (k) {
|
|
509
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
510
|
+
enumerable: true,
|
|
511
|
+
get: function () { return errors[k]; }
|
|
512
|
+
});
|
|
513
|
+
});
|