@aws-sdk/client-dax 3.986.0 → 3.988.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 +40 -1259
- package/dist-cjs/models/DAXServiceException.js +12 -0
- package/dist-cjs/models/errors.js +368 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +779 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +166 -160
- package/dist-types/schemas/schemas_0.d.ts +34 -27
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +29 -27
- 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 DAXServiceException = require('./models/DAXServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1107 +113,6 @@ class DAXClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class DAXServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, DAXServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ClusterAlreadyExistsFault extends DAXServiceException {
|
|
121
|
-
name = "ClusterAlreadyExistsFault";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ClusterAlreadyExistsFault",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ClusterAlreadyExistsFault.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ClusterQuotaForCustomerExceededFault extends DAXServiceException {
|
|
133
|
-
name = "ClusterQuotaForCustomerExceededFault";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ClusterQuotaForCustomerExceededFault",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InsufficientClusterCapacityFault extends DAXServiceException {
|
|
145
|
-
name = "InsufficientClusterCapacityFault";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "InsufficientClusterCapacityFault",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, InsufficientClusterCapacityFault.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class InvalidClusterStateFault extends DAXServiceException {
|
|
157
|
-
name = "InvalidClusterStateFault";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "InvalidClusterStateFault",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, InvalidClusterStateFault.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class InvalidParameterCombinationException extends DAXServiceException {
|
|
169
|
-
name = "InvalidParameterCombinationException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "InvalidParameterCombinationException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class InvalidParameterGroupStateFault extends DAXServiceException {
|
|
181
|
-
name = "InvalidParameterGroupStateFault";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "InvalidParameterGroupStateFault",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, InvalidParameterGroupStateFault.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class InvalidParameterValueException extends DAXServiceException {
|
|
193
|
-
name = "InvalidParameterValueException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "InvalidParameterValueException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class InvalidVPCNetworkStateFault extends DAXServiceException {
|
|
205
|
-
name = "InvalidVPCNetworkStateFault";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "InvalidVPCNetworkStateFault",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class NodeQuotaForClusterExceededFault extends DAXServiceException {
|
|
217
|
-
name = "NodeQuotaForClusterExceededFault";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "NodeQuotaForClusterExceededFault",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, NodeQuotaForClusterExceededFault.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class NodeQuotaForCustomerExceededFault extends DAXServiceException {
|
|
229
|
-
name = "NodeQuotaForCustomerExceededFault";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "NodeQuotaForCustomerExceededFault",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, NodeQuotaForCustomerExceededFault.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class ParameterGroupNotFoundFault extends DAXServiceException {
|
|
241
|
-
name = "ParameterGroupNotFoundFault";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "ParameterGroupNotFoundFault",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, ParameterGroupNotFoundFault.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
class ServiceLinkedRoleNotFoundFault extends DAXServiceException {
|
|
253
|
-
name = "ServiceLinkedRoleNotFoundFault";
|
|
254
|
-
$fault = "client";
|
|
255
|
-
constructor(opts) {
|
|
256
|
-
super({
|
|
257
|
-
name: "ServiceLinkedRoleNotFoundFault",
|
|
258
|
-
$fault: "client",
|
|
259
|
-
...opts,
|
|
260
|
-
});
|
|
261
|
-
Object.setPrototypeOf(this, ServiceLinkedRoleNotFoundFault.prototype);
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class ServiceQuotaExceededException extends DAXServiceException {
|
|
265
|
-
name = "ServiceQuotaExceededException";
|
|
266
|
-
$fault = "client";
|
|
267
|
-
constructor(opts) {
|
|
268
|
-
super({
|
|
269
|
-
name: "ServiceQuotaExceededException",
|
|
270
|
-
$fault: "client",
|
|
271
|
-
...opts,
|
|
272
|
-
});
|
|
273
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
class SubnetGroupNotFoundFault extends DAXServiceException {
|
|
277
|
-
name = "SubnetGroupNotFoundFault";
|
|
278
|
-
$fault = "client";
|
|
279
|
-
constructor(opts) {
|
|
280
|
-
super({
|
|
281
|
-
name: "SubnetGroupNotFoundFault",
|
|
282
|
-
$fault: "client",
|
|
283
|
-
...opts,
|
|
284
|
-
});
|
|
285
|
-
Object.setPrototypeOf(this, SubnetGroupNotFoundFault.prototype);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
class TagQuotaPerResourceExceeded extends DAXServiceException {
|
|
289
|
-
name = "TagQuotaPerResourceExceeded";
|
|
290
|
-
$fault = "client";
|
|
291
|
-
constructor(opts) {
|
|
292
|
-
super({
|
|
293
|
-
name: "TagQuotaPerResourceExceeded",
|
|
294
|
-
$fault: "client",
|
|
295
|
-
...opts,
|
|
296
|
-
});
|
|
297
|
-
Object.setPrototypeOf(this, TagQuotaPerResourceExceeded.prototype);
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
class ParameterGroupAlreadyExistsFault extends DAXServiceException {
|
|
301
|
-
name = "ParameterGroupAlreadyExistsFault";
|
|
302
|
-
$fault = "client";
|
|
303
|
-
constructor(opts) {
|
|
304
|
-
super({
|
|
305
|
-
name: "ParameterGroupAlreadyExistsFault",
|
|
306
|
-
$fault: "client",
|
|
307
|
-
...opts,
|
|
308
|
-
});
|
|
309
|
-
Object.setPrototypeOf(this, ParameterGroupAlreadyExistsFault.prototype);
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
class ParameterGroupQuotaExceededFault extends DAXServiceException {
|
|
313
|
-
name = "ParameterGroupQuotaExceededFault";
|
|
314
|
-
$fault = "client";
|
|
315
|
-
constructor(opts) {
|
|
316
|
-
super({
|
|
317
|
-
name: "ParameterGroupQuotaExceededFault",
|
|
318
|
-
$fault: "client",
|
|
319
|
-
...opts,
|
|
320
|
-
});
|
|
321
|
-
Object.setPrototypeOf(this, ParameterGroupQuotaExceededFault.prototype);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
class InvalidSubnet extends DAXServiceException {
|
|
325
|
-
name = "InvalidSubnet";
|
|
326
|
-
$fault = "client";
|
|
327
|
-
constructor(opts) {
|
|
328
|
-
super({
|
|
329
|
-
name: "InvalidSubnet",
|
|
330
|
-
$fault: "client",
|
|
331
|
-
...opts,
|
|
332
|
-
});
|
|
333
|
-
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
class SubnetGroupAlreadyExistsFault extends DAXServiceException {
|
|
337
|
-
name = "SubnetGroupAlreadyExistsFault";
|
|
338
|
-
$fault = "client";
|
|
339
|
-
constructor(opts) {
|
|
340
|
-
super({
|
|
341
|
-
name: "SubnetGroupAlreadyExistsFault",
|
|
342
|
-
$fault: "client",
|
|
343
|
-
...opts,
|
|
344
|
-
});
|
|
345
|
-
Object.setPrototypeOf(this, SubnetGroupAlreadyExistsFault.prototype);
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
class SubnetGroupQuotaExceededFault extends DAXServiceException {
|
|
349
|
-
name = "SubnetGroupQuotaExceededFault";
|
|
350
|
-
$fault = "client";
|
|
351
|
-
constructor(opts) {
|
|
352
|
-
super({
|
|
353
|
-
name: "SubnetGroupQuotaExceededFault",
|
|
354
|
-
$fault: "client",
|
|
355
|
-
...opts,
|
|
356
|
-
});
|
|
357
|
-
Object.setPrototypeOf(this, SubnetGroupQuotaExceededFault.prototype);
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
class SubnetNotAllowedFault extends DAXServiceException {
|
|
361
|
-
name = "SubnetNotAllowedFault";
|
|
362
|
-
$fault = "client";
|
|
363
|
-
constructor(opts) {
|
|
364
|
-
super({
|
|
365
|
-
name: "SubnetNotAllowedFault",
|
|
366
|
-
$fault: "client",
|
|
367
|
-
...opts,
|
|
368
|
-
});
|
|
369
|
-
Object.setPrototypeOf(this, SubnetNotAllowedFault.prototype);
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
class SubnetQuotaExceededFault extends DAXServiceException {
|
|
373
|
-
name = "SubnetQuotaExceededFault";
|
|
374
|
-
$fault = "client";
|
|
375
|
-
constructor(opts) {
|
|
376
|
-
super({
|
|
377
|
-
name: "SubnetQuotaExceededFault",
|
|
378
|
-
$fault: "client",
|
|
379
|
-
...opts,
|
|
380
|
-
});
|
|
381
|
-
Object.setPrototypeOf(this, SubnetQuotaExceededFault.prototype);
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
class ClusterNotFoundFault extends DAXServiceException {
|
|
385
|
-
name = "ClusterNotFoundFault";
|
|
386
|
-
$fault = "client";
|
|
387
|
-
constructor(opts) {
|
|
388
|
-
super({
|
|
389
|
-
name: "ClusterNotFoundFault",
|
|
390
|
-
$fault: "client",
|
|
391
|
-
...opts,
|
|
392
|
-
});
|
|
393
|
-
Object.setPrototypeOf(this, ClusterNotFoundFault.prototype);
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
class NodeNotFoundFault extends DAXServiceException {
|
|
397
|
-
name = "NodeNotFoundFault";
|
|
398
|
-
$fault = "client";
|
|
399
|
-
constructor(opts) {
|
|
400
|
-
super({
|
|
401
|
-
name: "NodeNotFoundFault",
|
|
402
|
-
$fault: "client",
|
|
403
|
-
...opts,
|
|
404
|
-
});
|
|
405
|
-
Object.setPrototypeOf(this, NodeNotFoundFault.prototype);
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
class SubnetGroupInUseFault extends DAXServiceException {
|
|
409
|
-
name = "SubnetGroupInUseFault";
|
|
410
|
-
$fault = "client";
|
|
411
|
-
constructor(opts) {
|
|
412
|
-
super({
|
|
413
|
-
name: "SubnetGroupInUseFault",
|
|
414
|
-
$fault: "client",
|
|
415
|
-
...opts,
|
|
416
|
-
});
|
|
417
|
-
Object.setPrototypeOf(this, SubnetGroupInUseFault.prototype);
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
class InvalidARNFault extends DAXServiceException {
|
|
421
|
-
name = "InvalidARNFault";
|
|
422
|
-
$fault = "client";
|
|
423
|
-
constructor(opts) {
|
|
424
|
-
super({
|
|
425
|
-
name: "InvalidARNFault",
|
|
426
|
-
$fault: "client",
|
|
427
|
-
...opts,
|
|
428
|
-
});
|
|
429
|
-
Object.setPrototypeOf(this, InvalidARNFault.prototype);
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
class TagNotFoundFault extends DAXServiceException {
|
|
433
|
-
name = "TagNotFoundFault";
|
|
434
|
-
$fault = "client";
|
|
435
|
-
constructor(opts) {
|
|
436
|
-
super({
|
|
437
|
-
name: "TagNotFoundFault",
|
|
438
|
-
$fault: "client",
|
|
439
|
-
...opts,
|
|
440
|
-
});
|
|
441
|
-
Object.setPrototypeOf(this, TagNotFoundFault.prototype);
|
|
442
|
-
}
|
|
443
|
-
}
|
|
444
|
-
class SubnetInUse extends DAXServiceException {
|
|
445
|
-
name = "SubnetInUse";
|
|
446
|
-
$fault = "client";
|
|
447
|
-
constructor(opts) {
|
|
448
|
-
super({
|
|
449
|
-
name: "SubnetInUse",
|
|
450
|
-
$fault: "client",
|
|
451
|
-
...opts,
|
|
452
|
-
});
|
|
453
|
-
Object.setPrototypeOf(this, SubnetInUse.prototype);
|
|
454
|
-
}
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
const _A = "Address";
|
|
458
|
-
const _AN = "ActiveNodes";
|
|
459
|
-
const _AV = "AllowedValues";
|
|
460
|
-
const _AZ = "AvailabilityZones";
|
|
461
|
-
const _AZv = "AvailabilityZone";
|
|
462
|
-
const _C = "Cluster";
|
|
463
|
-
const _CA = "ClusterArn";
|
|
464
|
-
const _CAEF = "ClusterAlreadyExistsFault";
|
|
465
|
-
const _CC = "CreateCluster";
|
|
466
|
-
const _CCR = "CreateClusterRequest";
|
|
467
|
-
const _CCRr = "CreateClusterResponse";
|
|
468
|
-
const _CDE = "ClusterDiscoveryEndpoint";
|
|
469
|
-
const _CEET = "ClusterEndpointEncryptionType";
|
|
470
|
-
const _CL = "ClusterList";
|
|
471
|
-
const _CN = "ClusterName";
|
|
472
|
-
const _CNFF = "ClusterNotFoundFault";
|
|
473
|
-
const _CNl = "ClusterNames";
|
|
474
|
-
const _CPG = "CreateParameterGroup";
|
|
475
|
-
const _CPGR = "CreateParameterGroupRequest";
|
|
476
|
-
const _CPGRr = "CreateParameterGroupResponse";
|
|
477
|
-
const _CQFCEF = "ClusterQuotaForCustomerExceededFault";
|
|
478
|
-
const _CSG = "CreateSubnetGroup";
|
|
479
|
-
const _CSGR = "CreateSubnetGroupRequest";
|
|
480
|
-
const _CSGRr = "CreateSubnetGroupResponse";
|
|
481
|
-
const _CT = "ChangeType";
|
|
482
|
-
const _Cl = "Clusters";
|
|
483
|
-
const _D = "Description";
|
|
484
|
-
const _DC = "DeleteCluster";
|
|
485
|
-
const _DCR = "DeleteClusterRequest";
|
|
486
|
-
const _DCRe = "DeleteClusterResponse";
|
|
487
|
-
const _DCRes = "DescribeClustersRequest";
|
|
488
|
-
const _DCResc = "DescribeClustersResponse";
|
|
489
|
-
const _DCe = "DescribeClusters";
|
|
490
|
-
const _DDP = "DescribeDefaultParameters";
|
|
491
|
-
const _DDPR = "DescribeDefaultParametersRequest";
|
|
492
|
-
const _DDPRe = "DescribeDefaultParametersResponse";
|
|
493
|
-
const _DE = "DescribeEvents";
|
|
494
|
-
const _DER = "DescribeEventsRequest";
|
|
495
|
-
const _DERe = "DescribeEventsResponse";
|
|
496
|
-
const _DM = "DeletionMessage";
|
|
497
|
-
const _DP = "DescribeParameters";
|
|
498
|
-
const _DPG = "DeleteParameterGroup";
|
|
499
|
-
const _DPGR = "DeleteParameterGroupRequest";
|
|
500
|
-
const _DPGRe = "DeleteParameterGroupResponse";
|
|
501
|
-
const _DPGRes = "DescribeParameterGroupsRequest";
|
|
502
|
-
const _DPGResc = "DescribeParameterGroupsResponse";
|
|
503
|
-
const _DPGe = "DescribeParameterGroups";
|
|
504
|
-
const _DPR = "DescribeParametersRequest";
|
|
505
|
-
const _DPRe = "DescribeParametersResponse";
|
|
506
|
-
const _DRF = "DecreaseReplicationFactor";
|
|
507
|
-
const _DRFR = "DecreaseReplicationFactorRequest";
|
|
508
|
-
const _DRFRe = "DecreaseReplicationFactorResponse";
|
|
509
|
-
const _DSG = "DeleteSubnetGroup";
|
|
510
|
-
const _DSGR = "DeleteSubnetGroupRequest";
|
|
511
|
-
const _DSGRe = "DeleteSubnetGroupResponse";
|
|
512
|
-
const _DSGRes = "DescribeSubnetGroupsRequest";
|
|
513
|
-
const _DSGResc = "DescribeSubnetGroupsResponse";
|
|
514
|
-
const _DSGe = "DescribeSubnetGroups";
|
|
515
|
-
const _DT = "DataType";
|
|
516
|
-
const _Da = "Date";
|
|
517
|
-
const _Du = "Duration";
|
|
518
|
-
const _E = "Events";
|
|
519
|
-
const _EL = "EventList";
|
|
520
|
-
const _ET = "EndTime";
|
|
521
|
-
const _En = "Endpoint";
|
|
522
|
-
const _Ena = "Enabled";
|
|
523
|
-
const _Ev = "Event";
|
|
524
|
-
const _IARNF = "InvalidARNFault";
|
|
525
|
-
const _ICCF = "InsufficientClusterCapacityFault";
|
|
526
|
-
const _ICSF = "InvalidClusterStateFault";
|
|
527
|
-
const _IM = "IsModifiable";
|
|
528
|
-
const _IPCE = "InvalidParameterCombinationException";
|
|
529
|
-
const _IPGSF = "InvalidParameterGroupStateFault";
|
|
530
|
-
const _IPVE = "InvalidParameterValueException";
|
|
531
|
-
const _IRA = "IamRoleArn";
|
|
532
|
-
const _IRF = "IncreaseReplicationFactor";
|
|
533
|
-
const _IRFR = "IncreaseReplicationFactorRequest";
|
|
534
|
-
const _IRFRn = "IncreaseReplicationFactorResponse";
|
|
535
|
-
const _IS = "InvalidSubnet";
|
|
536
|
-
const _IVPCNSF = "InvalidVPCNetworkStateFault";
|
|
537
|
-
const _K = "Key";
|
|
538
|
-
const _LT = "ListTags";
|
|
539
|
-
const _LTR = "ListTagsRequest";
|
|
540
|
-
const _LTRi = "ListTagsResponse";
|
|
541
|
-
const _M = "Message";
|
|
542
|
-
const _MR = "MaxResults";
|
|
543
|
-
const _N = "Nodes";
|
|
544
|
-
const _NC = "NotificationConfiguration";
|
|
545
|
-
const _NCT = "NodeCreateTime";
|
|
546
|
-
const _NI = "NodeId";
|
|
547
|
-
const _NITR = "NodeIdsToRemove";
|
|
548
|
-
const _NITRo = "NodeIdsToReboot";
|
|
549
|
-
const _NL = "NodeList";
|
|
550
|
-
const _NNFF = "NodeNotFoundFault";
|
|
551
|
-
const _NQFCEF = "NodeQuotaForClusterExceededFault";
|
|
552
|
-
const _NQFCEFo = "NodeQuotaForCustomerExceededFault";
|
|
553
|
-
const _NRF = "NewReplicationFactor";
|
|
554
|
-
const _NS = "NodeStatus";
|
|
555
|
-
const _NT = "NodeType";
|
|
556
|
-
const _NTA = "NotificationTopicArn";
|
|
557
|
-
const _NTS = "NotificationTopicStatus";
|
|
558
|
-
const _NTSV = "NodeTypeSpecificValue";
|
|
559
|
-
const _NTSVL = "NodeTypeSpecificValueList";
|
|
560
|
-
const _NTSVo = "NodeTypeSpecificValues";
|
|
561
|
-
const _NTe = "NetworkType";
|
|
562
|
-
const _NTex = "NextToken";
|
|
563
|
-
const _No = "Node";
|
|
564
|
-
const _P = "Parameters";
|
|
565
|
-
const _PAS = "ParameterApplyStatus";
|
|
566
|
-
const _PG = "ParameterGroup";
|
|
567
|
-
const _PGAEF = "ParameterGroupAlreadyExistsFault";
|
|
568
|
-
const _PGL = "ParameterGroupList";
|
|
569
|
-
const _PGN = "ParameterGroupName";
|
|
570
|
-
const _PGNFF = "ParameterGroupNotFoundFault";
|
|
571
|
-
const _PGNa = "ParameterGroupNames";
|
|
572
|
-
const _PGQEF = "ParameterGroupQuotaExceededFault";
|
|
573
|
-
const _PGS = "ParameterGroupStatus";
|
|
574
|
-
const _PGa = "ParameterGroups";
|
|
575
|
-
const _PL = "ParameterList";
|
|
576
|
-
const _PMW = "PreferredMaintenanceWindow";
|
|
577
|
-
const _PN = "ParameterName";
|
|
578
|
-
const _PNV = "ParameterNameValue";
|
|
579
|
-
const _PNVL = "ParameterNameValueList";
|
|
580
|
-
const _PNVa = "ParameterNameValues";
|
|
581
|
-
const _PT = "ParameterType";
|
|
582
|
-
const _PV = "ParameterValue";
|
|
583
|
-
const _Pa = "Parameter";
|
|
584
|
-
const _Po = "Port";
|
|
585
|
-
const _RF = "ReplicationFactor";
|
|
586
|
-
const _RN = "ResourceName";
|
|
587
|
-
const _RNR = "RebootNodeRequest";
|
|
588
|
-
const _RNRe = "RebootNodeResponse";
|
|
589
|
-
const _RNe = "RebootNode";
|
|
590
|
-
const _S = "Status";
|
|
591
|
-
const _SAZ = "SubnetAvailabilityZone";
|
|
592
|
-
const _SG = "SubnetGroup";
|
|
593
|
-
const _SGAEF = "SubnetGroupAlreadyExistsFault";
|
|
594
|
-
const _SGI = "SecurityGroupIds";
|
|
595
|
-
const _SGIUF = "SubnetGroupInUseFault";
|
|
596
|
-
const _SGIe = "SecurityGroupIdentifier";
|
|
597
|
-
const _SGL = "SubnetGroupList";
|
|
598
|
-
const _SGM = "SecurityGroupMembership";
|
|
599
|
-
const _SGML = "SecurityGroupMembershipList";
|
|
600
|
-
const _SGN = "SubnetGroupName";
|
|
601
|
-
const _SGNFF = "SubnetGroupNotFoundFault";
|
|
602
|
-
const _SGNu = "SubnetGroupNames";
|
|
603
|
-
const _SGQEF = "SubnetGroupQuotaExceededFault";
|
|
604
|
-
const _SGe = "SecurityGroups";
|
|
605
|
-
const _SGu = "SubnetGroups";
|
|
606
|
-
const _SI = "SubnetIds";
|
|
607
|
-
const _SIU = "SubnetInUse";
|
|
608
|
-
const _SIu = "SubnetIdentifier";
|
|
609
|
-
const _SL = "SubnetList";
|
|
610
|
-
const _SLRNFF = "ServiceLinkedRoleNotFoundFault";
|
|
611
|
-
const _SN = "SourceName";
|
|
612
|
-
const _SNAF = "SubnetNotAllowedFault";
|
|
613
|
-
const _SNT = "SupportedNetworkTypes";
|
|
614
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
615
|
-
const _SQEF = "SubnetQuotaExceededFault";
|
|
616
|
-
const _SSED = "SSEDescription";
|
|
617
|
-
const _SSES = "SSESpecification";
|
|
618
|
-
const _ST = "SourceType";
|
|
619
|
-
const _STt = "StartTime";
|
|
620
|
-
const _So = "Source";
|
|
621
|
-
const _Su = "Subnet";
|
|
622
|
-
const _Sub = "Subnets";
|
|
623
|
-
const _T = "Tags";
|
|
624
|
-
const _TA = "TopicArn";
|
|
625
|
-
const _TK = "TagKeys";
|
|
626
|
-
const _TL = "TagList";
|
|
627
|
-
const _TN = "TotalNodes";
|
|
628
|
-
const _TNFF = "TagNotFoundFault";
|
|
629
|
-
const _TQPRE = "TagQuotaPerResourceExceeded";
|
|
630
|
-
const _TR = "TagResource";
|
|
631
|
-
const _TRR = "TagResourceRequest";
|
|
632
|
-
const _TRRa = "TagResourceResponse";
|
|
633
|
-
const _TS = "TopicStatus";
|
|
634
|
-
const _Ta = "Tag";
|
|
635
|
-
const _UC = "UpdateCluster";
|
|
636
|
-
const _UCR = "UpdateClusterRequest";
|
|
637
|
-
const _UCRp = "UpdateClusterResponse";
|
|
638
|
-
const _UPG = "UpdateParameterGroup";
|
|
639
|
-
const _UPGR = "UpdateParameterGroupRequest";
|
|
640
|
-
const _UPGRp = "UpdateParameterGroupResponse";
|
|
641
|
-
const _UR = "UntagResource";
|
|
642
|
-
const _URL = "URL";
|
|
643
|
-
const _URR = "UntagResourceRequest";
|
|
644
|
-
const _URRn = "UntagResourceResponse";
|
|
645
|
-
const _USG = "UpdateSubnetGroup";
|
|
646
|
-
const _USGR = "UpdateSubnetGroupRequest";
|
|
647
|
-
const _USGRp = "UpdateSubnetGroupResponse";
|
|
648
|
-
const _V = "Value";
|
|
649
|
-
const _VI = "VpcId";
|
|
650
|
-
const _aQE = "awsQueryError";
|
|
651
|
-
const _c = "client";
|
|
652
|
-
const _e = "error";
|
|
653
|
-
const _hE = "httpError";
|
|
654
|
-
const _m = "message";
|
|
655
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.dax";
|
|
656
|
-
const n0 = "com.amazonaws.dax";
|
|
657
|
-
var Cluster$ = [3, n0, _C,
|
|
658
|
-
0,
|
|
659
|
-
[_CN, _D, _CA, _TN, _AN, _NT, _S, _CDE, _NITR, _N, _PMW, _NC, _SG, _SGe, _IRA, _PG, _SSED, _CEET, _NTe],
|
|
660
|
-
[0, 0, 0, 1, 1, 0, 0, () => Endpoint$, 64 | 0, () => NodeList, 0, () => NotificationConfiguration$, 0, () => SecurityGroupMembershipList, 0, () => ParameterGroupStatus$, () => SSEDescription$, 0, 0]
|
|
661
|
-
];
|
|
662
|
-
var ClusterAlreadyExistsFault$ = [-3, n0, _CAEF,
|
|
663
|
-
{ [_aQE]: [`ClusterAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
664
|
-
[_m],
|
|
665
|
-
[0]
|
|
666
|
-
];
|
|
667
|
-
schema.TypeRegistry.for(n0).registerError(ClusterAlreadyExistsFault$, ClusterAlreadyExistsFault);
|
|
668
|
-
var ClusterNotFoundFault$ = [-3, n0, _CNFF,
|
|
669
|
-
{ [_aQE]: [`ClusterNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
670
|
-
[_m],
|
|
671
|
-
[0]
|
|
672
|
-
];
|
|
673
|
-
schema.TypeRegistry.for(n0).registerError(ClusterNotFoundFault$, ClusterNotFoundFault);
|
|
674
|
-
var ClusterQuotaForCustomerExceededFault$ = [-3, n0, _CQFCEF,
|
|
675
|
-
{ [_aQE]: [`ClusterQuotaForCustomerExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
676
|
-
[_m],
|
|
677
|
-
[0]
|
|
678
|
-
];
|
|
679
|
-
schema.TypeRegistry.for(n0).registerError(ClusterQuotaForCustomerExceededFault$, ClusterQuotaForCustomerExceededFault);
|
|
680
|
-
var CreateClusterRequest$ = [3, n0, _CCR,
|
|
681
|
-
0,
|
|
682
|
-
[_CN, _NT, _RF, _IRA, _D, _AZ, _SGN, _SGI, _PMW, _NTA, _PGN, _T, _SSES, _CEET, _NTe],
|
|
683
|
-
[0, 0, 1, 0, 0, 64 | 0, 0, 64 | 0, 0, 0, 0, () => TagList, () => SSESpecification$, 0, 0], 4
|
|
684
|
-
];
|
|
685
|
-
var CreateClusterResponse$ = [3, n0, _CCRr,
|
|
686
|
-
0,
|
|
687
|
-
[_C],
|
|
688
|
-
[() => Cluster$]
|
|
689
|
-
];
|
|
690
|
-
var CreateParameterGroupRequest$ = [3, n0, _CPGR,
|
|
691
|
-
0,
|
|
692
|
-
[_PGN, _D],
|
|
693
|
-
[0, 0], 1
|
|
694
|
-
];
|
|
695
|
-
var CreateParameterGroupResponse$ = [3, n0, _CPGRr,
|
|
696
|
-
0,
|
|
697
|
-
[_PG],
|
|
698
|
-
[() => ParameterGroup$]
|
|
699
|
-
];
|
|
700
|
-
var CreateSubnetGroupRequest$ = [3, n0, _CSGR,
|
|
701
|
-
0,
|
|
702
|
-
[_SGN, _SI, _D],
|
|
703
|
-
[0, 64 | 0, 0], 2
|
|
704
|
-
];
|
|
705
|
-
var CreateSubnetGroupResponse$ = [3, n0, _CSGRr,
|
|
706
|
-
0,
|
|
707
|
-
[_SG],
|
|
708
|
-
[() => SubnetGroup$]
|
|
709
|
-
];
|
|
710
|
-
var DecreaseReplicationFactorRequest$ = [3, n0, _DRFR,
|
|
711
|
-
0,
|
|
712
|
-
[_CN, _NRF, _AZ, _NITR],
|
|
713
|
-
[0, 1, 64 | 0, 64 | 0], 2
|
|
714
|
-
];
|
|
715
|
-
var DecreaseReplicationFactorResponse$ = [3, n0, _DRFRe,
|
|
716
|
-
0,
|
|
717
|
-
[_C],
|
|
718
|
-
[() => Cluster$]
|
|
719
|
-
];
|
|
720
|
-
var DeleteClusterRequest$ = [3, n0, _DCR,
|
|
721
|
-
0,
|
|
722
|
-
[_CN],
|
|
723
|
-
[0], 1
|
|
724
|
-
];
|
|
725
|
-
var DeleteClusterResponse$ = [3, n0, _DCRe,
|
|
726
|
-
0,
|
|
727
|
-
[_C],
|
|
728
|
-
[() => Cluster$]
|
|
729
|
-
];
|
|
730
|
-
var DeleteParameterGroupRequest$ = [3, n0, _DPGR,
|
|
731
|
-
0,
|
|
732
|
-
[_PGN],
|
|
733
|
-
[0], 1
|
|
734
|
-
];
|
|
735
|
-
var DeleteParameterGroupResponse$ = [3, n0, _DPGRe,
|
|
736
|
-
0,
|
|
737
|
-
[_DM],
|
|
738
|
-
[0]
|
|
739
|
-
];
|
|
740
|
-
var DeleteSubnetGroupRequest$ = [3, n0, _DSGR,
|
|
741
|
-
0,
|
|
742
|
-
[_SGN],
|
|
743
|
-
[0], 1
|
|
744
|
-
];
|
|
745
|
-
var DeleteSubnetGroupResponse$ = [3, n0, _DSGRe,
|
|
746
|
-
0,
|
|
747
|
-
[_DM],
|
|
748
|
-
[0]
|
|
749
|
-
];
|
|
750
|
-
var DescribeClustersRequest$ = [3, n0, _DCRes,
|
|
751
|
-
0,
|
|
752
|
-
[_CNl, _MR, _NTex],
|
|
753
|
-
[64 | 0, 1, 0]
|
|
754
|
-
];
|
|
755
|
-
var DescribeClustersResponse$ = [3, n0, _DCResc,
|
|
756
|
-
0,
|
|
757
|
-
[_NTex, _Cl],
|
|
758
|
-
[0, () => ClusterList]
|
|
759
|
-
];
|
|
760
|
-
var DescribeDefaultParametersRequest$ = [3, n0, _DDPR,
|
|
761
|
-
0,
|
|
762
|
-
[_MR, _NTex],
|
|
763
|
-
[1, 0]
|
|
764
|
-
];
|
|
765
|
-
var DescribeDefaultParametersResponse$ = [3, n0, _DDPRe,
|
|
766
|
-
0,
|
|
767
|
-
[_NTex, _P],
|
|
768
|
-
[0, () => ParameterList]
|
|
769
|
-
];
|
|
770
|
-
var DescribeEventsRequest$ = [3, n0, _DER,
|
|
771
|
-
0,
|
|
772
|
-
[_SN, _ST, _STt, _ET, _Du, _MR, _NTex],
|
|
773
|
-
[0, 0, 4, 4, 1, 1, 0]
|
|
774
|
-
];
|
|
775
|
-
var DescribeEventsResponse$ = [3, n0, _DERe,
|
|
776
|
-
0,
|
|
777
|
-
[_NTex, _E],
|
|
778
|
-
[0, () => EventList]
|
|
779
|
-
];
|
|
780
|
-
var DescribeParameterGroupsRequest$ = [3, n0, _DPGRes,
|
|
781
|
-
0,
|
|
782
|
-
[_PGNa, _MR, _NTex],
|
|
783
|
-
[64 | 0, 1, 0]
|
|
784
|
-
];
|
|
785
|
-
var DescribeParameterGroupsResponse$ = [3, n0, _DPGResc,
|
|
786
|
-
0,
|
|
787
|
-
[_NTex, _PGa],
|
|
788
|
-
[0, () => ParameterGroupList]
|
|
789
|
-
];
|
|
790
|
-
var DescribeParametersRequest$ = [3, n0, _DPR,
|
|
791
|
-
0,
|
|
792
|
-
[_PGN, _So, _MR, _NTex],
|
|
793
|
-
[0, 0, 1, 0], 1
|
|
794
|
-
];
|
|
795
|
-
var DescribeParametersResponse$ = [3, n0, _DPRe,
|
|
796
|
-
0,
|
|
797
|
-
[_NTex, _P],
|
|
798
|
-
[0, () => ParameterList]
|
|
799
|
-
];
|
|
800
|
-
var DescribeSubnetGroupsRequest$ = [3, n0, _DSGRes,
|
|
801
|
-
0,
|
|
802
|
-
[_SGNu, _MR, _NTex],
|
|
803
|
-
[64 | 0, 1, 0]
|
|
804
|
-
];
|
|
805
|
-
var DescribeSubnetGroupsResponse$ = [3, n0, _DSGResc,
|
|
806
|
-
0,
|
|
807
|
-
[_NTex, _SGu],
|
|
808
|
-
[0, () => SubnetGroupList]
|
|
809
|
-
];
|
|
810
|
-
var Endpoint$ = [3, n0, _En,
|
|
811
|
-
0,
|
|
812
|
-
[_A, _Po, _URL],
|
|
813
|
-
[0, 1, 0]
|
|
814
|
-
];
|
|
815
|
-
var Event$ = [3, n0, _Ev,
|
|
816
|
-
0,
|
|
817
|
-
[_SN, _ST, _M, _Da],
|
|
818
|
-
[0, 0, 0, 4]
|
|
819
|
-
];
|
|
820
|
-
var IncreaseReplicationFactorRequest$ = [3, n0, _IRFR,
|
|
821
|
-
0,
|
|
822
|
-
[_CN, _NRF, _AZ],
|
|
823
|
-
[0, 1, 64 | 0], 2
|
|
824
|
-
];
|
|
825
|
-
var IncreaseReplicationFactorResponse$ = [3, n0, _IRFRn,
|
|
826
|
-
0,
|
|
827
|
-
[_C],
|
|
828
|
-
[() => Cluster$]
|
|
829
|
-
];
|
|
830
|
-
var InsufficientClusterCapacityFault$ = [-3, n0, _ICCF,
|
|
831
|
-
{ [_aQE]: [`InsufficientClusterCapacity`, 400], [_e]: _c, [_hE]: 400 },
|
|
832
|
-
[_m],
|
|
833
|
-
[0]
|
|
834
|
-
];
|
|
835
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientClusterCapacityFault$, InsufficientClusterCapacityFault);
|
|
836
|
-
var InvalidARNFault$ = [-3, n0, _IARNF,
|
|
837
|
-
{ [_aQE]: [`InvalidARN`, 400], [_e]: _c, [_hE]: 400 },
|
|
838
|
-
[_m],
|
|
839
|
-
[0]
|
|
840
|
-
];
|
|
841
|
-
schema.TypeRegistry.for(n0).registerError(InvalidARNFault$, InvalidARNFault);
|
|
842
|
-
var InvalidClusterStateFault$ = [-3, n0, _ICSF,
|
|
843
|
-
{ [_aQE]: [`InvalidClusterState`, 400], [_e]: _c, [_hE]: 400 },
|
|
844
|
-
[_m],
|
|
845
|
-
[0]
|
|
846
|
-
];
|
|
847
|
-
schema.TypeRegistry.for(n0).registerError(InvalidClusterStateFault$, InvalidClusterStateFault);
|
|
848
|
-
var InvalidParameterCombinationException$ = [-3, n0, _IPCE,
|
|
849
|
-
{ [_aQE]: [`InvalidParameterCombination`, 400], [_e]: _c, [_hE]: 400 },
|
|
850
|
-
[_m],
|
|
851
|
-
[0]
|
|
852
|
-
];
|
|
853
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterCombinationException$, InvalidParameterCombinationException);
|
|
854
|
-
var InvalidParameterGroupStateFault$ = [-3, n0, _IPGSF,
|
|
855
|
-
{ [_aQE]: [`InvalidParameterGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
856
|
-
[_m],
|
|
857
|
-
[0]
|
|
858
|
-
];
|
|
859
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterGroupStateFault$, InvalidParameterGroupStateFault);
|
|
860
|
-
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
861
|
-
{ [_aQE]: [`InvalidParameterValue`, 400], [_e]: _c, [_hE]: 400 },
|
|
862
|
-
[_m],
|
|
863
|
-
[0]
|
|
864
|
-
];
|
|
865
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
866
|
-
var InvalidSubnet$ = [-3, n0, _IS,
|
|
867
|
-
{ [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
|
|
868
|
-
[_m],
|
|
869
|
-
[0]
|
|
870
|
-
];
|
|
871
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSubnet$, InvalidSubnet);
|
|
872
|
-
var InvalidVPCNetworkStateFault$ = [-3, n0, _IVPCNSF,
|
|
873
|
-
{ [_aQE]: [`InvalidVPCNetworkStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
874
|
-
[_m],
|
|
875
|
-
[0]
|
|
876
|
-
];
|
|
877
|
-
schema.TypeRegistry.for(n0).registerError(InvalidVPCNetworkStateFault$, InvalidVPCNetworkStateFault);
|
|
878
|
-
var ListTagsRequest$ = [3, n0, _LTR,
|
|
879
|
-
0,
|
|
880
|
-
[_RN, _NTex],
|
|
881
|
-
[0, 0], 1
|
|
882
|
-
];
|
|
883
|
-
var ListTagsResponse$ = [3, n0, _LTRi,
|
|
884
|
-
0,
|
|
885
|
-
[_T, _NTex],
|
|
886
|
-
[() => TagList, 0]
|
|
887
|
-
];
|
|
888
|
-
var Node$ = [3, n0, _No,
|
|
889
|
-
0,
|
|
890
|
-
[_NI, _En, _NCT, _AZv, _NS, _PGS],
|
|
891
|
-
[0, () => Endpoint$, 4, 0, 0, 0]
|
|
892
|
-
];
|
|
893
|
-
var NodeNotFoundFault$ = [-3, n0, _NNFF,
|
|
894
|
-
{ [_aQE]: [`NodeNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
895
|
-
[_m],
|
|
896
|
-
[0]
|
|
897
|
-
];
|
|
898
|
-
schema.TypeRegistry.for(n0).registerError(NodeNotFoundFault$, NodeNotFoundFault);
|
|
899
|
-
var NodeQuotaForClusterExceededFault$ = [-3, n0, _NQFCEF,
|
|
900
|
-
{ [_aQE]: [`NodeQuotaForClusterExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
901
|
-
[_m],
|
|
902
|
-
[0]
|
|
903
|
-
];
|
|
904
|
-
schema.TypeRegistry.for(n0).registerError(NodeQuotaForClusterExceededFault$, NodeQuotaForClusterExceededFault);
|
|
905
|
-
var NodeQuotaForCustomerExceededFault$ = [-3, n0, _NQFCEFo,
|
|
906
|
-
{ [_aQE]: [`NodeQuotaForCustomerExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
907
|
-
[_m],
|
|
908
|
-
[0]
|
|
909
|
-
];
|
|
910
|
-
schema.TypeRegistry.for(n0).registerError(NodeQuotaForCustomerExceededFault$, NodeQuotaForCustomerExceededFault);
|
|
911
|
-
var NodeTypeSpecificValue$ = [3, n0, _NTSV,
|
|
912
|
-
0,
|
|
913
|
-
[_NT, _V],
|
|
914
|
-
[0, 0]
|
|
915
|
-
];
|
|
916
|
-
var NotificationConfiguration$ = [3, n0, _NC,
|
|
917
|
-
0,
|
|
918
|
-
[_TA, _TS],
|
|
919
|
-
[0, 0]
|
|
920
|
-
];
|
|
921
|
-
var Parameter$ = [3, n0, _Pa,
|
|
922
|
-
0,
|
|
923
|
-
[_PN, _PT, _PV, _NTSVo, _D, _So, _DT, _AV, _IM, _CT],
|
|
924
|
-
[0, 0, 0, () => NodeTypeSpecificValueList, 0, 0, 0, 0, 0, 0]
|
|
925
|
-
];
|
|
926
|
-
var ParameterGroup$ = [3, n0, _PG,
|
|
927
|
-
0,
|
|
928
|
-
[_PGN, _D],
|
|
929
|
-
[0, 0]
|
|
930
|
-
];
|
|
931
|
-
var ParameterGroupAlreadyExistsFault$ = [-3, n0, _PGAEF,
|
|
932
|
-
{ [_aQE]: [`ParameterGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
933
|
-
[_m],
|
|
934
|
-
[0]
|
|
935
|
-
];
|
|
936
|
-
schema.TypeRegistry.for(n0).registerError(ParameterGroupAlreadyExistsFault$, ParameterGroupAlreadyExistsFault);
|
|
937
|
-
var ParameterGroupNotFoundFault$ = [-3, n0, _PGNFF,
|
|
938
|
-
{ [_aQE]: [`ParameterGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
939
|
-
[_m],
|
|
940
|
-
[0]
|
|
941
|
-
];
|
|
942
|
-
schema.TypeRegistry.for(n0).registerError(ParameterGroupNotFoundFault$, ParameterGroupNotFoundFault);
|
|
943
|
-
var ParameterGroupQuotaExceededFault$ = [-3, n0, _PGQEF,
|
|
944
|
-
{ [_aQE]: [`ParameterGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
945
|
-
[_m],
|
|
946
|
-
[0]
|
|
947
|
-
];
|
|
948
|
-
schema.TypeRegistry.for(n0).registerError(ParameterGroupQuotaExceededFault$, ParameterGroupQuotaExceededFault);
|
|
949
|
-
var ParameterGroupStatus$ = [3, n0, _PGS,
|
|
950
|
-
0,
|
|
951
|
-
[_PGN, _PAS, _NITRo],
|
|
952
|
-
[0, 0, 64 | 0]
|
|
953
|
-
];
|
|
954
|
-
var ParameterNameValue$ = [3, n0, _PNV,
|
|
955
|
-
0,
|
|
956
|
-
[_PN, _PV],
|
|
957
|
-
[0, 0]
|
|
958
|
-
];
|
|
959
|
-
var RebootNodeRequest$ = [3, n0, _RNR,
|
|
960
|
-
0,
|
|
961
|
-
[_CN, _NI],
|
|
962
|
-
[0, 0], 2
|
|
963
|
-
];
|
|
964
|
-
var RebootNodeResponse$ = [3, n0, _RNRe,
|
|
965
|
-
0,
|
|
966
|
-
[_C],
|
|
967
|
-
[() => Cluster$]
|
|
968
|
-
];
|
|
969
|
-
var SecurityGroupMembership$ = [3, n0, _SGM,
|
|
970
|
-
0,
|
|
971
|
-
[_SGIe, _S],
|
|
972
|
-
[0, 0]
|
|
973
|
-
];
|
|
974
|
-
var ServiceLinkedRoleNotFoundFault$ = [-3, n0, _SLRNFF,
|
|
975
|
-
{ [_aQE]: [`ServiceLinkedRoleNotFoundFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
976
|
-
[_m],
|
|
977
|
-
[0]
|
|
978
|
-
];
|
|
979
|
-
schema.TypeRegistry.for(n0).registerError(ServiceLinkedRoleNotFoundFault$, ServiceLinkedRoleNotFoundFault);
|
|
980
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
981
|
-
{ [_aQE]: [`ServiceQuotaExceeded`, 402], [_e]: _c, [_hE]: 402 },
|
|
982
|
-
[],
|
|
983
|
-
[]
|
|
984
|
-
];
|
|
985
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
986
|
-
var SSEDescription$ = [3, n0, _SSED,
|
|
987
|
-
0,
|
|
988
|
-
[_S],
|
|
989
|
-
[0]
|
|
990
|
-
];
|
|
991
|
-
var SSESpecification$ = [3, n0, _SSES,
|
|
992
|
-
0,
|
|
993
|
-
[_Ena],
|
|
994
|
-
[2], 1
|
|
995
|
-
];
|
|
996
|
-
var Subnet$ = [3, n0, _Su,
|
|
997
|
-
0,
|
|
998
|
-
[_SIu, _SAZ, _SNT],
|
|
999
|
-
[0, 0, 64 | 0]
|
|
1000
|
-
];
|
|
1001
|
-
var SubnetGroup$ = [3, n0, _SG,
|
|
1002
|
-
0,
|
|
1003
|
-
[_SGN, _D, _VI, _Sub, _SNT],
|
|
1004
|
-
[0, 0, 0, () => SubnetList, 64 | 0]
|
|
1005
|
-
];
|
|
1006
|
-
var SubnetGroupAlreadyExistsFault$ = [-3, n0, _SGAEF,
|
|
1007
|
-
{ [_aQE]: [`SubnetGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1008
|
-
[_m],
|
|
1009
|
-
[0]
|
|
1010
|
-
];
|
|
1011
|
-
schema.TypeRegistry.for(n0).registerError(SubnetGroupAlreadyExistsFault$, SubnetGroupAlreadyExistsFault);
|
|
1012
|
-
var SubnetGroupInUseFault$ = [-3, n0, _SGIUF,
|
|
1013
|
-
{ [_aQE]: [`SubnetGroupInUse`, 400], [_e]: _c, [_hE]: 400 },
|
|
1014
|
-
[_m],
|
|
1015
|
-
[0]
|
|
1016
|
-
];
|
|
1017
|
-
schema.TypeRegistry.for(n0).registerError(SubnetGroupInUseFault$, SubnetGroupInUseFault);
|
|
1018
|
-
var SubnetGroupNotFoundFault$ = [-3, n0, _SGNFF,
|
|
1019
|
-
{ [_aQE]: [`SubnetGroupNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
1020
|
-
[_m],
|
|
1021
|
-
[0]
|
|
1022
|
-
];
|
|
1023
|
-
schema.TypeRegistry.for(n0).registerError(SubnetGroupNotFoundFault$, SubnetGroupNotFoundFault);
|
|
1024
|
-
var SubnetGroupQuotaExceededFault$ = [-3, n0, _SGQEF,
|
|
1025
|
-
{ [_aQE]: [`SubnetGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1026
|
-
[_m],
|
|
1027
|
-
[0]
|
|
1028
|
-
];
|
|
1029
|
-
schema.TypeRegistry.for(n0).registerError(SubnetGroupQuotaExceededFault$, SubnetGroupQuotaExceededFault);
|
|
1030
|
-
var SubnetInUse$ = [-3, n0, _SIU,
|
|
1031
|
-
{ [_aQE]: [`SubnetInUse`, 400], [_e]: _c, [_hE]: 400 },
|
|
1032
|
-
[_m],
|
|
1033
|
-
[0]
|
|
1034
|
-
];
|
|
1035
|
-
schema.TypeRegistry.for(n0).registerError(SubnetInUse$, SubnetInUse);
|
|
1036
|
-
var SubnetNotAllowedFault$ = [-3, n0, _SNAF,
|
|
1037
|
-
{ [_aQE]: [`SubnetNotAllowedFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1038
|
-
[_m],
|
|
1039
|
-
[0]
|
|
1040
|
-
];
|
|
1041
|
-
schema.TypeRegistry.for(n0).registerError(SubnetNotAllowedFault$, SubnetNotAllowedFault);
|
|
1042
|
-
var SubnetQuotaExceededFault$ = [-3, n0, _SQEF,
|
|
1043
|
-
{ [_aQE]: [`SubnetQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1044
|
-
[_m],
|
|
1045
|
-
[0]
|
|
1046
|
-
];
|
|
1047
|
-
schema.TypeRegistry.for(n0).registerError(SubnetQuotaExceededFault$, SubnetQuotaExceededFault);
|
|
1048
|
-
var Tag$ = [3, n0, _Ta,
|
|
1049
|
-
0,
|
|
1050
|
-
[_K, _V],
|
|
1051
|
-
[0, 0]
|
|
1052
|
-
];
|
|
1053
|
-
var TagNotFoundFault$ = [-3, n0, _TNFF,
|
|
1054
|
-
{ [_aQE]: [`TagNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1055
|
-
[_m],
|
|
1056
|
-
[0]
|
|
1057
|
-
];
|
|
1058
|
-
schema.TypeRegistry.for(n0).registerError(TagNotFoundFault$, TagNotFoundFault);
|
|
1059
|
-
var TagQuotaPerResourceExceeded$ = [-3, n0, _TQPRE,
|
|
1060
|
-
{ [_aQE]: [`TagQuotaPerResourceExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1061
|
-
[_m],
|
|
1062
|
-
[0]
|
|
1063
|
-
];
|
|
1064
|
-
schema.TypeRegistry.for(n0).registerError(TagQuotaPerResourceExceeded$, TagQuotaPerResourceExceeded);
|
|
1065
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1066
|
-
0,
|
|
1067
|
-
[_RN, _T],
|
|
1068
|
-
[0, () => TagList], 2
|
|
1069
|
-
];
|
|
1070
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1071
|
-
0,
|
|
1072
|
-
[_T],
|
|
1073
|
-
[() => TagList]
|
|
1074
|
-
];
|
|
1075
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1076
|
-
0,
|
|
1077
|
-
[_RN, _TK],
|
|
1078
|
-
[0, 64 | 0], 2
|
|
1079
|
-
];
|
|
1080
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1081
|
-
0,
|
|
1082
|
-
[_T],
|
|
1083
|
-
[() => TagList]
|
|
1084
|
-
];
|
|
1085
|
-
var UpdateClusterRequest$ = [3, n0, _UCR,
|
|
1086
|
-
0,
|
|
1087
|
-
[_CN, _D, _PMW, _NTA, _NTS, _PGN, _SGI],
|
|
1088
|
-
[0, 0, 0, 0, 0, 0, 64 | 0], 1
|
|
1089
|
-
];
|
|
1090
|
-
var UpdateClusterResponse$ = [3, n0, _UCRp,
|
|
1091
|
-
0,
|
|
1092
|
-
[_C],
|
|
1093
|
-
[() => Cluster$]
|
|
1094
|
-
];
|
|
1095
|
-
var UpdateParameterGroupRequest$ = [3, n0, _UPGR,
|
|
1096
|
-
0,
|
|
1097
|
-
[_PGN, _PNVa],
|
|
1098
|
-
[0, () => ParameterNameValueList], 2
|
|
1099
|
-
];
|
|
1100
|
-
var UpdateParameterGroupResponse$ = [3, n0, _UPGRp,
|
|
1101
|
-
0,
|
|
1102
|
-
[_PG],
|
|
1103
|
-
[() => ParameterGroup$]
|
|
1104
|
-
];
|
|
1105
|
-
var UpdateSubnetGroupRequest$ = [3, n0, _USGR,
|
|
1106
|
-
0,
|
|
1107
|
-
[_SGN, _D, _SI],
|
|
1108
|
-
[0, 0, 64 | 0], 1
|
|
1109
|
-
];
|
|
1110
|
-
var UpdateSubnetGroupResponse$ = [3, n0, _USGRp,
|
|
1111
|
-
0,
|
|
1112
|
-
[_SG],
|
|
1113
|
-
[() => SubnetGroup$]
|
|
1114
|
-
];
|
|
1115
|
-
var DAXServiceException$ = [-3, _s, "DAXServiceException", 0, [], []];
|
|
1116
|
-
schema.TypeRegistry.for(_s).registerError(DAXServiceException$, DAXServiceException);
|
|
1117
|
-
var ClusterList = [1, n0, _CL,
|
|
1118
|
-
0, () => Cluster$
|
|
1119
|
-
];
|
|
1120
|
-
var EventList = [1, n0, _EL,
|
|
1121
|
-
0, () => Event$
|
|
1122
|
-
];
|
|
1123
|
-
var NodeList = [1, n0, _NL,
|
|
1124
|
-
0, () => Node$
|
|
1125
|
-
];
|
|
1126
|
-
var NodeTypeSpecificValueList = [1, n0, _NTSVL,
|
|
1127
|
-
0, () => NodeTypeSpecificValue$
|
|
1128
|
-
];
|
|
1129
|
-
var ParameterGroupList = [1, n0, _PGL,
|
|
1130
|
-
0, () => ParameterGroup$
|
|
1131
|
-
];
|
|
1132
|
-
var ParameterList = [1, n0, _PL,
|
|
1133
|
-
0, () => Parameter$
|
|
1134
|
-
];
|
|
1135
|
-
var ParameterNameValueList = [1, n0, _PNVL,
|
|
1136
|
-
0, () => ParameterNameValue$
|
|
1137
|
-
];
|
|
1138
|
-
var SecurityGroupMembershipList = [1, n0, _SGML,
|
|
1139
|
-
0, () => SecurityGroupMembership$
|
|
1140
|
-
];
|
|
1141
|
-
var SubnetGroupList = [1, n0, _SGL,
|
|
1142
|
-
0, () => SubnetGroup$
|
|
1143
|
-
];
|
|
1144
|
-
var SubnetList = [1, n0, _SL,
|
|
1145
|
-
0, () => Subnet$
|
|
1146
|
-
];
|
|
1147
|
-
var TagList = [1, n0, _TL,
|
|
1148
|
-
0, () => Tag$
|
|
1149
|
-
];
|
|
1150
|
-
var CreateCluster$ = [9, n0, _CC,
|
|
1151
|
-
0, () => CreateClusterRequest$, () => CreateClusterResponse$
|
|
1152
|
-
];
|
|
1153
|
-
var CreateParameterGroup$ = [9, n0, _CPG,
|
|
1154
|
-
0, () => CreateParameterGroupRequest$, () => CreateParameterGroupResponse$
|
|
1155
|
-
];
|
|
1156
|
-
var CreateSubnetGroup$ = [9, n0, _CSG,
|
|
1157
|
-
0, () => CreateSubnetGroupRequest$, () => CreateSubnetGroupResponse$
|
|
1158
|
-
];
|
|
1159
|
-
var DecreaseReplicationFactor$ = [9, n0, _DRF,
|
|
1160
|
-
0, () => DecreaseReplicationFactorRequest$, () => DecreaseReplicationFactorResponse$
|
|
1161
|
-
];
|
|
1162
|
-
var DeleteCluster$ = [9, n0, _DC,
|
|
1163
|
-
0, () => DeleteClusterRequest$, () => DeleteClusterResponse$
|
|
1164
|
-
];
|
|
1165
|
-
var DeleteParameterGroup$ = [9, n0, _DPG,
|
|
1166
|
-
0, () => DeleteParameterGroupRequest$, () => DeleteParameterGroupResponse$
|
|
1167
|
-
];
|
|
1168
|
-
var DeleteSubnetGroup$ = [9, n0, _DSG,
|
|
1169
|
-
0, () => DeleteSubnetGroupRequest$, () => DeleteSubnetGroupResponse$
|
|
1170
|
-
];
|
|
1171
|
-
var DescribeClusters$ = [9, n0, _DCe,
|
|
1172
|
-
0, () => DescribeClustersRequest$, () => DescribeClustersResponse$
|
|
1173
|
-
];
|
|
1174
|
-
var DescribeDefaultParameters$ = [9, n0, _DDP,
|
|
1175
|
-
0, () => DescribeDefaultParametersRequest$, () => DescribeDefaultParametersResponse$
|
|
1176
|
-
];
|
|
1177
|
-
var DescribeEvents$ = [9, n0, _DE,
|
|
1178
|
-
0, () => DescribeEventsRequest$, () => DescribeEventsResponse$
|
|
1179
|
-
];
|
|
1180
|
-
var DescribeParameterGroups$ = [9, n0, _DPGe,
|
|
1181
|
-
0, () => DescribeParameterGroupsRequest$, () => DescribeParameterGroupsResponse$
|
|
1182
|
-
];
|
|
1183
|
-
var DescribeParameters$ = [9, n0, _DP,
|
|
1184
|
-
0, () => DescribeParametersRequest$, () => DescribeParametersResponse$
|
|
1185
|
-
];
|
|
1186
|
-
var DescribeSubnetGroups$ = [9, n0, _DSGe,
|
|
1187
|
-
0, () => DescribeSubnetGroupsRequest$, () => DescribeSubnetGroupsResponse$
|
|
1188
|
-
];
|
|
1189
|
-
var IncreaseReplicationFactor$ = [9, n0, _IRF,
|
|
1190
|
-
0, () => IncreaseReplicationFactorRequest$, () => IncreaseReplicationFactorResponse$
|
|
1191
|
-
];
|
|
1192
|
-
var ListTags$ = [9, n0, _LT,
|
|
1193
|
-
0, () => ListTagsRequest$, () => ListTagsResponse$
|
|
1194
|
-
];
|
|
1195
|
-
var RebootNode$ = [9, n0, _RNe,
|
|
1196
|
-
0, () => RebootNodeRequest$, () => RebootNodeResponse$
|
|
1197
|
-
];
|
|
1198
|
-
var TagResource$ = [9, n0, _TR,
|
|
1199
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1200
|
-
];
|
|
1201
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1202
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1203
|
-
];
|
|
1204
|
-
var UpdateCluster$ = [9, n0, _UC,
|
|
1205
|
-
0, () => UpdateClusterRequest$, () => UpdateClusterResponse$
|
|
1206
|
-
];
|
|
1207
|
-
var UpdateParameterGroup$ = [9, n0, _UPG,
|
|
1208
|
-
0, () => UpdateParameterGroupRequest$, () => UpdateParameterGroupResponse$
|
|
1209
|
-
];
|
|
1210
|
-
var UpdateSubnetGroup$ = [9, n0, _USG,
|
|
1211
|
-
0, () => UpdateSubnetGroupRequest$, () => UpdateSubnetGroupResponse$
|
|
1212
|
-
];
|
|
1213
|
-
|
|
1214
116
|
class CreateClusterCommand extends smithyClient.Command
|
|
1215
117
|
.classBuilder()
|
|
1216
118
|
.ep(commonParams)
|
|
@@ -1219,7 +121,7 @@ class CreateClusterCommand extends smithyClient.Command
|
|
|
1219
121
|
})
|
|
1220
122
|
.s("AmazonDAXV3", "CreateCluster", {})
|
|
1221
123
|
.n("DAXClient", "CreateClusterCommand")
|
|
1222
|
-
.sc(CreateCluster$)
|
|
124
|
+
.sc(schemas_0.CreateCluster$)
|
|
1223
125
|
.build() {
|
|
1224
126
|
}
|
|
1225
127
|
|
|
@@ -1231,7 +133,7 @@ class CreateParameterGroupCommand extends smithyClient.Command
|
|
|
1231
133
|
})
|
|
1232
134
|
.s("AmazonDAXV3", "CreateParameterGroup", {})
|
|
1233
135
|
.n("DAXClient", "CreateParameterGroupCommand")
|
|
1234
|
-
.sc(CreateParameterGroup$)
|
|
136
|
+
.sc(schemas_0.CreateParameterGroup$)
|
|
1235
137
|
.build() {
|
|
1236
138
|
}
|
|
1237
139
|
|
|
@@ -1243,7 +145,7 @@ class CreateSubnetGroupCommand extends smithyClient.Command
|
|
|
1243
145
|
})
|
|
1244
146
|
.s("AmazonDAXV3", "CreateSubnetGroup", {})
|
|
1245
147
|
.n("DAXClient", "CreateSubnetGroupCommand")
|
|
1246
|
-
.sc(CreateSubnetGroup$)
|
|
148
|
+
.sc(schemas_0.CreateSubnetGroup$)
|
|
1247
149
|
.build() {
|
|
1248
150
|
}
|
|
1249
151
|
|
|
@@ -1255,7 +157,7 @@ class DecreaseReplicationFactorCommand extends smithyClient.Command
|
|
|
1255
157
|
})
|
|
1256
158
|
.s("AmazonDAXV3", "DecreaseReplicationFactor", {})
|
|
1257
159
|
.n("DAXClient", "DecreaseReplicationFactorCommand")
|
|
1258
|
-
.sc(DecreaseReplicationFactor$)
|
|
160
|
+
.sc(schemas_0.DecreaseReplicationFactor$)
|
|
1259
161
|
.build() {
|
|
1260
162
|
}
|
|
1261
163
|
|
|
@@ -1267,7 +169,7 @@ class DeleteClusterCommand extends smithyClient.Command
|
|
|
1267
169
|
})
|
|
1268
170
|
.s("AmazonDAXV3", "DeleteCluster", {})
|
|
1269
171
|
.n("DAXClient", "DeleteClusterCommand")
|
|
1270
|
-
.sc(DeleteCluster$)
|
|
172
|
+
.sc(schemas_0.DeleteCluster$)
|
|
1271
173
|
.build() {
|
|
1272
174
|
}
|
|
1273
175
|
|
|
@@ -1279,7 +181,7 @@ class DeleteParameterGroupCommand extends smithyClient.Command
|
|
|
1279
181
|
})
|
|
1280
182
|
.s("AmazonDAXV3", "DeleteParameterGroup", {})
|
|
1281
183
|
.n("DAXClient", "DeleteParameterGroupCommand")
|
|
1282
|
-
.sc(DeleteParameterGroup$)
|
|
184
|
+
.sc(schemas_0.DeleteParameterGroup$)
|
|
1283
185
|
.build() {
|
|
1284
186
|
}
|
|
1285
187
|
|
|
@@ -1291,7 +193,7 @@ class DeleteSubnetGroupCommand extends smithyClient.Command
|
|
|
1291
193
|
})
|
|
1292
194
|
.s("AmazonDAXV3", "DeleteSubnetGroup", {})
|
|
1293
195
|
.n("DAXClient", "DeleteSubnetGroupCommand")
|
|
1294
|
-
.sc(DeleteSubnetGroup$)
|
|
196
|
+
.sc(schemas_0.DeleteSubnetGroup$)
|
|
1295
197
|
.build() {
|
|
1296
198
|
}
|
|
1297
199
|
|
|
@@ -1303,7 +205,7 @@ class DescribeClustersCommand extends smithyClient.Command
|
|
|
1303
205
|
})
|
|
1304
206
|
.s("AmazonDAXV3", "DescribeClusters", {})
|
|
1305
207
|
.n("DAXClient", "DescribeClustersCommand")
|
|
1306
|
-
.sc(DescribeClusters$)
|
|
208
|
+
.sc(schemas_0.DescribeClusters$)
|
|
1307
209
|
.build() {
|
|
1308
210
|
}
|
|
1309
211
|
|
|
@@ -1315,7 +217,7 @@ class DescribeDefaultParametersCommand extends smithyClient.Command
|
|
|
1315
217
|
})
|
|
1316
218
|
.s("AmazonDAXV3", "DescribeDefaultParameters", {})
|
|
1317
219
|
.n("DAXClient", "DescribeDefaultParametersCommand")
|
|
1318
|
-
.sc(DescribeDefaultParameters$)
|
|
220
|
+
.sc(schemas_0.DescribeDefaultParameters$)
|
|
1319
221
|
.build() {
|
|
1320
222
|
}
|
|
1321
223
|
|
|
@@ -1327,7 +229,7 @@ class DescribeEventsCommand extends smithyClient.Command
|
|
|
1327
229
|
})
|
|
1328
230
|
.s("AmazonDAXV3", "DescribeEvents", {})
|
|
1329
231
|
.n("DAXClient", "DescribeEventsCommand")
|
|
1330
|
-
.sc(DescribeEvents$)
|
|
232
|
+
.sc(schemas_0.DescribeEvents$)
|
|
1331
233
|
.build() {
|
|
1332
234
|
}
|
|
1333
235
|
|
|
@@ -1339,7 +241,7 @@ class DescribeParameterGroupsCommand extends smithyClient.Command
|
|
|
1339
241
|
})
|
|
1340
242
|
.s("AmazonDAXV3", "DescribeParameterGroups", {})
|
|
1341
243
|
.n("DAXClient", "DescribeParameterGroupsCommand")
|
|
1342
|
-
.sc(DescribeParameterGroups$)
|
|
244
|
+
.sc(schemas_0.DescribeParameterGroups$)
|
|
1343
245
|
.build() {
|
|
1344
246
|
}
|
|
1345
247
|
|
|
@@ -1351,7 +253,7 @@ class DescribeParametersCommand extends smithyClient.Command
|
|
|
1351
253
|
})
|
|
1352
254
|
.s("AmazonDAXV3", "DescribeParameters", {})
|
|
1353
255
|
.n("DAXClient", "DescribeParametersCommand")
|
|
1354
|
-
.sc(DescribeParameters$)
|
|
256
|
+
.sc(schemas_0.DescribeParameters$)
|
|
1355
257
|
.build() {
|
|
1356
258
|
}
|
|
1357
259
|
|
|
@@ -1363,7 +265,7 @@ class DescribeSubnetGroupsCommand extends smithyClient.Command
|
|
|
1363
265
|
})
|
|
1364
266
|
.s("AmazonDAXV3", "DescribeSubnetGroups", {})
|
|
1365
267
|
.n("DAXClient", "DescribeSubnetGroupsCommand")
|
|
1366
|
-
.sc(DescribeSubnetGroups$)
|
|
268
|
+
.sc(schemas_0.DescribeSubnetGroups$)
|
|
1367
269
|
.build() {
|
|
1368
270
|
}
|
|
1369
271
|
|
|
@@ -1375,7 +277,7 @@ class IncreaseReplicationFactorCommand extends smithyClient.Command
|
|
|
1375
277
|
})
|
|
1376
278
|
.s("AmazonDAXV3", "IncreaseReplicationFactor", {})
|
|
1377
279
|
.n("DAXClient", "IncreaseReplicationFactorCommand")
|
|
1378
|
-
.sc(IncreaseReplicationFactor$)
|
|
280
|
+
.sc(schemas_0.IncreaseReplicationFactor$)
|
|
1379
281
|
.build() {
|
|
1380
282
|
}
|
|
1381
283
|
|
|
@@ -1387,7 +289,7 @@ class ListTagsCommand extends smithyClient.Command
|
|
|
1387
289
|
})
|
|
1388
290
|
.s("AmazonDAXV3", "ListTags", {})
|
|
1389
291
|
.n("DAXClient", "ListTagsCommand")
|
|
1390
|
-
.sc(ListTags$)
|
|
292
|
+
.sc(schemas_0.ListTags$)
|
|
1391
293
|
.build() {
|
|
1392
294
|
}
|
|
1393
295
|
|
|
@@ -1399,7 +301,7 @@ class RebootNodeCommand extends smithyClient.Command
|
|
|
1399
301
|
})
|
|
1400
302
|
.s("AmazonDAXV3", "RebootNode", {})
|
|
1401
303
|
.n("DAXClient", "RebootNodeCommand")
|
|
1402
|
-
.sc(RebootNode$)
|
|
304
|
+
.sc(schemas_0.RebootNode$)
|
|
1403
305
|
.build() {
|
|
1404
306
|
}
|
|
1405
307
|
|
|
@@ -1411,7 +313,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1411
313
|
})
|
|
1412
314
|
.s("AmazonDAXV3", "TagResource", {})
|
|
1413
315
|
.n("DAXClient", "TagResourceCommand")
|
|
1414
|
-
.sc(TagResource$)
|
|
316
|
+
.sc(schemas_0.TagResource$)
|
|
1415
317
|
.build() {
|
|
1416
318
|
}
|
|
1417
319
|
|
|
@@ -1423,7 +325,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1423
325
|
})
|
|
1424
326
|
.s("AmazonDAXV3", "UntagResource", {})
|
|
1425
327
|
.n("DAXClient", "UntagResourceCommand")
|
|
1426
|
-
.sc(UntagResource$)
|
|
328
|
+
.sc(schemas_0.UntagResource$)
|
|
1427
329
|
.build() {
|
|
1428
330
|
}
|
|
1429
331
|
|
|
@@ -1435,7 +337,7 @@ class UpdateClusterCommand extends smithyClient.Command
|
|
|
1435
337
|
})
|
|
1436
338
|
.s("AmazonDAXV3", "UpdateCluster", {})
|
|
1437
339
|
.n("DAXClient", "UpdateClusterCommand")
|
|
1438
|
-
.sc(UpdateCluster$)
|
|
340
|
+
.sc(schemas_0.UpdateCluster$)
|
|
1439
341
|
.build() {
|
|
1440
342
|
}
|
|
1441
343
|
|
|
@@ -1447,7 +349,7 @@ class UpdateParameterGroupCommand extends smithyClient.Command
|
|
|
1447
349
|
})
|
|
1448
350
|
.s("AmazonDAXV3", "UpdateParameterGroup", {})
|
|
1449
351
|
.n("DAXClient", "UpdateParameterGroupCommand")
|
|
1450
|
-
.sc(UpdateParameterGroup$)
|
|
352
|
+
.sc(schemas_0.UpdateParameterGroup$)
|
|
1451
353
|
.build() {
|
|
1452
354
|
}
|
|
1453
355
|
|
|
@@ -1459,7 +361,7 @@ class UpdateSubnetGroupCommand extends smithyClient.Command
|
|
|
1459
361
|
})
|
|
1460
362
|
.s("AmazonDAXV3", "UpdateSubnetGroup", {})
|
|
1461
363
|
.n("DAXClient", "UpdateSubnetGroupCommand")
|
|
1462
|
-
.sc(UpdateSubnetGroup$)
|
|
364
|
+
.sc(schemas_0.UpdateSubnetGroup$)
|
|
1463
365
|
.build() {
|
|
1464
366
|
}
|
|
1465
367
|
|
|
@@ -1532,170 +434,49 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1532
434
|
enumerable: true,
|
|
1533
435
|
get: function () { return smithyClient.Client; }
|
|
1534
436
|
});
|
|
437
|
+
Object.defineProperty(exports, "DAXServiceException", {
|
|
438
|
+
enumerable: true,
|
|
439
|
+
get: function () { return DAXServiceException.DAXServiceException; }
|
|
440
|
+
});
|
|
1535
441
|
exports.ChangeType = ChangeType;
|
|
1536
|
-
exports.Cluster$ = Cluster$;
|
|
1537
|
-
exports.ClusterAlreadyExistsFault = ClusterAlreadyExistsFault;
|
|
1538
|
-
exports.ClusterAlreadyExistsFault$ = ClusterAlreadyExistsFault$;
|
|
1539
442
|
exports.ClusterEndpointEncryptionType = ClusterEndpointEncryptionType;
|
|
1540
|
-
exports.ClusterNotFoundFault = ClusterNotFoundFault;
|
|
1541
|
-
exports.ClusterNotFoundFault$ = ClusterNotFoundFault$;
|
|
1542
|
-
exports.ClusterQuotaForCustomerExceededFault = ClusterQuotaForCustomerExceededFault;
|
|
1543
|
-
exports.ClusterQuotaForCustomerExceededFault$ = ClusterQuotaForCustomerExceededFault$;
|
|
1544
|
-
exports.CreateCluster$ = CreateCluster$;
|
|
1545
443
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
1546
|
-
exports.CreateClusterRequest$ = CreateClusterRequest$;
|
|
1547
|
-
exports.CreateClusterResponse$ = CreateClusterResponse$;
|
|
1548
|
-
exports.CreateParameterGroup$ = CreateParameterGroup$;
|
|
1549
444
|
exports.CreateParameterGroupCommand = CreateParameterGroupCommand;
|
|
1550
|
-
exports.CreateParameterGroupRequest$ = CreateParameterGroupRequest$;
|
|
1551
|
-
exports.CreateParameterGroupResponse$ = CreateParameterGroupResponse$;
|
|
1552
|
-
exports.CreateSubnetGroup$ = CreateSubnetGroup$;
|
|
1553
445
|
exports.CreateSubnetGroupCommand = CreateSubnetGroupCommand;
|
|
1554
|
-
exports.CreateSubnetGroupRequest$ = CreateSubnetGroupRequest$;
|
|
1555
|
-
exports.CreateSubnetGroupResponse$ = CreateSubnetGroupResponse$;
|
|
1556
446
|
exports.DAX = DAX;
|
|
1557
447
|
exports.DAXClient = DAXClient;
|
|
1558
|
-
exports.DAXServiceException = DAXServiceException;
|
|
1559
|
-
exports.DAXServiceException$ = DAXServiceException$;
|
|
1560
|
-
exports.DecreaseReplicationFactor$ = DecreaseReplicationFactor$;
|
|
1561
448
|
exports.DecreaseReplicationFactorCommand = DecreaseReplicationFactorCommand;
|
|
1562
|
-
exports.DecreaseReplicationFactorRequest$ = DecreaseReplicationFactorRequest$;
|
|
1563
|
-
exports.DecreaseReplicationFactorResponse$ = DecreaseReplicationFactorResponse$;
|
|
1564
|
-
exports.DeleteCluster$ = DeleteCluster$;
|
|
1565
449
|
exports.DeleteClusterCommand = DeleteClusterCommand;
|
|
1566
|
-
exports.DeleteClusterRequest$ = DeleteClusterRequest$;
|
|
1567
|
-
exports.DeleteClusterResponse$ = DeleteClusterResponse$;
|
|
1568
|
-
exports.DeleteParameterGroup$ = DeleteParameterGroup$;
|
|
1569
450
|
exports.DeleteParameterGroupCommand = DeleteParameterGroupCommand;
|
|
1570
|
-
exports.DeleteParameterGroupRequest$ = DeleteParameterGroupRequest$;
|
|
1571
|
-
exports.DeleteParameterGroupResponse$ = DeleteParameterGroupResponse$;
|
|
1572
|
-
exports.DeleteSubnetGroup$ = DeleteSubnetGroup$;
|
|
1573
451
|
exports.DeleteSubnetGroupCommand = DeleteSubnetGroupCommand;
|
|
1574
|
-
exports.DeleteSubnetGroupRequest$ = DeleteSubnetGroupRequest$;
|
|
1575
|
-
exports.DeleteSubnetGroupResponse$ = DeleteSubnetGroupResponse$;
|
|
1576
|
-
exports.DescribeClusters$ = DescribeClusters$;
|
|
1577
452
|
exports.DescribeClustersCommand = DescribeClustersCommand;
|
|
1578
|
-
exports.DescribeClustersRequest$ = DescribeClustersRequest$;
|
|
1579
|
-
exports.DescribeClustersResponse$ = DescribeClustersResponse$;
|
|
1580
|
-
exports.DescribeDefaultParameters$ = DescribeDefaultParameters$;
|
|
1581
453
|
exports.DescribeDefaultParametersCommand = DescribeDefaultParametersCommand;
|
|
1582
|
-
exports.DescribeDefaultParametersRequest$ = DescribeDefaultParametersRequest$;
|
|
1583
|
-
exports.DescribeDefaultParametersResponse$ = DescribeDefaultParametersResponse$;
|
|
1584
|
-
exports.DescribeEvents$ = DescribeEvents$;
|
|
1585
454
|
exports.DescribeEventsCommand = DescribeEventsCommand;
|
|
1586
|
-
exports.DescribeEventsRequest$ = DescribeEventsRequest$;
|
|
1587
|
-
exports.DescribeEventsResponse$ = DescribeEventsResponse$;
|
|
1588
|
-
exports.DescribeParameterGroups$ = DescribeParameterGroups$;
|
|
1589
455
|
exports.DescribeParameterGroupsCommand = DescribeParameterGroupsCommand;
|
|
1590
|
-
exports.DescribeParameterGroupsRequest$ = DescribeParameterGroupsRequest$;
|
|
1591
|
-
exports.DescribeParameterGroupsResponse$ = DescribeParameterGroupsResponse$;
|
|
1592
|
-
exports.DescribeParameters$ = DescribeParameters$;
|
|
1593
456
|
exports.DescribeParametersCommand = DescribeParametersCommand;
|
|
1594
|
-
exports.DescribeParametersRequest$ = DescribeParametersRequest$;
|
|
1595
|
-
exports.DescribeParametersResponse$ = DescribeParametersResponse$;
|
|
1596
|
-
exports.DescribeSubnetGroups$ = DescribeSubnetGroups$;
|
|
1597
457
|
exports.DescribeSubnetGroupsCommand = DescribeSubnetGroupsCommand;
|
|
1598
|
-
exports.DescribeSubnetGroupsRequest$ = DescribeSubnetGroupsRequest$;
|
|
1599
|
-
exports.DescribeSubnetGroupsResponse$ = DescribeSubnetGroupsResponse$;
|
|
1600
|
-
exports.Endpoint$ = Endpoint$;
|
|
1601
|
-
exports.Event$ = Event$;
|
|
1602
|
-
exports.IncreaseReplicationFactor$ = IncreaseReplicationFactor$;
|
|
1603
458
|
exports.IncreaseReplicationFactorCommand = IncreaseReplicationFactorCommand;
|
|
1604
|
-
exports.IncreaseReplicationFactorRequest$ = IncreaseReplicationFactorRequest$;
|
|
1605
|
-
exports.IncreaseReplicationFactorResponse$ = IncreaseReplicationFactorResponse$;
|
|
1606
|
-
exports.InsufficientClusterCapacityFault = InsufficientClusterCapacityFault;
|
|
1607
|
-
exports.InsufficientClusterCapacityFault$ = InsufficientClusterCapacityFault$;
|
|
1608
|
-
exports.InvalidARNFault = InvalidARNFault;
|
|
1609
|
-
exports.InvalidARNFault$ = InvalidARNFault$;
|
|
1610
|
-
exports.InvalidClusterStateFault = InvalidClusterStateFault;
|
|
1611
|
-
exports.InvalidClusterStateFault$ = InvalidClusterStateFault$;
|
|
1612
|
-
exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
|
|
1613
|
-
exports.InvalidParameterCombinationException$ = InvalidParameterCombinationException$;
|
|
1614
|
-
exports.InvalidParameterGroupStateFault = InvalidParameterGroupStateFault;
|
|
1615
|
-
exports.InvalidParameterGroupStateFault$ = InvalidParameterGroupStateFault$;
|
|
1616
|
-
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
1617
|
-
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
1618
|
-
exports.InvalidSubnet = InvalidSubnet;
|
|
1619
|
-
exports.InvalidSubnet$ = InvalidSubnet$;
|
|
1620
|
-
exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault;
|
|
1621
|
-
exports.InvalidVPCNetworkStateFault$ = InvalidVPCNetworkStateFault$;
|
|
1622
459
|
exports.IsModifiable = IsModifiable;
|
|
1623
|
-
exports.ListTags$ = ListTags$;
|
|
1624
460
|
exports.ListTagsCommand = ListTagsCommand;
|
|
1625
|
-
exports.ListTagsRequest$ = ListTagsRequest$;
|
|
1626
|
-
exports.ListTagsResponse$ = ListTagsResponse$;
|
|
1627
461
|
exports.NetworkType = NetworkType;
|
|
1628
|
-
exports.Node$ = Node$;
|
|
1629
|
-
exports.NodeNotFoundFault = NodeNotFoundFault;
|
|
1630
|
-
exports.NodeNotFoundFault$ = NodeNotFoundFault$;
|
|
1631
|
-
exports.NodeQuotaForClusterExceededFault = NodeQuotaForClusterExceededFault;
|
|
1632
|
-
exports.NodeQuotaForClusterExceededFault$ = NodeQuotaForClusterExceededFault$;
|
|
1633
|
-
exports.NodeQuotaForCustomerExceededFault = NodeQuotaForCustomerExceededFault;
|
|
1634
|
-
exports.NodeQuotaForCustomerExceededFault$ = NodeQuotaForCustomerExceededFault$;
|
|
1635
|
-
exports.NodeTypeSpecificValue$ = NodeTypeSpecificValue$;
|
|
1636
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
1637
|
-
exports.Parameter$ = Parameter$;
|
|
1638
|
-
exports.ParameterGroup$ = ParameterGroup$;
|
|
1639
|
-
exports.ParameterGroupAlreadyExistsFault = ParameterGroupAlreadyExistsFault;
|
|
1640
|
-
exports.ParameterGroupAlreadyExistsFault$ = ParameterGroupAlreadyExistsFault$;
|
|
1641
|
-
exports.ParameterGroupNotFoundFault = ParameterGroupNotFoundFault;
|
|
1642
|
-
exports.ParameterGroupNotFoundFault$ = ParameterGroupNotFoundFault$;
|
|
1643
|
-
exports.ParameterGroupQuotaExceededFault = ParameterGroupQuotaExceededFault;
|
|
1644
|
-
exports.ParameterGroupQuotaExceededFault$ = ParameterGroupQuotaExceededFault$;
|
|
1645
|
-
exports.ParameterGroupStatus$ = ParameterGroupStatus$;
|
|
1646
|
-
exports.ParameterNameValue$ = ParameterNameValue$;
|
|
1647
462
|
exports.ParameterType = ParameterType;
|
|
1648
|
-
exports.RebootNode$ = RebootNode$;
|
|
1649
463
|
exports.RebootNodeCommand = RebootNodeCommand;
|
|
1650
|
-
exports.RebootNodeRequest$ = RebootNodeRequest$;
|
|
1651
|
-
exports.RebootNodeResponse$ = RebootNodeResponse$;
|
|
1652
|
-
exports.SSEDescription$ = SSEDescription$;
|
|
1653
|
-
exports.SSESpecification$ = SSESpecification$;
|
|
1654
464
|
exports.SSEStatus = SSEStatus;
|
|
1655
|
-
exports.SecurityGroupMembership$ = SecurityGroupMembership$;
|
|
1656
|
-
exports.ServiceLinkedRoleNotFoundFault = ServiceLinkedRoleNotFoundFault;
|
|
1657
|
-
exports.ServiceLinkedRoleNotFoundFault$ = ServiceLinkedRoleNotFoundFault$;
|
|
1658
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1659
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1660
465
|
exports.SourceType = SourceType;
|
|
1661
|
-
exports.Subnet$ = Subnet$;
|
|
1662
|
-
exports.SubnetGroup$ = SubnetGroup$;
|
|
1663
|
-
exports.SubnetGroupAlreadyExistsFault = SubnetGroupAlreadyExistsFault;
|
|
1664
|
-
exports.SubnetGroupAlreadyExistsFault$ = SubnetGroupAlreadyExistsFault$;
|
|
1665
|
-
exports.SubnetGroupInUseFault = SubnetGroupInUseFault;
|
|
1666
|
-
exports.SubnetGroupInUseFault$ = SubnetGroupInUseFault$;
|
|
1667
|
-
exports.SubnetGroupNotFoundFault = SubnetGroupNotFoundFault;
|
|
1668
|
-
exports.SubnetGroupNotFoundFault$ = SubnetGroupNotFoundFault$;
|
|
1669
|
-
exports.SubnetGroupQuotaExceededFault = SubnetGroupQuotaExceededFault;
|
|
1670
|
-
exports.SubnetGroupQuotaExceededFault$ = SubnetGroupQuotaExceededFault$;
|
|
1671
|
-
exports.SubnetInUse = SubnetInUse;
|
|
1672
|
-
exports.SubnetInUse$ = SubnetInUse$;
|
|
1673
|
-
exports.SubnetNotAllowedFault = SubnetNotAllowedFault;
|
|
1674
|
-
exports.SubnetNotAllowedFault$ = SubnetNotAllowedFault$;
|
|
1675
|
-
exports.SubnetQuotaExceededFault = SubnetQuotaExceededFault;
|
|
1676
|
-
exports.SubnetQuotaExceededFault$ = SubnetQuotaExceededFault$;
|
|
1677
|
-
exports.Tag$ = Tag$;
|
|
1678
|
-
exports.TagNotFoundFault = TagNotFoundFault;
|
|
1679
|
-
exports.TagNotFoundFault$ = TagNotFoundFault$;
|
|
1680
|
-
exports.TagQuotaPerResourceExceeded = TagQuotaPerResourceExceeded;
|
|
1681
|
-
exports.TagQuotaPerResourceExceeded$ = TagQuotaPerResourceExceeded$;
|
|
1682
|
-
exports.TagResource$ = TagResource$;
|
|
1683
466
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1684
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1685
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1686
|
-
exports.UntagResource$ = UntagResource$;
|
|
1687
467
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1688
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1689
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1690
|
-
exports.UpdateCluster$ = UpdateCluster$;
|
|
1691
468
|
exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
1692
|
-
exports.UpdateClusterRequest$ = UpdateClusterRequest$;
|
|
1693
|
-
exports.UpdateClusterResponse$ = UpdateClusterResponse$;
|
|
1694
|
-
exports.UpdateParameterGroup$ = UpdateParameterGroup$;
|
|
1695
469
|
exports.UpdateParameterGroupCommand = UpdateParameterGroupCommand;
|
|
1696
|
-
exports.UpdateParameterGroupRequest$ = UpdateParameterGroupRequest$;
|
|
1697
|
-
exports.UpdateParameterGroupResponse$ = UpdateParameterGroupResponse$;
|
|
1698
|
-
exports.UpdateSubnetGroup$ = UpdateSubnetGroup$;
|
|
1699
470
|
exports.UpdateSubnetGroupCommand = UpdateSubnetGroupCommand;
|
|
1700
|
-
|
|
1701
|
-
exports.
|
|
471
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
472
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
473
|
+
enumerable: true,
|
|
474
|
+
get: function () { return schemas_0[k]; }
|
|
475
|
+
});
|
|
476
|
+
});
|
|
477
|
+
Object.keys(errors).forEach(function (k) {
|
|
478
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
479
|
+
enumerable: true,
|
|
480
|
+
get: function () { return errors[k]; }
|
|
481
|
+
});
|
|
482
|
+
});
|