@aws-sdk/client-dax 3.926.0 → 3.928.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist-cjs/index.js +1038 -1133
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/DAXClient.js +2 -0
  4. package/dist-es/commands/CreateClusterCommand.js +3 -9
  5. package/dist-es/commands/CreateParameterGroupCommand.js +3 -9
  6. package/dist-es/commands/CreateSubnetGroupCommand.js +3 -9
  7. package/dist-es/commands/DecreaseReplicationFactorCommand.js +3 -9
  8. package/dist-es/commands/DeleteClusterCommand.js +3 -9
  9. package/dist-es/commands/DeleteParameterGroupCommand.js +3 -9
  10. package/dist-es/commands/DeleteSubnetGroupCommand.js +3 -9
  11. package/dist-es/commands/DescribeClustersCommand.js +3 -9
  12. package/dist-es/commands/DescribeDefaultParametersCommand.js +3 -9
  13. package/dist-es/commands/DescribeEventsCommand.js +3 -9
  14. package/dist-es/commands/DescribeParameterGroupsCommand.js +3 -9
  15. package/dist-es/commands/DescribeParametersCommand.js +3 -9
  16. package/dist-es/commands/DescribeSubnetGroupsCommand.js +3 -9
  17. package/dist-es/commands/IncreaseReplicationFactorCommand.js +3 -9
  18. package/dist-es/commands/ListTagsCommand.js +3 -9
  19. package/dist-es/commands/RebootNodeCommand.js +3 -9
  20. package/dist-es/commands/TagResourceCommand.js +3 -9
  21. package/dist-es/commands/UntagResourceCommand.js +3 -9
  22. package/dist-es/commands/UpdateClusterCommand.js +3 -9
  23. package/dist-es/commands/UpdateParameterGroupCommand.js +3 -9
  24. package/dist-es/commands/UpdateSubnetGroupCommand.js +3 -9
  25. package/dist-es/runtimeConfig.shared.js +7 -0
  26. package/dist-es/schemas/schemas_0.js +920 -0
  27. package/dist-types/DAXClient.d.ts +10 -1
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  29. package/dist-types/runtimeConfig.d.ts +1 -0
  30. package/dist-types/runtimeConfig.native.d.ts +1 -0
  31. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  32. package/dist-types/schemas/schemas_0.d.ts +130 -0
  33. package/dist-types/ts3.4/DAXClient.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  38. package/dist-types/ts3.4/schemas/schemas_0.d.ts +135 -0
  39. package/package.json +5 -5
  40. package/dist-es/protocols/Aws_json1_1.js +0 -906
  41. package/dist-types/protocols/Aws_json1_1.d.ts +0 -191
  42. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -257
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class DAXClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,14 +110,14 @@ class DAXClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class DAXServiceException extends smithyClient.ServiceException {
113
+ let DAXServiceException$1 = class DAXServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, DAXServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- class ClusterAlreadyExistsFault extends DAXServiceException {
120
+ let ClusterAlreadyExistsFault$1 = class ClusterAlreadyExistsFault extends DAXServiceException$1 {
121
121
  name = "ClusterAlreadyExistsFault";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ class ClusterAlreadyExistsFault extends DAXServiceException {
128
128
  });
129
129
  Object.setPrototypeOf(this, ClusterAlreadyExistsFault.prototype);
130
130
  }
131
- }
132
- class ClusterQuotaForCustomerExceededFault extends DAXServiceException {
131
+ };
132
+ let ClusterQuotaForCustomerExceededFault$1 = class ClusterQuotaForCustomerExceededFault extends DAXServiceException$1 {
133
133
  name = "ClusterQuotaForCustomerExceededFault";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,7 +140,7 @@ class ClusterQuotaForCustomerExceededFault extends DAXServiceException {
140
140
  });
141
141
  Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
142
142
  }
143
- }
143
+ };
144
144
  const ClusterEndpointEncryptionType = {
145
145
  NONE: "NONE",
146
146
  TLS: "TLS",
@@ -156,7 +156,7 @@ const SSEStatus = {
156
156
  ENABLED: "ENABLED",
157
157
  ENABLING: "ENABLING",
158
158
  };
159
- class InsufficientClusterCapacityFault extends DAXServiceException {
159
+ let InsufficientClusterCapacityFault$1 = class InsufficientClusterCapacityFault extends DAXServiceException$1 {
160
160
  name = "InsufficientClusterCapacityFault";
161
161
  $fault = "client";
162
162
  constructor(opts) {
@@ -167,8 +167,8 @@ class InsufficientClusterCapacityFault extends DAXServiceException {
167
167
  });
168
168
  Object.setPrototypeOf(this, InsufficientClusterCapacityFault.prototype);
169
169
  }
170
- }
171
- class InvalidClusterStateFault extends DAXServiceException {
170
+ };
171
+ let InvalidClusterStateFault$1 = class InvalidClusterStateFault extends DAXServiceException$1 {
172
172
  name = "InvalidClusterStateFault";
173
173
  $fault = "client";
174
174
  constructor(opts) {
@@ -179,8 +179,8 @@ class InvalidClusterStateFault extends DAXServiceException {
179
179
  });
180
180
  Object.setPrototypeOf(this, InvalidClusterStateFault.prototype);
181
181
  }
182
- }
183
- class InvalidParameterCombinationException extends DAXServiceException {
182
+ };
183
+ let InvalidParameterCombinationException$1 = class InvalidParameterCombinationException extends DAXServiceException$1 {
184
184
  name = "InvalidParameterCombinationException";
185
185
  $fault = "client";
186
186
  constructor(opts) {
@@ -191,8 +191,8 @@ class InvalidParameterCombinationException extends DAXServiceException {
191
191
  });
192
192
  Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
193
193
  }
194
- }
195
- class InvalidParameterGroupStateFault extends DAXServiceException {
194
+ };
195
+ let InvalidParameterGroupStateFault$1 = class InvalidParameterGroupStateFault extends DAXServiceException$1 {
196
196
  name = "InvalidParameterGroupStateFault";
197
197
  $fault = "client";
198
198
  constructor(opts) {
@@ -203,8 +203,8 @@ class InvalidParameterGroupStateFault extends DAXServiceException {
203
203
  });
204
204
  Object.setPrototypeOf(this, InvalidParameterGroupStateFault.prototype);
205
205
  }
206
- }
207
- class InvalidParameterValueException extends DAXServiceException {
206
+ };
207
+ let InvalidParameterValueException$1 = class InvalidParameterValueException extends DAXServiceException$1 {
208
208
  name = "InvalidParameterValueException";
209
209
  $fault = "client";
210
210
  constructor(opts) {
@@ -215,8 +215,8 @@ class InvalidParameterValueException extends DAXServiceException {
215
215
  });
216
216
  Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
217
217
  }
218
- }
219
- class InvalidVPCNetworkStateFault extends DAXServiceException {
218
+ };
219
+ let InvalidVPCNetworkStateFault$1 = class InvalidVPCNetworkStateFault extends DAXServiceException$1 {
220
220
  name = "InvalidVPCNetworkStateFault";
221
221
  $fault = "client";
222
222
  constructor(opts) {
@@ -227,8 +227,8 @@ class InvalidVPCNetworkStateFault extends DAXServiceException {
227
227
  });
228
228
  Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
229
229
  }
230
- }
231
- class NodeQuotaForClusterExceededFault extends DAXServiceException {
230
+ };
231
+ let NodeQuotaForClusterExceededFault$1 = class NodeQuotaForClusterExceededFault extends DAXServiceException$1 {
232
232
  name = "NodeQuotaForClusterExceededFault";
233
233
  $fault = "client";
234
234
  constructor(opts) {
@@ -239,8 +239,8 @@ class NodeQuotaForClusterExceededFault extends DAXServiceException {
239
239
  });
240
240
  Object.setPrototypeOf(this, NodeQuotaForClusterExceededFault.prototype);
241
241
  }
242
- }
243
- class NodeQuotaForCustomerExceededFault extends DAXServiceException {
242
+ };
243
+ let NodeQuotaForCustomerExceededFault$1 = class NodeQuotaForCustomerExceededFault extends DAXServiceException$1 {
244
244
  name = "NodeQuotaForCustomerExceededFault";
245
245
  $fault = "client";
246
246
  constructor(opts) {
@@ -251,8 +251,8 @@ class NodeQuotaForCustomerExceededFault extends DAXServiceException {
251
251
  });
252
252
  Object.setPrototypeOf(this, NodeQuotaForCustomerExceededFault.prototype);
253
253
  }
254
- }
255
- class ParameterGroupNotFoundFault extends DAXServiceException {
254
+ };
255
+ let ParameterGroupNotFoundFault$1 = class ParameterGroupNotFoundFault extends DAXServiceException$1 {
256
256
  name = "ParameterGroupNotFoundFault";
257
257
  $fault = "client";
258
258
  constructor(opts) {
@@ -263,8 +263,8 @@ class ParameterGroupNotFoundFault extends DAXServiceException {
263
263
  });
264
264
  Object.setPrototypeOf(this, ParameterGroupNotFoundFault.prototype);
265
265
  }
266
- }
267
- class ServiceLinkedRoleNotFoundFault extends DAXServiceException {
266
+ };
267
+ let ServiceLinkedRoleNotFoundFault$1 = class ServiceLinkedRoleNotFoundFault extends DAXServiceException$1 {
268
268
  name = "ServiceLinkedRoleNotFoundFault";
269
269
  $fault = "client";
270
270
  constructor(opts) {
@@ -275,8 +275,8 @@ class ServiceLinkedRoleNotFoundFault extends DAXServiceException {
275
275
  });
276
276
  Object.setPrototypeOf(this, ServiceLinkedRoleNotFoundFault.prototype);
277
277
  }
278
- }
279
- class ServiceQuotaExceededException extends DAXServiceException {
278
+ };
279
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends DAXServiceException$1 {
280
280
  name = "ServiceQuotaExceededException";
281
281
  $fault = "client";
282
282
  constructor(opts) {
@@ -287,8 +287,8 @@ class ServiceQuotaExceededException extends DAXServiceException {
287
287
  });
288
288
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
289
289
  }
290
- }
291
- class SubnetGroupNotFoundFault extends DAXServiceException {
290
+ };
291
+ let SubnetGroupNotFoundFault$1 = class SubnetGroupNotFoundFault extends DAXServiceException$1 {
292
292
  name = "SubnetGroupNotFoundFault";
293
293
  $fault = "client";
294
294
  constructor(opts) {
@@ -299,8 +299,8 @@ class SubnetGroupNotFoundFault extends DAXServiceException {
299
299
  });
300
300
  Object.setPrototypeOf(this, SubnetGroupNotFoundFault.prototype);
301
301
  }
302
- }
303
- class TagQuotaPerResourceExceeded extends DAXServiceException {
302
+ };
303
+ let TagQuotaPerResourceExceeded$1 = class TagQuotaPerResourceExceeded extends DAXServiceException$1 {
304
304
  name = "TagQuotaPerResourceExceeded";
305
305
  $fault = "client";
306
306
  constructor(opts) {
@@ -311,8 +311,8 @@ class TagQuotaPerResourceExceeded extends DAXServiceException {
311
311
  });
312
312
  Object.setPrototypeOf(this, TagQuotaPerResourceExceeded.prototype);
313
313
  }
314
- }
315
- class ParameterGroupAlreadyExistsFault extends DAXServiceException {
314
+ };
315
+ let ParameterGroupAlreadyExistsFault$1 = class ParameterGroupAlreadyExistsFault extends DAXServiceException$1 {
316
316
  name = "ParameterGroupAlreadyExistsFault";
317
317
  $fault = "client";
318
318
  constructor(opts) {
@@ -323,8 +323,8 @@ class ParameterGroupAlreadyExistsFault extends DAXServiceException {
323
323
  });
324
324
  Object.setPrototypeOf(this, ParameterGroupAlreadyExistsFault.prototype);
325
325
  }
326
- }
327
- class ParameterGroupQuotaExceededFault extends DAXServiceException {
326
+ };
327
+ let ParameterGroupQuotaExceededFault$1 = class ParameterGroupQuotaExceededFault extends DAXServiceException$1 {
328
328
  name = "ParameterGroupQuotaExceededFault";
329
329
  $fault = "client";
330
330
  constructor(opts) {
@@ -335,8 +335,8 @@ class ParameterGroupQuotaExceededFault extends DAXServiceException {
335
335
  });
336
336
  Object.setPrototypeOf(this, ParameterGroupQuotaExceededFault.prototype);
337
337
  }
338
- }
339
- class InvalidSubnet extends DAXServiceException {
338
+ };
339
+ let InvalidSubnet$1 = class InvalidSubnet extends DAXServiceException$1 {
340
340
  name = "InvalidSubnet";
341
341
  $fault = "client";
342
342
  constructor(opts) {
@@ -347,8 +347,8 @@ class InvalidSubnet extends DAXServiceException {
347
347
  });
348
348
  Object.setPrototypeOf(this, InvalidSubnet.prototype);
349
349
  }
350
- }
351
- class SubnetGroupAlreadyExistsFault extends DAXServiceException {
350
+ };
351
+ let SubnetGroupAlreadyExistsFault$1 = class SubnetGroupAlreadyExistsFault extends DAXServiceException$1 {
352
352
  name = "SubnetGroupAlreadyExistsFault";
353
353
  $fault = "client";
354
354
  constructor(opts) {
@@ -359,8 +359,8 @@ class SubnetGroupAlreadyExistsFault extends DAXServiceException {
359
359
  });
360
360
  Object.setPrototypeOf(this, SubnetGroupAlreadyExistsFault.prototype);
361
361
  }
362
- }
363
- class SubnetGroupQuotaExceededFault extends DAXServiceException {
362
+ };
363
+ let SubnetGroupQuotaExceededFault$1 = class SubnetGroupQuotaExceededFault extends DAXServiceException$1 {
364
364
  name = "SubnetGroupQuotaExceededFault";
365
365
  $fault = "client";
366
366
  constructor(opts) {
@@ -371,8 +371,8 @@ class SubnetGroupQuotaExceededFault extends DAXServiceException {
371
371
  });
372
372
  Object.setPrototypeOf(this, SubnetGroupQuotaExceededFault.prototype);
373
373
  }
374
- }
375
- class SubnetNotAllowedFault extends DAXServiceException {
374
+ };
375
+ let SubnetNotAllowedFault$1 = class SubnetNotAllowedFault extends DAXServiceException$1 {
376
376
  name = "SubnetNotAllowedFault";
377
377
  $fault = "client";
378
378
  constructor(opts) {
@@ -383,8 +383,8 @@ class SubnetNotAllowedFault extends DAXServiceException {
383
383
  });
384
384
  Object.setPrototypeOf(this, SubnetNotAllowedFault.prototype);
385
385
  }
386
- }
387
- class SubnetQuotaExceededFault extends DAXServiceException {
386
+ };
387
+ let SubnetQuotaExceededFault$1 = class SubnetQuotaExceededFault extends DAXServiceException$1 {
388
388
  name = "SubnetQuotaExceededFault";
389
389
  $fault = "client";
390
390
  constructor(opts) {
@@ -395,8 +395,8 @@ class SubnetQuotaExceededFault extends DAXServiceException {
395
395
  });
396
396
  Object.setPrototypeOf(this, SubnetQuotaExceededFault.prototype);
397
397
  }
398
- }
399
- class ClusterNotFoundFault extends DAXServiceException {
398
+ };
399
+ let ClusterNotFoundFault$1 = class ClusterNotFoundFault extends DAXServiceException$1 {
400
400
  name = "ClusterNotFoundFault";
401
401
  $fault = "client";
402
402
  constructor(opts) {
@@ -407,8 +407,8 @@ class ClusterNotFoundFault extends DAXServiceException {
407
407
  });
408
408
  Object.setPrototypeOf(this, ClusterNotFoundFault.prototype);
409
409
  }
410
- }
411
- class NodeNotFoundFault extends DAXServiceException {
410
+ };
411
+ let NodeNotFoundFault$1 = class NodeNotFoundFault extends DAXServiceException$1 {
412
412
  name = "NodeNotFoundFault";
413
413
  $fault = "client";
414
414
  constructor(opts) {
@@ -419,8 +419,8 @@ class NodeNotFoundFault extends DAXServiceException {
419
419
  });
420
420
  Object.setPrototypeOf(this, NodeNotFoundFault.prototype);
421
421
  }
422
- }
423
- class SubnetGroupInUseFault extends DAXServiceException {
422
+ };
423
+ let SubnetGroupInUseFault$1 = class SubnetGroupInUseFault extends DAXServiceException$1 {
424
424
  name = "SubnetGroupInUseFault";
425
425
  $fault = "client";
426
426
  constructor(opts) {
@@ -431,7 +431,7 @@ class SubnetGroupInUseFault extends DAXServiceException {
431
431
  });
432
432
  Object.setPrototypeOf(this, SubnetGroupInUseFault.prototype);
433
433
  }
434
- }
434
+ };
435
435
  const ChangeType = {
436
436
  IMMEDIATE: "IMMEDIATE",
437
437
  REQUIRES_REBOOT: "REQUIRES_REBOOT",
@@ -450,7 +450,7 @@ const SourceType = {
450
450
  PARAMETER_GROUP: "PARAMETER_GROUP",
451
451
  SUBNET_GROUP: "SUBNET_GROUP",
452
452
  };
453
- class InvalidARNFault extends DAXServiceException {
453
+ let InvalidARNFault$1 = class InvalidARNFault extends DAXServiceException$1 {
454
454
  name = "InvalidARNFault";
455
455
  $fault = "client";
456
456
  constructor(opts) {
@@ -461,8 +461,8 @@ class InvalidARNFault extends DAXServiceException {
461
461
  });
462
462
  Object.setPrototypeOf(this, InvalidARNFault.prototype);
463
463
  }
464
- }
465
- class TagNotFoundFault extends DAXServiceException {
464
+ };
465
+ let TagNotFoundFault$1 = class TagNotFoundFault extends DAXServiceException$1 {
466
466
  name = "TagNotFoundFault";
467
467
  $fault = "client";
468
468
  constructor(opts) {
@@ -473,8 +473,8 @@ class TagNotFoundFault extends DAXServiceException {
473
473
  });
474
474
  Object.setPrototypeOf(this, TagNotFoundFault.prototype);
475
475
  }
476
- }
477
- class SubnetInUse extends DAXServiceException {
476
+ };
477
+ let SubnetInUse$1 = class SubnetInUse extends DAXServiceException$1 {
478
478
  name = "SubnetInUse";
479
479
  $fault = "client";
480
480
  constructor(opts) {
@@ -485,920 +485,925 @@ class SubnetInUse extends DAXServiceException {
485
485
  });
486
486
  Object.setPrototypeOf(this, SubnetInUse.prototype);
487
487
  }
488
- }
489
-
490
- const se_CreateClusterCommand = async (input, context) => {
491
- const headers = sharedHeaders("CreateCluster");
492
- let body;
493
- body = JSON.stringify(smithyClient._json(input));
494
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
495
- };
496
- const se_CreateParameterGroupCommand = async (input, context) => {
497
- const headers = sharedHeaders("CreateParameterGroup");
498
- let body;
499
- body = JSON.stringify(smithyClient._json(input));
500
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
501
- };
502
- const se_CreateSubnetGroupCommand = async (input, context) => {
503
- const headers = sharedHeaders("CreateSubnetGroup");
504
- let body;
505
- body = JSON.stringify(smithyClient._json(input));
506
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
507
- };
508
- const se_DecreaseReplicationFactorCommand = async (input, context) => {
509
- const headers = sharedHeaders("DecreaseReplicationFactor");
510
- let body;
511
- body = JSON.stringify(smithyClient._json(input));
512
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
513
- };
514
- const se_DeleteClusterCommand = async (input, context) => {
515
- const headers = sharedHeaders("DeleteCluster");
516
- let body;
517
- body = JSON.stringify(smithyClient._json(input));
518
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
519
- };
520
- const se_DeleteParameterGroupCommand = async (input, context) => {
521
- const headers = sharedHeaders("DeleteParameterGroup");
522
- let body;
523
- body = JSON.stringify(smithyClient._json(input));
524
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
525
- };
526
- const se_DeleteSubnetGroupCommand = async (input, context) => {
527
- const headers = sharedHeaders("DeleteSubnetGroup");
528
- let body;
529
- body = JSON.stringify(smithyClient._json(input));
530
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
531
- };
532
- const se_DescribeClustersCommand = async (input, context) => {
533
- const headers = sharedHeaders("DescribeClusters");
534
- let body;
535
- body = JSON.stringify(smithyClient._json(input));
536
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
537
- };
538
- const se_DescribeDefaultParametersCommand = async (input, context) => {
539
- const headers = sharedHeaders("DescribeDefaultParameters");
540
- let body;
541
- body = JSON.stringify(smithyClient._json(input));
542
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
543
- };
544
- const se_DescribeEventsCommand = async (input, context) => {
545
- const headers = sharedHeaders("DescribeEvents");
546
- let body;
547
- body = JSON.stringify(se_DescribeEventsRequest(input));
548
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
549
- };
550
- const se_DescribeParameterGroupsCommand = async (input, context) => {
551
- const headers = sharedHeaders("DescribeParameterGroups");
552
- let body;
553
- body = JSON.stringify(smithyClient._json(input));
554
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
555
- };
556
- const se_DescribeParametersCommand = async (input, context) => {
557
- const headers = sharedHeaders("DescribeParameters");
558
- let body;
559
- body = JSON.stringify(smithyClient._json(input));
560
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
561
- };
562
- const se_DescribeSubnetGroupsCommand = async (input, context) => {
563
- const headers = sharedHeaders("DescribeSubnetGroups");
564
- let body;
565
- body = JSON.stringify(smithyClient._json(input));
566
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
567
- };
568
- const se_IncreaseReplicationFactorCommand = async (input, context) => {
569
- const headers = sharedHeaders("IncreaseReplicationFactor");
570
- let body;
571
- body = JSON.stringify(smithyClient._json(input));
572
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
573
- };
574
- const se_ListTagsCommand = async (input, context) => {
575
- const headers = sharedHeaders("ListTags");
576
- let body;
577
- body = JSON.stringify(smithyClient._json(input));
578
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
579
- };
580
- const se_RebootNodeCommand = async (input, context) => {
581
- const headers = sharedHeaders("RebootNode");
582
- let body;
583
- body = JSON.stringify(smithyClient._json(input));
584
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
585
- };
586
- const se_TagResourceCommand = async (input, context) => {
587
- const headers = sharedHeaders("TagResource");
588
- let body;
589
- body = JSON.stringify(smithyClient._json(input));
590
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
591
- };
592
- const se_UntagResourceCommand = async (input, context) => {
593
- const headers = sharedHeaders("UntagResource");
594
- let body;
595
- body = JSON.stringify(smithyClient._json(input));
596
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
597
- };
598
- const se_UpdateClusterCommand = async (input, context) => {
599
- const headers = sharedHeaders("UpdateCluster");
600
- let body;
601
- body = JSON.stringify(smithyClient._json(input));
602
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
603
- };
604
- const se_UpdateParameterGroupCommand = async (input, context) => {
605
- const headers = sharedHeaders("UpdateParameterGroup");
606
- let body;
607
- body = JSON.stringify(smithyClient._json(input));
608
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
609
- };
610
- const se_UpdateSubnetGroupCommand = async (input, context) => {
611
- const headers = sharedHeaders("UpdateSubnetGroup");
612
- let body;
613
- body = JSON.stringify(smithyClient._json(input));
614
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
615
- };
616
- const de_CreateClusterCommand = async (output, context) => {
617
- if (output.statusCode >= 300) {
618
- return de_CommandError(output, context);
619
- }
620
- const data = await core$1.parseJsonBody(output.body, context);
621
- let contents = {};
622
- contents = de_CreateClusterResponse(data);
623
- const response = {
624
- $metadata: deserializeMetadata(output),
625
- ...contents,
626
- };
627
- return response;
628
- };
629
- const de_CreateParameterGroupCommand = async (output, context) => {
630
- if (output.statusCode >= 300) {
631
- return de_CommandError(output, context);
632
- }
633
- const data = await core$1.parseJsonBody(output.body, context);
634
- let contents = {};
635
- contents = smithyClient._json(data);
636
- const response = {
637
- $metadata: deserializeMetadata(output),
638
- ...contents,
639
- };
640
- return response;
641
- };
642
- const de_CreateSubnetGroupCommand = async (output, context) => {
643
- if (output.statusCode >= 300) {
644
- return de_CommandError(output, context);
645
- }
646
- const data = await core$1.parseJsonBody(output.body, context);
647
- let contents = {};
648
- contents = smithyClient._json(data);
649
- const response = {
650
- $metadata: deserializeMetadata(output),
651
- ...contents,
652
- };
653
- return response;
654
- };
655
- const de_DecreaseReplicationFactorCommand = async (output, context) => {
656
- if (output.statusCode >= 300) {
657
- return de_CommandError(output, context);
658
- }
659
- const data = await core$1.parseJsonBody(output.body, context);
660
- let contents = {};
661
- contents = de_DecreaseReplicationFactorResponse(data);
662
- const response = {
663
- $metadata: deserializeMetadata(output),
664
- ...contents,
665
- };
666
- return response;
667
- };
668
- const de_DeleteClusterCommand = async (output, context) => {
669
- if (output.statusCode >= 300) {
670
- return de_CommandError(output, context);
671
- }
672
- const data = await core$1.parseJsonBody(output.body, context);
673
- let contents = {};
674
- contents = de_DeleteClusterResponse(data);
675
- const response = {
676
- $metadata: deserializeMetadata(output),
677
- ...contents,
678
- };
679
- return response;
680
- };
681
- const de_DeleteParameterGroupCommand = async (output, context) => {
682
- if (output.statusCode >= 300) {
683
- return de_CommandError(output, context);
684
- }
685
- const data = await core$1.parseJsonBody(output.body, context);
686
- let contents = {};
687
- contents = smithyClient._json(data);
688
- const response = {
689
- $metadata: deserializeMetadata(output),
690
- ...contents,
691
- };
692
- return response;
693
- };
694
- const de_DeleteSubnetGroupCommand = async (output, context) => {
695
- if (output.statusCode >= 300) {
696
- return de_CommandError(output, context);
697
- }
698
- const data = await core$1.parseJsonBody(output.body, context);
699
- let contents = {};
700
- contents = smithyClient._json(data);
701
- const response = {
702
- $metadata: deserializeMetadata(output),
703
- ...contents,
704
- };
705
- return response;
706
- };
707
- const de_DescribeClustersCommand = async (output, context) => {
708
- if (output.statusCode >= 300) {
709
- return de_CommandError(output, context);
710
- }
711
- const data = await core$1.parseJsonBody(output.body, context);
712
- let contents = {};
713
- contents = de_DescribeClustersResponse(data);
714
- const response = {
715
- $metadata: deserializeMetadata(output),
716
- ...contents,
717
- };
718
- return response;
719
- };
720
- const de_DescribeDefaultParametersCommand = async (output, context) => {
721
- if (output.statusCode >= 300) {
722
- return de_CommandError(output, context);
723
- }
724
- const data = await core$1.parseJsonBody(output.body, context);
725
- let contents = {};
726
- contents = smithyClient._json(data);
727
- const response = {
728
- $metadata: deserializeMetadata(output),
729
- ...contents,
730
- };
731
- return response;
732
- };
733
- const de_DescribeEventsCommand = async (output, context) => {
734
- if (output.statusCode >= 300) {
735
- return de_CommandError(output, context);
736
- }
737
- const data = await core$1.parseJsonBody(output.body, context);
738
- let contents = {};
739
- contents = de_DescribeEventsResponse(data);
740
- const response = {
741
- $metadata: deserializeMetadata(output),
742
- ...contents,
743
- };
744
- return response;
745
- };
746
- const de_DescribeParameterGroupsCommand = async (output, context) => {
747
- if (output.statusCode >= 300) {
748
- return de_CommandError(output, context);
749
- }
750
- const data = await core$1.parseJsonBody(output.body, context);
751
- let contents = {};
752
- contents = smithyClient._json(data);
753
- const response = {
754
- $metadata: deserializeMetadata(output),
755
- ...contents,
756
- };
757
- return response;
758
- };
759
- const de_DescribeParametersCommand = async (output, context) => {
760
- if (output.statusCode >= 300) {
761
- return de_CommandError(output, context);
762
- }
763
- const data = await core$1.parseJsonBody(output.body, context);
764
- let contents = {};
765
- contents = smithyClient._json(data);
766
- const response = {
767
- $metadata: deserializeMetadata(output),
768
- ...contents,
769
- };
770
- return response;
771
- };
772
- const de_DescribeSubnetGroupsCommand = async (output, context) => {
773
- if (output.statusCode >= 300) {
774
- return de_CommandError(output, context);
775
- }
776
- const data = await core$1.parseJsonBody(output.body, context);
777
- let contents = {};
778
- contents = smithyClient._json(data);
779
- const response = {
780
- $metadata: deserializeMetadata(output),
781
- ...contents,
782
- };
783
- return response;
784
- };
785
- const de_IncreaseReplicationFactorCommand = async (output, context) => {
786
- if (output.statusCode >= 300) {
787
- return de_CommandError(output, context);
788
- }
789
- const data = await core$1.parseJsonBody(output.body, context);
790
- let contents = {};
791
- contents = de_IncreaseReplicationFactorResponse(data);
792
- const response = {
793
- $metadata: deserializeMetadata(output),
794
- ...contents,
795
- };
796
- return response;
797
- };
798
- const de_ListTagsCommand = async (output, context) => {
799
- if (output.statusCode >= 300) {
800
- return de_CommandError(output, context);
801
- }
802
- const data = await core$1.parseJsonBody(output.body, context);
803
- let contents = {};
804
- contents = smithyClient._json(data);
805
- const response = {
806
- $metadata: deserializeMetadata(output),
807
- ...contents,
808
- };
809
- return response;
810
- };
811
- const de_RebootNodeCommand = async (output, context) => {
812
- if (output.statusCode >= 300) {
813
- return de_CommandError(output, context);
814
- }
815
- const data = await core$1.parseJsonBody(output.body, context);
816
- let contents = {};
817
- contents = de_RebootNodeResponse(data);
818
- const response = {
819
- $metadata: deserializeMetadata(output),
820
- ...contents,
821
- };
822
- return response;
823
- };
824
- const de_TagResourceCommand = async (output, context) => {
825
- if (output.statusCode >= 300) {
826
- return de_CommandError(output, context);
827
- }
828
- const data = await core$1.parseJsonBody(output.body, context);
829
- let contents = {};
830
- contents = smithyClient._json(data);
831
- const response = {
832
- $metadata: deserializeMetadata(output),
833
- ...contents,
834
- };
835
- return response;
836
- };
837
- const de_UntagResourceCommand = async (output, context) => {
838
- if (output.statusCode >= 300) {
839
- return de_CommandError(output, context);
840
- }
841
- const data = await core$1.parseJsonBody(output.body, context);
842
- let contents = {};
843
- contents = smithyClient._json(data);
844
- const response = {
845
- $metadata: deserializeMetadata(output),
846
- ...contents,
847
- };
848
- return response;
849
- };
850
- const de_UpdateClusterCommand = async (output, context) => {
851
- if (output.statusCode >= 300) {
852
- return de_CommandError(output, context);
853
- }
854
- const data = await core$1.parseJsonBody(output.body, context);
855
- let contents = {};
856
- contents = de_UpdateClusterResponse(data);
857
- const response = {
858
- $metadata: deserializeMetadata(output),
859
- ...contents,
860
- };
861
- return response;
862
- };
863
- const de_UpdateParameterGroupCommand = async (output, context) => {
864
- if (output.statusCode >= 300) {
865
- return de_CommandError(output, context);
866
- }
867
- const data = await core$1.parseJsonBody(output.body, context);
868
- let contents = {};
869
- contents = smithyClient._json(data);
870
- const response = {
871
- $metadata: deserializeMetadata(output),
872
- ...contents,
873
- };
874
- return response;
875
- };
876
- const de_UpdateSubnetGroupCommand = async (output, context) => {
877
- if (output.statusCode >= 300) {
878
- return de_CommandError(output, context);
879
- }
880
- const data = await core$1.parseJsonBody(output.body, context);
881
- let contents = {};
882
- contents = smithyClient._json(data);
883
- const response = {
884
- $metadata: deserializeMetadata(output),
885
- ...contents,
886
- };
887
- return response;
888
- };
889
- const de_CommandError = async (output, context) => {
890
- const parsedOutput = {
891
- ...output,
892
- body: await core$1.parseJsonErrorBody(output.body, context),
893
- };
894
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
895
- switch (errorCode) {
896
- case "ClusterAlreadyExistsFault":
897
- case "com.amazonaws.dax#ClusterAlreadyExistsFault":
898
- throw await de_ClusterAlreadyExistsFaultRes(parsedOutput);
899
- case "ClusterQuotaForCustomerExceededFault":
900
- case "com.amazonaws.dax#ClusterQuotaForCustomerExceededFault":
901
- throw await de_ClusterQuotaForCustomerExceededFaultRes(parsedOutput);
902
- case "InsufficientClusterCapacityFault":
903
- case "com.amazonaws.dax#InsufficientClusterCapacityFault":
904
- throw await de_InsufficientClusterCapacityFaultRes(parsedOutput);
905
- case "InvalidClusterStateFault":
906
- case "com.amazonaws.dax#InvalidClusterStateFault":
907
- throw await de_InvalidClusterStateFaultRes(parsedOutput);
908
- case "InvalidParameterCombinationException":
909
- case "com.amazonaws.dax#InvalidParameterCombinationException":
910
- throw await de_InvalidParameterCombinationExceptionRes(parsedOutput);
911
- case "InvalidParameterGroupStateFault":
912
- case "com.amazonaws.dax#InvalidParameterGroupStateFault":
913
- throw await de_InvalidParameterGroupStateFaultRes(parsedOutput);
914
- case "InvalidParameterValueException":
915
- case "com.amazonaws.dax#InvalidParameterValueException":
916
- throw await de_InvalidParameterValueExceptionRes(parsedOutput);
917
- case "InvalidVPCNetworkStateFault":
918
- case "com.amazonaws.dax#InvalidVPCNetworkStateFault":
919
- throw await de_InvalidVPCNetworkStateFaultRes(parsedOutput);
920
- case "NodeQuotaForClusterExceededFault":
921
- case "com.amazonaws.dax#NodeQuotaForClusterExceededFault":
922
- throw await de_NodeQuotaForClusterExceededFaultRes(parsedOutput);
923
- case "NodeQuotaForCustomerExceededFault":
924
- case "com.amazonaws.dax#NodeQuotaForCustomerExceededFault":
925
- throw await de_NodeQuotaForCustomerExceededFaultRes(parsedOutput);
926
- case "ParameterGroupNotFoundFault":
927
- case "com.amazonaws.dax#ParameterGroupNotFoundFault":
928
- throw await de_ParameterGroupNotFoundFaultRes(parsedOutput);
929
- case "ServiceLinkedRoleNotFoundFault":
930
- case "com.amazonaws.dax#ServiceLinkedRoleNotFoundFault":
931
- throw await de_ServiceLinkedRoleNotFoundFaultRes(parsedOutput);
932
- case "ServiceQuotaExceededException":
933
- case "com.amazonaws.dax#ServiceQuotaExceededException":
934
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
935
- case "SubnetGroupNotFoundFault":
936
- case "com.amazonaws.dax#SubnetGroupNotFoundFault":
937
- throw await de_SubnetGroupNotFoundFaultRes(parsedOutput);
938
- case "TagQuotaPerResourceExceeded":
939
- case "com.amazonaws.dax#TagQuotaPerResourceExceeded":
940
- throw await de_TagQuotaPerResourceExceededRes(parsedOutput);
941
- case "ParameterGroupAlreadyExistsFault":
942
- case "com.amazonaws.dax#ParameterGroupAlreadyExistsFault":
943
- throw await de_ParameterGroupAlreadyExistsFaultRes(parsedOutput);
944
- case "ParameterGroupQuotaExceededFault":
945
- case "com.amazonaws.dax#ParameterGroupQuotaExceededFault":
946
- throw await de_ParameterGroupQuotaExceededFaultRes(parsedOutput);
947
- case "InvalidSubnet":
948
- case "com.amazonaws.dax#InvalidSubnet":
949
- throw await de_InvalidSubnetRes(parsedOutput);
950
- case "SubnetGroupAlreadyExistsFault":
951
- case "com.amazonaws.dax#SubnetGroupAlreadyExistsFault":
952
- throw await de_SubnetGroupAlreadyExistsFaultRes(parsedOutput);
953
- case "SubnetGroupQuotaExceededFault":
954
- case "com.amazonaws.dax#SubnetGroupQuotaExceededFault":
955
- throw await de_SubnetGroupQuotaExceededFaultRes(parsedOutput);
956
- case "SubnetNotAllowedFault":
957
- case "com.amazonaws.dax#SubnetNotAllowedFault":
958
- throw await de_SubnetNotAllowedFaultRes(parsedOutput);
959
- case "SubnetQuotaExceededFault":
960
- case "com.amazonaws.dax#SubnetQuotaExceededFault":
961
- throw await de_SubnetQuotaExceededFaultRes(parsedOutput);
962
- case "ClusterNotFoundFault":
963
- case "com.amazonaws.dax#ClusterNotFoundFault":
964
- throw await de_ClusterNotFoundFaultRes(parsedOutput);
965
- case "NodeNotFoundFault":
966
- case "com.amazonaws.dax#NodeNotFoundFault":
967
- throw await de_NodeNotFoundFaultRes(parsedOutput);
968
- case "SubnetGroupInUseFault":
969
- case "com.amazonaws.dax#SubnetGroupInUseFault":
970
- throw await de_SubnetGroupInUseFaultRes(parsedOutput);
971
- case "InvalidARNFault":
972
- case "com.amazonaws.dax#InvalidARNFault":
973
- throw await de_InvalidARNFaultRes(parsedOutput);
974
- case "TagNotFoundFault":
975
- case "com.amazonaws.dax#TagNotFoundFault":
976
- throw await de_TagNotFoundFaultRes(parsedOutput);
977
- case "SubnetInUse":
978
- case "com.amazonaws.dax#SubnetInUse":
979
- throw await de_SubnetInUseRes(parsedOutput);
980
- default:
981
- const parsedBody = parsedOutput.body;
982
- return throwDefaultError({
983
- output,
984
- parsedBody,
985
- errorCode,
986
- });
987
- }
988
- };
989
- const de_ClusterAlreadyExistsFaultRes = async (parsedOutput, context) => {
990
- const body = parsedOutput.body;
991
- const deserialized = smithyClient._json(body);
992
- const exception = new ClusterAlreadyExistsFault({
993
- $metadata: deserializeMetadata(parsedOutput),
994
- ...deserialized,
995
- });
996
- return smithyClient.decorateServiceException(exception, body);
997
- };
998
- const de_ClusterNotFoundFaultRes = async (parsedOutput, context) => {
999
- const body = parsedOutput.body;
1000
- const deserialized = smithyClient._json(body);
1001
- const exception = new ClusterNotFoundFault({
1002
- $metadata: deserializeMetadata(parsedOutput),
1003
- ...deserialized,
1004
- });
1005
- return smithyClient.decorateServiceException(exception, body);
1006
- };
1007
- const de_ClusterQuotaForCustomerExceededFaultRes = async (parsedOutput, context) => {
1008
- const body = parsedOutput.body;
1009
- const deserialized = smithyClient._json(body);
1010
- const exception = new ClusterQuotaForCustomerExceededFault({
1011
- $metadata: deserializeMetadata(parsedOutput),
1012
- ...deserialized,
1013
- });
1014
- return smithyClient.decorateServiceException(exception, body);
1015
- };
1016
- const de_InsufficientClusterCapacityFaultRes = async (parsedOutput, context) => {
1017
- const body = parsedOutput.body;
1018
- const deserialized = smithyClient._json(body);
1019
- const exception = new InsufficientClusterCapacityFault({
1020
- $metadata: deserializeMetadata(parsedOutput),
1021
- ...deserialized,
1022
- });
1023
- return smithyClient.decorateServiceException(exception, body);
1024
- };
1025
- const de_InvalidARNFaultRes = async (parsedOutput, context) => {
1026
- const body = parsedOutput.body;
1027
- const deserialized = smithyClient._json(body);
1028
- const exception = new InvalidARNFault({
1029
- $metadata: deserializeMetadata(parsedOutput),
1030
- ...deserialized,
1031
- });
1032
- return smithyClient.decorateServiceException(exception, body);
1033
- };
1034
- const de_InvalidClusterStateFaultRes = async (parsedOutput, context) => {
1035
- const body = parsedOutput.body;
1036
- const deserialized = smithyClient._json(body);
1037
- const exception = new InvalidClusterStateFault({
1038
- $metadata: deserializeMetadata(parsedOutput),
1039
- ...deserialized,
1040
- });
1041
- return smithyClient.decorateServiceException(exception, body);
1042
- };
1043
- const de_InvalidParameterCombinationExceptionRes = async (parsedOutput, context) => {
1044
- const body = parsedOutput.body;
1045
- const deserialized = smithyClient._json(body);
1046
- const exception = new InvalidParameterCombinationException({
1047
- $metadata: deserializeMetadata(parsedOutput),
1048
- ...deserialized,
1049
- });
1050
- return smithyClient.decorateServiceException(exception, body);
1051
- };
1052
- const de_InvalidParameterGroupStateFaultRes = async (parsedOutput, context) => {
1053
- const body = parsedOutput.body;
1054
- const deserialized = smithyClient._json(body);
1055
- const exception = new InvalidParameterGroupStateFault({
1056
- $metadata: deserializeMetadata(parsedOutput),
1057
- ...deserialized,
1058
- });
1059
- return smithyClient.decorateServiceException(exception, body);
1060
- };
1061
- const de_InvalidParameterValueExceptionRes = async (parsedOutput, context) => {
1062
- const body = parsedOutput.body;
1063
- const deserialized = smithyClient._json(body);
1064
- const exception = new InvalidParameterValueException({
1065
- $metadata: deserializeMetadata(parsedOutput),
1066
- ...deserialized,
1067
- });
1068
- return smithyClient.decorateServiceException(exception, body);
1069
- };
1070
- const de_InvalidSubnetRes = async (parsedOutput, context) => {
1071
- const body = parsedOutput.body;
1072
- const deserialized = smithyClient._json(body);
1073
- const exception = new InvalidSubnet({
1074
- $metadata: deserializeMetadata(parsedOutput),
1075
- ...deserialized,
1076
- });
1077
- return smithyClient.decorateServiceException(exception, body);
1078
488
  };
1079
- const de_InvalidVPCNetworkStateFaultRes = async (parsedOutput, context) => {
1080
- const body = parsedOutput.body;
1081
- const deserialized = smithyClient._json(body);
1082
- const exception = new InvalidVPCNetworkStateFault({
1083
- $metadata: deserializeMetadata(parsedOutput),
1084
- ...deserialized,
1085
- });
1086
- return smithyClient.decorateServiceException(exception, body);
1087
- };
1088
- const de_NodeNotFoundFaultRes = async (parsedOutput, context) => {
1089
- const body = parsedOutput.body;
1090
- const deserialized = smithyClient._json(body);
1091
- const exception = new NodeNotFoundFault({
1092
- $metadata: deserializeMetadata(parsedOutput),
1093
- ...deserialized,
1094
- });
1095
- return smithyClient.decorateServiceException(exception, body);
1096
- };
1097
- const de_NodeQuotaForClusterExceededFaultRes = async (parsedOutput, context) => {
1098
- const body = parsedOutput.body;
1099
- const deserialized = smithyClient._json(body);
1100
- const exception = new NodeQuotaForClusterExceededFault({
1101
- $metadata: deserializeMetadata(parsedOutput),
1102
- ...deserialized,
1103
- });
1104
- return smithyClient.decorateServiceException(exception, body);
1105
- };
1106
- const de_NodeQuotaForCustomerExceededFaultRes = async (parsedOutput, context) => {
1107
- const body = parsedOutput.body;
1108
- const deserialized = smithyClient._json(body);
1109
- const exception = new NodeQuotaForCustomerExceededFault({
1110
- $metadata: deserializeMetadata(parsedOutput),
1111
- ...deserialized,
1112
- });
1113
- return smithyClient.decorateServiceException(exception, body);
1114
- };
1115
- const de_ParameterGroupAlreadyExistsFaultRes = async (parsedOutput, context) => {
1116
- const body = parsedOutput.body;
1117
- const deserialized = smithyClient._json(body);
1118
- const exception = new ParameterGroupAlreadyExistsFault({
1119
- $metadata: deserializeMetadata(parsedOutput),
1120
- ...deserialized,
1121
- });
1122
- return smithyClient.decorateServiceException(exception, body);
1123
- };
1124
- const de_ParameterGroupNotFoundFaultRes = async (parsedOutput, context) => {
1125
- const body = parsedOutput.body;
1126
- const deserialized = smithyClient._json(body);
1127
- const exception = new ParameterGroupNotFoundFault({
1128
- $metadata: deserializeMetadata(parsedOutput),
1129
- ...deserialized,
1130
- });
1131
- return smithyClient.decorateServiceException(exception, body);
1132
- };
1133
- const de_ParameterGroupQuotaExceededFaultRes = async (parsedOutput, context) => {
1134
- const body = parsedOutput.body;
1135
- const deserialized = smithyClient._json(body);
1136
- const exception = new ParameterGroupQuotaExceededFault({
1137
- $metadata: deserializeMetadata(parsedOutput),
1138
- ...deserialized,
1139
- });
1140
- return smithyClient.decorateServiceException(exception, body);
1141
- };
1142
- const de_ServiceLinkedRoleNotFoundFaultRes = async (parsedOutput, context) => {
1143
- const body = parsedOutput.body;
1144
- const deserialized = smithyClient._json(body);
1145
- const exception = new ServiceLinkedRoleNotFoundFault({
1146
- $metadata: deserializeMetadata(parsedOutput),
1147
- ...deserialized,
1148
- });
1149
- return smithyClient.decorateServiceException(exception, body);
1150
- };
1151
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1152
- const body = parsedOutput.body;
1153
- const deserialized = smithyClient._json(body);
1154
- const exception = new ServiceQuotaExceededException({
1155
- $metadata: deserializeMetadata(parsedOutput),
1156
- ...deserialized,
1157
- });
1158
- return smithyClient.decorateServiceException(exception, body);
1159
- };
1160
- const de_SubnetGroupAlreadyExistsFaultRes = async (parsedOutput, context) => {
1161
- const body = parsedOutput.body;
1162
- const deserialized = smithyClient._json(body);
1163
- const exception = new SubnetGroupAlreadyExistsFault({
1164
- $metadata: deserializeMetadata(parsedOutput),
1165
- ...deserialized,
1166
- });
1167
- return smithyClient.decorateServiceException(exception, body);
1168
- };
1169
- const de_SubnetGroupInUseFaultRes = async (parsedOutput, context) => {
1170
- const body = parsedOutput.body;
1171
- const deserialized = smithyClient._json(body);
1172
- const exception = new SubnetGroupInUseFault({
1173
- $metadata: deserializeMetadata(parsedOutput),
1174
- ...deserialized,
1175
- });
1176
- return smithyClient.decorateServiceException(exception, body);
1177
- };
1178
- const de_SubnetGroupNotFoundFaultRes = async (parsedOutput, context) => {
1179
- const body = parsedOutput.body;
1180
- const deserialized = smithyClient._json(body);
1181
- const exception = new SubnetGroupNotFoundFault({
1182
- $metadata: deserializeMetadata(parsedOutput),
1183
- ...deserialized,
1184
- });
1185
- return smithyClient.decorateServiceException(exception, body);
1186
- };
1187
- const de_SubnetGroupQuotaExceededFaultRes = async (parsedOutput, context) => {
1188
- const body = parsedOutput.body;
1189
- const deserialized = smithyClient._json(body);
1190
- const exception = new SubnetGroupQuotaExceededFault({
1191
- $metadata: deserializeMetadata(parsedOutput),
1192
- ...deserialized,
1193
- });
1194
- return smithyClient.decorateServiceException(exception, body);
1195
- };
1196
- const de_SubnetInUseRes = async (parsedOutput, context) => {
1197
- const body = parsedOutput.body;
1198
- const deserialized = smithyClient._json(body);
1199
- const exception = new SubnetInUse({
1200
- $metadata: deserializeMetadata(parsedOutput),
1201
- ...deserialized,
1202
- });
1203
- return smithyClient.decorateServiceException(exception, body);
1204
- };
1205
- const de_SubnetNotAllowedFaultRes = async (parsedOutput, context) => {
1206
- const body = parsedOutput.body;
1207
- const deserialized = smithyClient._json(body);
1208
- const exception = new SubnetNotAllowedFault({
1209
- $metadata: deserializeMetadata(parsedOutput),
1210
- ...deserialized,
1211
- });
1212
- return smithyClient.decorateServiceException(exception, body);
1213
- };
1214
- const de_SubnetQuotaExceededFaultRes = async (parsedOutput, context) => {
1215
- const body = parsedOutput.body;
1216
- const deserialized = smithyClient._json(body);
1217
- const exception = new SubnetQuotaExceededFault({
1218
- $metadata: deserializeMetadata(parsedOutput),
1219
- ...deserialized,
1220
- });
1221
- return smithyClient.decorateServiceException(exception, body);
1222
- };
1223
- const de_TagNotFoundFaultRes = async (parsedOutput, context) => {
1224
- const body = parsedOutput.body;
1225
- const deserialized = smithyClient._json(body);
1226
- const exception = new TagNotFoundFault({
1227
- $metadata: deserializeMetadata(parsedOutput),
1228
- ...deserialized,
1229
- });
1230
- return smithyClient.decorateServiceException(exception, body);
1231
- };
1232
- const de_TagQuotaPerResourceExceededRes = async (parsedOutput, context) => {
1233
- const body = parsedOutput.body;
1234
- const deserialized = smithyClient._json(body);
1235
- const exception = new TagQuotaPerResourceExceeded({
1236
- $metadata: deserializeMetadata(parsedOutput),
1237
- ...deserialized,
1238
- });
1239
- return smithyClient.decorateServiceException(exception, body);
1240
- };
1241
- const se_DescribeEventsRequest = (input, context) => {
1242
- return smithyClient.take(input, {
1243
- Duration: [],
1244
- EndTime: (_) => _.getTime() / 1_000,
1245
- MaxResults: [],
1246
- NextToken: [],
1247
- SourceName: [],
1248
- SourceType: [],
1249
- StartTime: (_) => _.getTime() / 1_000,
1250
- });
1251
- };
1252
- const de_Cluster = (output, context) => {
1253
- return smithyClient.take(output, {
1254
- ActiveNodes: smithyClient.expectInt32,
1255
- ClusterArn: smithyClient.expectString,
1256
- ClusterDiscoveryEndpoint: smithyClient._json,
1257
- ClusterEndpointEncryptionType: smithyClient.expectString,
1258
- ClusterName: smithyClient.expectString,
1259
- Description: smithyClient.expectString,
1260
- IamRoleArn: smithyClient.expectString,
1261
- NetworkType: smithyClient.expectString,
1262
- NodeIdsToRemove: smithyClient._json,
1263
- NodeType: smithyClient.expectString,
1264
- Nodes: (_) => de_NodeList(_),
1265
- NotificationConfiguration: smithyClient._json,
1266
- ParameterGroup: smithyClient._json,
1267
- PreferredMaintenanceWindow: smithyClient.expectString,
1268
- SSEDescription: smithyClient._json,
1269
- SecurityGroups: smithyClient._json,
1270
- Status: smithyClient.expectString,
1271
- SubnetGroup: smithyClient.expectString,
1272
- TotalNodes: smithyClient.expectInt32,
1273
- });
1274
- };
1275
- const de_ClusterList = (output, context) => {
1276
- const retVal = (output || [])
1277
- .filter((e) => e != null)
1278
- .map((entry) => {
1279
- return de_Cluster(entry);
1280
- });
1281
- return retVal;
1282
- };
1283
- const de_CreateClusterResponse = (output, context) => {
1284
- return smithyClient.take(output, {
1285
- Cluster: (_) => de_Cluster(_),
1286
- });
1287
- };
1288
- const de_DecreaseReplicationFactorResponse = (output, context) => {
1289
- return smithyClient.take(output, {
1290
- Cluster: (_) => de_Cluster(_),
1291
- });
1292
- };
1293
- const de_DeleteClusterResponse = (output, context) => {
1294
- return smithyClient.take(output, {
1295
- Cluster: (_) => de_Cluster(_),
1296
- });
1297
- };
1298
- const de_DescribeClustersResponse = (output, context) => {
1299
- return smithyClient.take(output, {
1300
- Clusters: (_) => de_ClusterList(_),
1301
- NextToken: smithyClient.expectString,
1302
- });
1303
- };
1304
- const de_DescribeEventsResponse = (output, context) => {
1305
- return smithyClient.take(output, {
1306
- Events: (_) => de_EventList(_),
1307
- NextToken: smithyClient.expectString,
1308
- });
1309
- };
1310
- const de_Event = (output, context) => {
1311
- return smithyClient.take(output, {
1312
- Date: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1313
- Message: smithyClient.expectString,
1314
- SourceName: smithyClient.expectString,
1315
- SourceType: smithyClient.expectString,
1316
- });
1317
- };
1318
- const de_EventList = (output, context) => {
1319
- const retVal = (output || [])
1320
- .filter((e) => e != null)
1321
- .map((entry) => {
1322
- return de_Event(entry);
1323
- });
1324
- return retVal;
1325
- };
1326
- const de_IncreaseReplicationFactorResponse = (output, context) => {
1327
- return smithyClient.take(output, {
1328
- Cluster: (_) => de_Cluster(_),
1329
- });
1330
- };
1331
- const de_Node = (output, context) => {
1332
- return smithyClient.take(output, {
1333
- AvailabilityZone: smithyClient.expectString,
1334
- Endpoint: smithyClient._json,
1335
- NodeCreateTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1336
- NodeId: smithyClient.expectString,
1337
- NodeStatus: smithyClient.expectString,
1338
- ParameterGroupStatus: smithyClient.expectString,
1339
- });
1340
- };
1341
- const de_NodeList = (output, context) => {
1342
- const retVal = (output || [])
1343
- .filter((e) => e != null)
1344
- .map((entry) => {
1345
- return de_Node(entry);
1346
- });
1347
- return retVal;
1348
- };
1349
- const de_RebootNodeResponse = (output, context) => {
1350
- return smithyClient.take(output, {
1351
- Cluster: (_) => de_Cluster(_),
1352
- });
1353
- };
1354
- const de_UpdateClusterResponse = (output, context) => {
1355
- return smithyClient.take(output, {
1356
- Cluster: (_) => de_Cluster(_),
1357
- });
1358
- };
1359
- const deserializeMetadata = (output) => ({
1360
- httpStatusCode: output.statusCode,
1361
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1362
- extendedRequestId: output.headers["x-amz-id-2"],
1363
- cfId: output.headers["x-amz-cf-id"],
1364
- });
1365
- const throwDefaultError = smithyClient.withBaseException(DAXServiceException);
1366
- const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
1367
- const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
1368
- const contents = {
1369
- protocol,
1370
- hostname,
1371
- port,
1372
- method: "POST",
1373
- path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
1374
- headers,
1375
- };
1376
- if (body !== undefined) {
1377
- contents.body = body;
1378
- }
1379
- return new protocolHttp.HttpRequest(contents);
1380
- };
1381
- function sharedHeaders(operation) {
1382
- return {
1383
- "content-type": "application/x-amz-json-1.1",
1384
- "x-amz-target": `AmazonDAXV3.${operation}`,
1385
- };
1386
- }
489
+
490
+ const _A = "Address";
491
+ const _AN = "ActiveNodes";
492
+ const _AV = "AllowedValues";
493
+ const _AZ = "AvailabilityZones";
494
+ const _AZv = "AvailabilityZone";
495
+ const _C = "Cluster";
496
+ const _CA = "ClusterArn";
497
+ const _CAEF = "ClusterAlreadyExistsFault";
498
+ const _CC = "CreateCluster";
499
+ const _CCR = "CreateClusterRequest";
500
+ const _CCRr = "CreateClusterResponse";
501
+ const _CDE = "ClusterDiscoveryEndpoint";
502
+ const _CEET = "ClusterEndpointEncryptionType";
503
+ const _CL = "ClusterList";
504
+ const _CN = "ClusterName";
505
+ const _CNFF = "ClusterNotFoundFault";
506
+ const _CNl = "ClusterNames";
507
+ const _CPG = "CreateParameterGroup";
508
+ const _CPGR = "CreateParameterGroupRequest";
509
+ const _CPGRr = "CreateParameterGroupResponse";
510
+ const _CQFCEF = "ClusterQuotaForCustomerExceededFault";
511
+ const _CSG = "CreateSubnetGroup";
512
+ const _CSGR = "CreateSubnetGroupRequest";
513
+ const _CSGRr = "CreateSubnetGroupResponse";
514
+ const _CT = "ChangeType";
515
+ const _Cl = "Clusters";
516
+ const _D = "Description";
517
+ const _DC = "DeleteCluster";
518
+ const _DCR = "DeleteClusterRequest";
519
+ const _DCRe = "DeleteClusterResponse";
520
+ const _DCRes = "DescribeClustersRequest";
521
+ const _DCResc = "DescribeClustersResponse";
522
+ const _DCe = "DescribeClusters";
523
+ const _DDP = "DescribeDefaultParameters";
524
+ const _DDPR = "DescribeDefaultParametersRequest";
525
+ const _DDPRe = "DescribeDefaultParametersResponse";
526
+ const _DE = "DescribeEvents";
527
+ const _DER = "DescribeEventsRequest";
528
+ const _DERe = "DescribeEventsResponse";
529
+ const _DM = "DeletionMessage";
530
+ const _DP = "DescribeParameters";
531
+ const _DPG = "DeleteParameterGroup";
532
+ const _DPGR = "DeleteParameterGroupRequest";
533
+ const _DPGRe = "DeleteParameterGroupResponse";
534
+ const _DPGRes = "DescribeParameterGroupsRequest";
535
+ const _DPGResc = "DescribeParameterGroupsResponse";
536
+ const _DPGe = "DescribeParameterGroups";
537
+ const _DPR = "DescribeParametersRequest";
538
+ const _DPRe = "DescribeParametersResponse";
539
+ const _DRF = "DecreaseReplicationFactor";
540
+ const _DRFR = "DecreaseReplicationFactorRequest";
541
+ const _DRFRe = "DecreaseReplicationFactorResponse";
542
+ const _DSG = "DeleteSubnetGroup";
543
+ const _DSGR = "DeleteSubnetGroupRequest";
544
+ const _DSGRe = "DeleteSubnetGroupResponse";
545
+ const _DSGRes = "DescribeSubnetGroupsRequest";
546
+ const _DSGResc = "DescribeSubnetGroupsResponse";
547
+ const _DSGe = "DescribeSubnetGroups";
548
+ const _DT = "DataType";
549
+ const _Da = "Date";
550
+ const _Du = "Duration";
551
+ const _E = "Events";
552
+ const _EL = "EventList";
553
+ const _ET = "EndTime";
554
+ const _En = "Endpoint";
555
+ const _Ena = "Enabled";
556
+ const _Ev = "Event";
557
+ const _IARNF = "InvalidARNFault";
558
+ const _ICCF = "InsufficientClusterCapacityFault";
559
+ const _ICSF = "InvalidClusterStateFault";
560
+ const _IM = "IsModifiable";
561
+ const _IPCE = "InvalidParameterCombinationException";
562
+ const _IPGSF = "InvalidParameterGroupStateFault";
563
+ const _IPVE = "InvalidParameterValueException";
564
+ const _IRA = "IamRoleArn";
565
+ const _IRF = "IncreaseReplicationFactor";
566
+ const _IRFR = "IncreaseReplicationFactorRequest";
567
+ const _IRFRn = "IncreaseReplicationFactorResponse";
568
+ const _IS = "InvalidSubnet";
569
+ const _IVPCNSF = "InvalidVPCNetworkStateFault";
570
+ const _K = "Key";
571
+ const _LT = "ListTags";
572
+ const _LTR = "ListTagsRequest";
573
+ const _LTRi = "ListTagsResponse";
574
+ const _M = "Message";
575
+ const _MR = "MaxResults";
576
+ const _N = "Nodes";
577
+ const _NC = "NotificationConfiguration";
578
+ const _NCT = "NodeCreateTime";
579
+ const _NI = "NodeId";
580
+ const _NITR = "NodeIdsToRemove";
581
+ const _NITRo = "NodeIdsToReboot";
582
+ const _NL = "NodeList";
583
+ const _NNFF = "NodeNotFoundFault";
584
+ const _NQFCEF = "NodeQuotaForClusterExceededFault";
585
+ const _NQFCEFo = "NodeQuotaForCustomerExceededFault";
586
+ const _NRF = "NewReplicationFactor";
587
+ const _NS = "NodeStatus";
588
+ const _NT = "NodeType";
589
+ const _NTA = "NotificationTopicArn";
590
+ const _NTS = "NotificationTopicStatus";
591
+ const _NTSV = "NodeTypeSpecificValue";
592
+ const _NTSVL = "NodeTypeSpecificValueList";
593
+ const _NTSVo = "NodeTypeSpecificValues";
594
+ const _NTe = "NetworkType";
595
+ const _NTex = "NextToken";
596
+ const _No = "Node";
597
+ const _P = "Parameters";
598
+ const _PAS = "ParameterApplyStatus";
599
+ const _PG = "ParameterGroup";
600
+ const _PGAEF = "ParameterGroupAlreadyExistsFault";
601
+ const _PGL = "ParameterGroupList";
602
+ const _PGN = "ParameterGroupName";
603
+ const _PGNFF = "ParameterGroupNotFoundFault";
604
+ const _PGNa = "ParameterGroupNames";
605
+ const _PGQEF = "ParameterGroupQuotaExceededFault";
606
+ const _PGS = "ParameterGroupStatus";
607
+ const _PGa = "ParameterGroups";
608
+ const _PL = "ParameterList";
609
+ const _PMW = "PreferredMaintenanceWindow";
610
+ const _PN = "ParameterName";
611
+ const _PNV = "ParameterNameValue";
612
+ const _PNVL = "ParameterNameValueList";
613
+ const _PNVa = "ParameterNameValues";
614
+ const _PT = "ParameterType";
615
+ const _PV = "ParameterValue";
616
+ const _Pa = "Parameter";
617
+ const _Po = "Port";
618
+ const _RF = "ReplicationFactor";
619
+ const _RN = "ResourceName";
620
+ const _RNR = "RebootNodeRequest";
621
+ const _RNRe = "RebootNodeResponse";
622
+ const _RNe = "RebootNode";
623
+ const _S = "Status";
624
+ const _SAZ = "SubnetAvailabilityZone";
625
+ const _SG = "SubnetGroup";
626
+ const _SGAEF = "SubnetGroupAlreadyExistsFault";
627
+ const _SGI = "SecurityGroupIds";
628
+ const _SGIUF = "SubnetGroupInUseFault";
629
+ const _SGIe = "SecurityGroupIdentifier";
630
+ const _SGL = "SubnetGroupList";
631
+ const _SGM = "SecurityGroupMembership";
632
+ const _SGML = "SecurityGroupMembershipList";
633
+ const _SGN = "SubnetGroupName";
634
+ const _SGNFF = "SubnetGroupNotFoundFault";
635
+ const _SGNu = "SubnetGroupNames";
636
+ const _SGQEF = "SubnetGroupQuotaExceededFault";
637
+ const _SGe = "SecurityGroups";
638
+ const _SGu = "SubnetGroups";
639
+ const _SI = "SubnetIds";
640
+ const _SIU = "SubnetInUse";
641
+ const _SIu = "SubnetIdentifier";
642
+ const _SL = "SubnetList";
643
+ const _SLRNFF = "ServiceLinkedRoleNotFoundFault";
644
+ const _SN = "SourceName";
645
+ const _SNAF = "SubnetNotAllowedFault";
646
+ const _SNT = "SupportedNetworkTypes";
647
+ const _SQEE = "ServiceQuotaExceededException";
648
+ const _SQEF = "SubnetQuotaExceededFault";
649
+ const _SSED = "SSEDescription";
650
+ const _SSES = "SSESpecification";
651
+ const _ST = "SourceType";
652
+ const _STt = "StartTime";
653
+ const _So = "Source";
654
+ const _Su = "Subnet";
655
+ const _Sub = "Subnets";
656
+ const _T = "Tags";
657
+ const _TA = "TopicArn";
658
+ const _TK = "TagKeys";
659
+ const _TL = "TagList";
660
+ const _TN = "TotalNodes";
661
+ const _TNFF = "TagNotFoundFault";
662
+ const _TQPRE = "TagQuotaPerResourceExceeded";
663
+ const _TR = "TagResource";
664
+ const _TRR = "TagResourceRequest";
665
+ const _TRRa = "TagResourceResponse";
666
+ const _TS = "TopicStatus";
667
+ const _Ta = "Tag";
668
+ const _UC = "UpdateCluster";
669
+ const _UCR = "UpdateClusterRequest";
670
+ const _UCRp = "UpdateClusterResponse";
671
+ const _UPG = "UpdateParameterGroup";
672
+ const _UPGR = "UpdateParameterGroupRequest";
673
+ const _UPGRp = "UpdateParameterGroupResponse";
674
+ const _UR = "UntagResource";
675
+ const _URL = "URL";
676
+ const _URR = "UntagResourceRequest";
677
+ const _URRn = "UntagResourceResponse";
678
+ const _USG = "UpdateSubnetGroup";
679
+ const _USGR = "UpdateSubnetGroupRequest";
680
+ const _USGRp = "UpdateSubnetGroupResponse";
681
+ const _V = "Value";
682
+ const _VI = "VpcId";
683
+ const _aQE = "awsQueryError";
684
+ const _c = "client";
685
+ const _e = "error";
686
+ const _hE = "httpError";
687
+ const _m = "message";
688
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.dax";
689
+ const n0 = "com.amazonaws.dax";
690
+ var Cluster = [
691
+ 3,
692
+ n0,
693
+ _C,
694
+ 0,
695
+ [_CN, _D, _CA, _TN, _AN, _NT, _S, _CDE, _NITR, _N, _PMW, _NC, _SG, _SGe, _IRA, _PG, _SSED, _CEET, _NTe],
696
+ [
697
+ 0,
698
+ 0,
699
+ 0,
700
+ 1,
701
+ 1,
702
+ 0,
703
+ 0,
704
+ () => Endpoint,
705
+ 64 | 0,
706
+ () => NodeList,
707
+ 0,
708
+ () => NotificationConfiguration,
709
+ 0,
710
+ () => SecurityGroupMembershipList,
711
+ 0,
712
+ () => ParameterGroupStatus,
713
+ () => SSEDescription,
714
+ 0,
715
+ 0,
716
+ ],
717
+ ];
718
+ var ClusterAlreadyExistsFault = [
719
+ -3,
720
+ n0,
721
+ _CAEF,
722
+ {
723
+ [_e]: _c,
724
+ [_hE]: 400,
725
+ [_aQE]: [`ClusterAlreadyExists`, 400],
726
+ },
727
+ [_m],
728
+ [0],
729
+ ];
730
+ schema.TypeRegistry.for(n0).registerError(ClusterAlreadyExistsFault, ClusterAlreadyExistsFault$1);
731
+ var ClusterNotFoundFault = [
732
+ -3,
733
+ n0,
734
+ _CNFF,
735
+ {
736
+ [_e]: _c,
737
+ [_hE]: 404,
738
+ [_aQE]: [`ClusterNotFound`, 404],
739
+ },
740
+ [_m],
741
+ [0],
742
+ ];
743
+ schema.TypeRegistry.for(n0).registerError(ClusterNotFoundFault, ClusterNotFoundFault$1);
744
+ var ClusterQuotaForCustomerExceededFault = [
745
+ -3,
746
+ n0,
747
+ _CQFCEF,
748
+ {
749
+ [_e]: _c,
750
+ [_hE]: 400,
751
+ [_aQE]: [`ClusterQuotaForCustomerExceeded`, 400],
752
+ },
753
+ [_m],
754
+ [0],
755
+ ];
756
+ schema.TypeRegistry.for(n0).registerError(ClusterQuotaForCustomerExceededFault, ClusterQuotaForCustomerExceededFault$1);
757
+ var CreateClusterRequest = [
758
+ 3,
759
+ n0,
760
+ _CCR,
761
+ 0,
762
+ [_CN, _NT, _D, _RF, _AZ, _SGN, _SGI, _PMW, _NTA, _IRA, _PGN, _T, _SSES, _CEET, _NTe],
763
+ [0, 0, 0, 1, 64 | 0, 0, 64 | 0, 0, 0, 0, 0, () => TagList, () => SSESpecification, 0, 0],
764
+ ];
765
+ var CreateClusterResponse = [3, n0, _CCRr, 0, [_C], [() => Cluster]];
766
+ var CreateParameterGroupRequest = [3, n0, _CPGR, 0, [_PGN, _D], [0, 0]];
767
+ var CreateParameterGroupResponse = [3, n0, _CPGRr, 0, [_PG], [() => ParameterGroup]];
768
+ var CreateSubnetGroupRequest = [3, n0, _CSGR, 0, [_SGN, _D, _SI], [0, 0, 64 | 0]];
769
+ var CreateSubnetGroupResponse = [3, n0, _CSGRr, 0, [_SG], [() => SubnetGroup]];
770
+ var DecreaseReplicationFactorRequest = [
771
+ 3,
772
+ n0,
773
+ _DRFR,
774
+ 0,
775
+ [_CN, _NRF, _AZ, _NITR],
776
+ [0, 1, 64 | 0, 64 | 0],
777
+ ];
778
+ var DecreaseReplicationFactorResponse = [3, n0, _DRFRe, 0, [_C], [() => Cluster]];
779
+ var DeleteClusterRequest = [3, n0, _DCR, 0, [_CN], [0]];
780
+ var DeleteClusterResponse = [3, n0, _DCRe, 0, [_C], [() => Cluster]];
781
+ var DeleteParameterGroupRequest = [3, n0, _DPGR, 0, [_PGN], [0]];
782
+ var DeleteParameterGroupResponse = [3, n0, _DPGRe, 0, [_DM], [0]];
783
+ var DeleteSubnetGroupRequest = [3, n0, _DSGR, 0, [_SGN], [0]];
784
+ var DeleteSubnetGroupResponse = [3, n0, _DSGRe, 0, [_DM], [0]];
785
+ var DescribeClustersRequest = [3, n0, _DCRes, 0, [_CNl, _MR, _NTex], [64 | 0, 1, 0]];
786
+ var DescribeClustersResponse = [3, n0, _DCResc, 0, [_NTex, _Cl], [0, () => ClusterList]];
787
+ var DescribeDefaultParametersRequest = [3, n0, _DDPR, 0, [_MR, _NTex], [1, 0]];
788
+ var DescribeDefaultParametersResponse = [
789
+ 3,
790
+ n0,
791
+ _DDPRe,
792
+ 0,
793
+ [_NTex, _P],
794
+ [0, () => ParameterList],
795
+ ];
796
+ var DescribeEventsRequest = [
797
+ 3,
798
+ n0,
799
+ _DER,
800
+ 0,
801
+ [_SN, _ST, _STt, _ET, _Du, _MR, _NTex],
802
+ [0, 0, 4, 4, 1, 1, 0],
803
+ ];
804
+ var DescribeEventsResponse = [3, n0, _DERe, 0, [_NTex, _E], [0, () => EventList]];
805
+ var DescribeParameterGroupsRequest = [
806
+ 3,
807
+ n0,
808
+ _DPGRes,
809
+ 0,
810
+ [_PGNa, _MR, _NTex],
811
+ [64 | 0, 1, 0],
812
+ ];
813
+ var DescribeParameterGroupsResponse = [
814
+ 3,
815
+ n0,
816
+ _DPGResc,
817
+ 0,
818
+ [_NTex, _PGa],
819
+ [0, () => ParameterGroupList],
820
+ ];
821
+ var DescribeParametersRequest = [3, n0, _DPR, 0, [_PGN, _So, _MR, _NTex], [0, 0, 1, 0]];
822
+ var DescribeParametersResponse = [3, n0, _DPRe, 0, [_NTex, _P], [0, () => ParameterList]];
823
+ var DescribeSubnetGroupsRequest = [
824
+ 3,
825
+ n0,
826
+ _DSGRes,
827
+ 0,
828
+ [_SGNu, _MR, _NTex],
829
+ [64 | 0, 1, 0],
830
+ ];
831
+ var DescribeSubnetGroupsResponse = [
832
+ 3,
833
+ n0,
834
+ _DSGResc,
835
+ 0,
836
+ [_NTex, _SGu],
837
+ [0, () => SubnetGroupList],
838
+ ];
839
+ var Endpoint = [3, n0, _En, 0, [_A, _Po, _URL], [0, 1, 0]];
840
+ var Event = [3, n0, _Ev, 0, [_SN, _ST, _M, _Da], [0, 0, 0, 4]];
841
+ var IncreaseReplicationFactorRequest = [
842
+ 3,
843
+ n0,
844
+ _IRFR,
845
+ 0,
846
+ [_CN, _NRF, _AZ],
847
+ [0, 1, 64 | 0],
848
+ ];
849
+ var IncreaseReplicationFactorResponse = [3, n0, _IRFRn, 0, [_C], [() => Cluster]];
850
+ var InsufficientClusterCapacityFault = [
851
+ -3,
852
+ n0,
853
+ _ICCF,
854
+ {
855
+ [_e]: _c,
856
+ [_hE]: 400,
857
+ [_aQE]: [`InsufficientClusterCapacity`, 400],
858
+ },
859
+ [_m],
860
+ [0],
861
+ ];
862
+ schema.TypeRegistry.for(n0).registerError(InsufficientClusterCapacityFault, InsufficientClusterCapacityFault$1);
863
+ var InvalidARNFault = [
864
+ -3,
865
+ n0,
866
+ _IARNF,
867
+ {
868
+ [_e]: _c,
869
+ [_hE]: 400,
870
+ [_aQE]: [`InvalidARN`, 400],
871
+ },
872
+ [_m],
873
+ [0],
874
+ ];
875
+ schema.TypeRegistry.for(n0).registerError(InvalidARNFault, InvalidARNFault$1);
876
+ var InvalidClusterStateFault = [
877
+ -3,
878
+ n0,
879
+ _ICSF,
880
+ {
881
+ [_e]: _c,
882
+ [_hE]: 400,
883
+ [_aQE]: [`InvalidClusterState`, 400],
884
+ },
885
+ [_m],
886
+ [0],
887
+ ];
888
+ schema.TypeRegistry.for(n0).registerError(InvalidClusterStateFault, InvalidClusterStateFault$1);
889
+ var InvalidParameterCombinationException = [
890
+ -3,
891
+ n0,
892
+ _IPCE,
893
+ {
894
+ [_e]: _c,
895
+ [_hE]: 400,
896
+ [_aQE]: [`InvalidParameterCombination`, 400],
897
+ },
898
+ [_m],
899
+ [0],
900
+ ];
901
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterCombinationException, InvalidParameterCombinationException$1);
902
+ var InvalidParameterGroupStateFault = [
903
+ -3,
904
+ n0,
905
+ _IPGSF,
906
+ {
907
+ [_e]: _c,
908
+ [_hE]: 400,
909
+ [_aQE]: [`InvalidParameterGroupState`, 400],
910
+ },
911
+ [_m],
912
+ [0],
913
+ ];
914
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterGroupStateFault, InvalidParameterGroupStateFault$1);
915
+ var InvalidParameterValueException = [
916
+ -3,
917
+ n0,
918
+ _IPVE,
919
+ {
920
+ [_e]: _c,
921
+ [_hE]: 400,
922
+ [_aQE]: [`InvalidParameterValue`, 400],
923
+ },
924
+ [_m],
925
+ [0],
926
+ ];
927
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException, InvalidParameterValueException$1);
928
+ var InvalidSubnet = [
929
+ -3,
930
+ n0,
931
+ _IS,
932
+ {
933
+ [_e]: _c,
934
+ [_hE]: 400,
935
+ [_aQE]: [`InvalidSubnet`, 400],
936
+ },
937
+ [_m],
938
+ [0],
939
+ ];
940
+ schema.TypeRegistry.for(n0).registerError(InvalidSubnet, InvalidSubnet$1);
941
+ var InvalidVPCNetworkStateFault = [
942
+ -3,
943
+ n0,
944
+ _IVPCNSF,
945
+ {
946
+ [_e]: _c,
947
+ [_hE]: 400,
948
+ [_aQE]: [`InvalidVPCNetworkStateFault`, 400],
949
+ },
950
+ [_m],
951
+ [0],
952
+ ];
953
+ schema.TypeRegistry.for(n0).registerError(InvalidVPCNetworkStateFault, InvalidVPCNetworkStateFault$1);
954
+ var ListTagsRequest = [3, n0, _LTR, 0, [_RN, _NTex], [0, 0]];
955
+ var ListTagsResponse = [3, n0, _LTRi, 0, [_T, _NTex], [() => TagList, 0]];
956
+ var Node = [
957
+ 3,
958
+ n0,
959
+ _No,
960
+ 0,
961
+ [_NI, _En, _NCT, _AZv, _NS, _PGS],
962
+ [0, () => Endpoint, 4, 0, 0, 0],
963
+ ];
964
+ var NodeNotFoundFault = [
965
+ -3,
966
+ n0,
967
+ _NNFF,
968
+ {
969
+ [_e]: _c,
970
+ [_hE]: 404,
971
+ [_aQE]: [`NodeNotFound`, 404],
972
+ },
973
+ [_m],
974
+ [0],
975
+ ];
976
+ schema.TypeRegistry.for(n0).registerError(NodeNotFoundFault, NodeNotFoundFault$1);
977
+ var NodeQuotaForClusterExceededFault = [
978
+ -3,
979
+ n0,
980
+ _NQFCEF,
981
+ {
982
+ [_e]: _c,
983
+ [_hE]: 400,
984
+ [_aQE]: [`NodeQuotaForClusterExceeded`, 400],
985
+ },
986
+ [_m],
987
+ [0],
988
+ ];
989
+ schema.TypeRegistry.for(n0).registerError(NodeQuotaForClusterExceededFault, NodeQuotaForClusterExceededFault$1);
990
+ var NodeQuotaForCustomerExceededFault = [
991
+ -3,
992
+ n0,
993
+ _NQFCEFo,
994
+ {
995
+ [_e]: _c,
996
+ [_hE]: 400,
997
+ [_aQE]: [`NodeQuotaForCustomerExceeded`, 400],
998
+ },
999
+ [_m],
1000
+ [0],
1001
+ ];
1002
+ schema.TypeRegistry.for(n0).registerError(NodeQuotaForCustomerExceededFault, NodeQuotaForCustomerExceededFault$1);
1003
+ var NodeTypeSpecificValue = [3, n0, _NTSV, 0, [_NT, _V], [0, 0]];
1004
+ var NotificationConfiguration = [3, n0, _NC, 0, [_TA, _TS], [0, 0]];
1005
+ var Parameter = [
1006
+ 3,
1007
+ n0,
1008
+ _Pa,
1009
+ 0,
1010
+ [_PN, _PT, _PV, _NTSVo, _D, _So, _DT, _AV, _IM, _CT],
1011
+ [0, 0, 0, () => NodeTypeSpecificValueList, 0, 0, 0, 0, 0, 0],
1012
+ ];
1013
+ var ParameterGroup = [3, n0, _PG, 0, [_PGN, _D], [0, 0]];
1014
+ var ParameterGroupAlreadyExistsFault = [
1015
+ -3,
1016
+ n0,
1017
+ _PGAEF,
1018
+ {
1019
+ [_e]: _c,
1020
+ [_hE]: 400,
1021
+ [_aQE]: [`ParameterGroupAlreadyExists`, 400],
1022
+ },
1023
+ [_m],
1024
+ [0],
1025
+ ];
1026
+ schema.TypeRegistry.for(n0).registerError(ParameterGroupAlreadyExistsFault, ParameterGroupAlreadyExistsFault$1);
1027
+ var ParameterGroupNotFoundFault = [
1028
+ -3,
1029
+ n0,
1030
+ _PGNFF,
1031
+ {
1032
+ [_e]: _c,
1033
+ [_hE]: 404,
1034
+ [_aQE]: [`ParameterGroupNotFound`, 404],
1035
+ },
1036
+ [_m],
1037
+ [0],
1038
+ ];
1039
+ schema.TypeRegistry.for(n0).registerError(ParameterGroupNotFoundFault, ParameterGroupNotFoundFault$1);
1040
+ var ParameterGroupQuotaExceededFault = [
1041
+ -3,
1042
+ n0,
1043
+ _PGQEF,
1044
+ {
1045
+ [_e]: _c,
1046
+ [_hE]: 400,
1047
+ [_aQE]: [`ParameterGroupQuotaExceeded`, 400],
1048
+ },
1049
+ [_m],
1050
+ [0],
1051
+ ];
1052
+ schema.TypeRegistry.for(n0).registerError(ParameterGroupQuotaExceededFault, ParameterGroupQuotaExceededFault$1);
1053
+ var ParameterGroupStatus = [3, n0, _PGS, 0, [_PGN, _PAS, _NITRo], [0, 0, 64 | 0]];
1054
+ var ParameterNameValue = [3, n0, _PNV, 0, [_PN, _PV], [0, 0]];
1055
+ var RebootNodeRequest = [3, n0, _RNR, 0, [_CN, _NI], [0, 0]];
1056
+ var RebootNodeResponse = [3, n0, _RNRe, 0, [_C], [() => Cluster]];
1057
+ var SecurityGroupMembership = [3, n0, _SGM, 0, [_SGIe, _S], [0, 0]];
1058
+ var ServiceLinkedRoleNotFoundFault = [
1059
+ -3,
1060
+ n0,
1061
+ _SLRNFF,
1062
+ {
1063
+ [_e]: _c,
1064
+ [_hE]: 400,
1065
+ [_aQE]: [`ServiceLinkedRoleNotFoundFault`, 400],
1066
+ },
1067
+ [_m],
1068
+ [0],
1069
+ ];
1070
+ schema.TypeRegistry.for(n0).registerError(ServiceLinkedRoleNotFoundFault, ServiceLinkedRoleNotFoundFault$1);
1071
+ var ServiceQuotaExceededException = [
1072
+ -3,
1073
+ n0,
1074
+ _SQEE,
1075
+ {
1076
+ [_e]: _c,
1077
+ [_hE]: 402,
1078
+ [_aQE]: [`ServiceQuotaExceeded`, 402],
1079
+ },
1080
+ [],
1081
+ [],
1082
+ ];
1083
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1084
+ var SSEDescription = [3, n0, _SSED, 0, [_S], [0]];
1085
+ var SSESpecification = [3, n0, _SSES, 0, [_Ena], [2]];
1086
+ var Subnet = [3, n0, _Su, 0, [_SIu, _SAZ, _SNT], [0, 0, 64 | 0]];
1087
+ var SubnetGroup = [
1088
+ 3,
1089
+ n0,
1090
+ _SG,
1091
+ 0,
1092
+ [_SGN, _D, _VI, _Sub, _SNT],
1093
+ [0, 0, 0, () => SubnetList, 64 | 0],
1094
+ ];
1095
+ var SubnetGroupAlreadyExistsFault = [
1096
+ -3,
1097
+ n0,
1098
+ _SGAEF,
1099
+ {
1100
+ [_e]: _c,
1101
+ [_hE]: 400,
1102
+ [_aQE]: [`SubnetGroupAlreadyExists`, 400],
1103
+ },
1104
+ [_m],
1105
+ [0],
1106
+ ];
1107
+ schema.TypeRegistry.for(n0).registerError(SubnetGroupAlreadyExistsFault, SubnetGroupAlreadyExistsFault$1);
1108
+ var SubnetGroupInUseFault = [
1109
+ -3,
1110
+ n0,
1111
+ _SGIUF,
1112
+ {
1113
+ [_e]: _c,
1114
+ [_hE]: 400,
1115
+ [_aQE]: [`SubnetGroupInUse`, 400],
1116
+ },
1117
+ [_m],
1118
+ [0],
1119
+ ];
1120
+ schema.TypeRegistry.for(n0).registerError(SubnetGroupInUseFault, SubnetGroupInUseFault$1);
1121
+ var SubnetGroupNotFoundFault = [
1122
+ -3,
1123
+ n0,
1124
+ _SGNFF,
1125
+ {
1126
+ [_e]: _c,
1127
+ [_hE]: 404,
1128
+ [_aQE]: [`SubnetGroupNotFoundFault`, 404],
1129
+ },
1130
+ [_m],
1131
+ [0],
1132
+ ];
1133
+ schema.TypeRegistry.for(n0).registerError(SubnetGroupNotFoundFault, SubnetGroupNotFoundFault$1);
1134
+ var SubnetGroupQuotaExceededFault = [
1135
+ -3,
1136
+ n0,
1137
+ _SGQEF,
1138
+ {
1139
+ [_e]: _c,
1140
+ [_hE]: 400,
1141
+ [_aQE]: [`SubnetGroupQuotaExceeded`, 400],
1142
+ },
1143
+ [_m],
1144
+ [0],
1145
+ ];
1146
+ schema.TypeRegistry.for(n0).registerError(SubnetGroupQuotaExceededFault, SubnetGroupQuotaExceededFault$1);
1147
+ var SubnetInUse = [
1148
+ -3,
1149
+ n0,
1150
+ _SIU,
1151
+ {
1152
+ [_e]: _c,
1153
+ [_hE]: 400,
1154
+ [_aQE]: [`SubnetInUse`, 400],
1155
+ },
1156
+ [_m],
1157
+ [0],
1158
+ ];
1159
+ schema.TypeRegistry.for(n0).registerError(SubnetInUse, SubnetInUse$1);
1160
+ var SubnetNotAllowedFault = [
1161
+ -3,
1162
+ n0,
1163
+ _SNAF,
1164
+ {
1165
+ [_e]: _c,
1166
+ [_hE]: 400,
1167
+ [_aQE]: [`SubnetNotAllowedFault`, 400],
1168
+ },
1169
+ [_m],
1170
+ [0],
1171
+ ];
1172
+ schema.TypeRegistry.for(n0).registerError(SubnetNotAllowedFault, SubnetNotAllowedFault$1);
1173
+ var SubnetQuotaExceededFault = [
1174
+ -3,
1175
+ n0,
1176
+ _SQEF,
1177
+ {
1178
+ [_e]: _c,
1179
+ [_hE]: 400,
1180
+ [_aQE]: [`SubnetQuotaExceededFault`, 400],
1181
+ },
1182
+ [_m],
1183
+ [0],
1184
+ ];
1185
+ schema.TypeRegistry.for(n0).registerError(SubnetQuotaExceededFault, SubnetQuotaExceededFault$1);
1186
+ var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
1187
+ var TagNotFoundFault = [
1188
+ -3,
1189
+ n0,
1190
+ _TNFF,
1191
+ {
1192
+ [_e]: _c,
1193
+ [_hE]: 404,
1194
+ [_aQE]: [`TagNotFound`, 404],
1195
+ },
1196
+ [_m],
1197
+ [0],
1198
+ ];
1199
+ schema.TypeRegistry.for(n0).registerError(TagNotFoundFault, TagNotFoundFault$1);
1200
+ var TagQuotaPerResourceExceeded = [
1201
+ -3,
1202
+ n0,
1203
+ _TQPRE,
1204
+ {
1205
+ [_e]: _c,
1206
+ [_hE]: 400,
1207
+ [_aQE]: [`TagQuotaPerResourceExceeded`, 400],
1208
+ },
1209
+ [_m],
1210
+ [0],
1211
+ ];
1212
+ schema.TypeRegistry.for(n0).registerError(TagQuotaPerResourceExceeded, TagQuotaPerResourceExceeded$1);
1213
+ var TagResourceRequest = [3, n0, _TRR, 0, [_RN, _T], [0, () => TagList]];
1214
+ var TagResourceResponse = [3, n0, _TRRa, 0, [_T], [() => TagList]];
1215
+ var UntagResourceRequest = [3, n0, _URR, 0, [_RN, _TK], [0, 64 | 0]];
1216
+ var UntagResourceResponse = [3, n0, _URRn, 0, [_T], [() => TagList]];
1217
+ var UpdateClusterRequest = [
1218
+ 3,
1219
+ n0,
1220
+ _UCR,
1221
+ 0,
1222
+ [_CN, _D, _PMW, _NTA, _NTS, _PGN, _SGI],
1223
+ [0, 0, 0, 0, 0, 0, 64 | 0],
1224
+ ];
1225
+ var UpdateClusterResponse = [3, n0, _UCRp, 0, [_C], [() => Cluster]];
1226
+ var UpdateParameterGroupRequest = [
1227
+ 3,
1228
+ n0,
1229
+ _UPGR,
1230
+ 0,
1231
+ [_PGN, _PNVa],
1232
+ [0, () => ParameterNameValueList],
1233
+ ];
1234
+ var UpdateParameterGroupResponse = [3, n0, _UPGRp, 0, [_PG], [() => ParameterGroup]];
1235
+ var UpdateSubnetGroupRequest = [3, n0, _USGR, 0, [_SGN, _D, _SI], [0, 0, 64 | 0]];
1236
+ var UpdateSubnetGroupResponse = [3, n0, _USGRp, 0, [_SG], [() => SubnetGroup]];
1237
+ var DAXServiceException = [-3, _s, "DAXServiceException", 0, [], []];
1238
+ schema.TypeRegistry.for(_s).registerError(DAXServiceException, DAXServiceException$1);
1239
+ var ClusterList = [1, n0, _CL, 0, () => Cluster];
1240
+ var EventList = [1, n0, _EL, 0, () => Event];
1241
+ var NodeList = [1, n0, _NL, 0, () => Node];
1242
+ var NodeTypeSpecificValueList = [1, n0, _NTSVL, 0, () => NodeTypeSpecificValue];
1243
+ var ParameterGroupList = [1, n0, _PGL, 0, () => ParameterGroup];
1244
+ var ParameterList = [1, n0, _PL, 0, () => Parameter];
1245
+ var ParameterNameValueList = [1, n0, _PNVL, 0, () => ParameterNameValue];
1246
+ var SecurityGroupMembershipList = [1, n0, _SGML, 0, () => SecurityGroupMembership];
1247
+ var SubnetGroupList = [1, n0, _SGL, 0, () => SubnetGroup];
1248
+ var SubnetList = [1, n0, _SL, 0, () => Subnet];
1249
+ var TagList = [1, n0, _TL, 0, () => Tag];
1250
+ var CreateCluster = [
1251
+ 9,
1252
+ n0,
1253
+ _CC,
1254
+ 0,
1255
+ () => CreateClusterRequest,
1256
+ () => CreateClusterResponse,
1257
+ ];
1258
+ var CreateParameterGroup = [
1259
+ 9,
1260
+ n0,
1261
+ _CPG,
1262
+ 0,
1263
+ () => CreateParameterGroupRequest,
1264
+ () => CreateParameterGroupResponse,
1265
+ ];
1266
+ var CreateSubnetGroup = [
1267
+ 9,
1268
+ n0,
1269
+ _CSG,
1270
+ 0,
1271
+ () => CreateSubnetGroupRequest,
1272
+ () => CreateSubnetGroupResponse,
1273
+ ];
1274
+ var DecreaseReplicationFactor = [
1275
+ 9,
1276
+ n0,
1277
+ _DRF,
1278
+ 0,
1279
+ () => DecreaseReplicationFactorRequest,
1280
+ () => DecreaseReplicationFactorResponse,
1281
+ ];
1282
+ var DeleteCluster = [
1283
+ 9,
1284
+ n0,
1285
+ _DC,
1286
+ 0,
1287
+ () => DeleteClusterRequest,
1288
+ () => DeleteClusterResponse,
1289
+ ];
1290
+ var DeleteParameterGroup = [
1291
+ 9,
1292
+ n0,
1293
+ _DPG,
1294
+ 0,
1295
+ () => DeleteParameterGroupRequest,
1296
+ () => DeleteParameterGroupResponse,
1297
+ ];
1298
+ var DeleteSubnetGroup = [
1299
+ 9,
1300
+ n0,
1301
+ _DSG,
1302
+ 0,
1303
+ () => DeleteSubnetGroupRequest,
1304
+ () => DeleteSubnetGroupResponse,
1305
+ ];
1306
+ var DescribeClusters = [
1307
+ 9,
1308
+ n0,
1309
+ _DCe,
1310
+ 0,
1311
+ () => DescribeClustersRequest,
1312
+ () => DescribeClustersResponse,
1313
+ ];
1314
+ var DescribeDefaultParameters = [
1315
+ 9,
1316
+ n0,
1317
+ _DDP,
1318
+ 0,
1319
+ () => DescribeDefaultParametersRequest,
1320
+ () => DescribeDefaultParametersResponse,
1321
+ ];
1322
+ var DescribeEvents = [
1323
+ 9,
1324
+ n0,
1325
+ _DE,
1326
+ 0,
1327
+ () => DescribeEventsRequest,
1328
+ () => DescribeEventsResponse,
1329
+ ];
1330
+ var DescribeParameterGroups = [
1331
+ 9,
1332
+ n0,
1333
+ _DPGe,
1334
+ 0,
1335
+ () => DescribeParameterGroupsRequest,
1336
+ () => DescribeParameterGroupsResponse,
1337
+ ];
1338
+ var DescribeParameters = [
1339
+ 9,
1340
+ n0,
1341
+ _DP,
1342
+ 0,
1343
+ () => DescribeParametersRequest,
1344
+ () => DescribeParametersResponse,
1345
+ ];
1346
+ var DescribeSubnetGroups = [
1347
+ 9,
1348
+ n0,
1349
+ _DSGe,
1350
+ 0,
1351
+ () => DescribeSubnetGroupsRequest,
1352
+ () => DescribeSubnetGroupsResponse,
1353
+ ];
1354
+ var IncreaseReplicationFactor = [
1355
+ 9,
1356
+ n0,
1357
+ _IRF,
1358
+ 0,
1359
+ () => IncreaseReplicationFactorRequest,
1360
+ () => IncreaseReplicationFactorResponse,
1361
+ ];
1362
+ var ListTags = [9, n0, _LT, 0, () => ListTagsRequest, () => ListTagsResponse];
1363
+ var RebootNode = [9, n0, _RNe, 0, () => RebootNodeRequest, () => RebootNodeResponse];
1364
+ var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
1365
+ var UntagResource = [
1366
+ 9,
1367
+ n0,
1368
+ _UR,
1369
+ 0,
1370
+ () => UntagResourceRequest,
1371
+ () => UntagResourceResponse,
1372
+ ];
1373
+ var UpdateCluster = [
1374
+ 9,
1375
+ n0,
1376
+ _UC,
1377
+ 0,
1378
+ () => UpdateClusterRequest,
1379
+ () => UpdateClusterResponse,
1380
+ ];
1381
+ var UpdateParameterGroup = [
1382
+ 9,
1383
+ n0,
1384
+ _UPG,
1385
+ 0,
1386
+ () => UpdateParameterGroupRequest,
1387
+ () => UpdateParameterGroupResponse,
1388
+ ];
1389
+ var UpdateSubnetGroup = [
1390
+ 9,
1391
+ n0,
1392
+ _USG,
1393
+ 0,
1394
+ () => UpdateSubnetGroupRequest,
1395
+ () => UpdateSubnetGroupResponse,
1396
+ ];
1387
1397
 
1388
1398
  class CreateClusterCommand extends smithyClient.Command
1389
1399
  .classBuilder()
1390
1400
  .ep(commonParams)
1391
1401
  .m(function (Command, cs, config, o) {
1392
- return [
1393
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1394
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1395
- ];
1402
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1396
1403
  })
1397
1404
  .s("AmazonDAXV3", "CreateCluster", {})
1398
1405
  .n("DAXClient", "CreateClusterCommand")
1399
- .f(void 0, void 0)
1400
- .ser(se_CreateClusterCommand)
1401
- .de(de_CreateClusterCommand)
1406
+ .sc(CreateCluster)
1402
1407
  .build() {
1403
1408
  }
1404
1409
 
@@ -1406,16 +1411,11 @@ class CreateParameterGroupCommand extends smithyClient.Command
1406
1411
  .classBuilder()
1407
1412
  .ep(commonParams)
1408
1413
  .m(function (Command, cs, config, o) {
1409
- return [
1410
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1411
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1412
- ];
1414
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1413
1415
  })
1414
1416
  .s("AmazonDAXV3", "CreateParameterGroup", {})
1415
1417
  .n("DAXClient", "CreateParameterGroupCommand")
1416
- .f(void 0, void 0)
1417
- .ser(se_CreateParameterGroupCommand)
1418
- .de(de_CreateParameterGroupCommand)
1418
+ .sc(CreateParameterGroup)
1419
1419
  .build() {
1420
1420
  }
1421
1421
 
@@ -1423,16 +1423,11 @@ class CreateSubnetGroupCommand extends smithyClient.Command
1423
1423
  .classBuilder()
1424
1424
  .ep(commonParams)
1425
1425
  .m(function (Command, cs, config, o) {
1426
- return [
1427
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1428
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1429
- ];
1426
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1430
1427
  })
1431
1428
  .s("AmazonDAXV3", "CreateSubnetGroup", {})
1432
1429
  .n("DAXClient", "CreateSubnetGroupCommand")
1433
- .f(void 0, void 0)
1434
- .ser(se_CreateSubnetGroupCommand)
1435
- .de(de_CreateSubnetGroupCommand)
1430
+ .sc(CreateSubnetGroup)
1436
1431
  .build() {
1437
1432
  }
1438
1433
 
@@ -1440,16 +1435,11 @@ class DecreaseReplicationFactorCommand extends smithyClient.Command
1440
1435
  .classBuilder()
1441
1436
  .ep(commonParams)
1442
1437
  .m(function (Command, cs, config, o) {
1443
- return [
1444
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1445
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1446
- ];
1438
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1447
1439
  })
1448
1440
  .s("AmazonDAXV3", "DecreaseReplicationFactor", {})
1449
1441
  .n("DAXClient", "DecreaseReplicationFactorCommand")
1450
- .f(void 0, void 0)
1451
- .ser(se_DecreaseReplicationFactorCommand)
1452
- .de(de_DecreaseReplicationFactorCommand)
1442
+ .sc(DecreaseReplicationFactor)
1453
1443
  .build() {
1454
1444
  }
1455
1445
 
@@ -1457,16 +1447,11 @@ class DeleteClusterCommand extends smithyClient.Command
1457
1447
  .classBuilder()
1458
1448
  .ep(commonParams)
1459
1449
  .m(function (Command, cs, config, o) {
1460
- return [
1461
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1462
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1463
- ];
1450
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1464
1451
  })
1465
1452
  .s("AmazonDAXV3", "DeleteCluster", {})
1466
1453
  .n("DAXClient", "DeleteClusterCommand")
1467
- .f(void 0, void 0)
1468
- .ser(se_DeleteClusterCommand)
1469
- .de(de_DeleteClusterCommand)
1454
+ .sc(DeleteCluster)
1470
1455
  .build() {
1471
1456
  }
1472
1457
 
@@ -1474,16 +1459,11 @@ class DeleteParameterGroupCommand extends smithyClient.Command
1474
1459
  .classBuilder()
1475
1460
  .ep(commonParams)
1476
1461
  .m(function (Command, cs, config, o) {
1477
- return [
1478
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1479
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1480
- ];
1462
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1481
1463
  })
1482
1464
  .s("AmazonDAXV3", "DeleteParameterGroup", {})
1483
1465
  .n("DAXClient", "DeleteParameterGroupCommand")
1484
- .f(void 0, void 0)
1485
- .ser(se_DeleteParameterGroupCommand)
1486
- .de(de_DeleteParameterGroupCommand)
1466
+ .sc(DeleteParameterGroup)
1487
1467
  .build() {
1488
1468
  }
1489
1469
 
@@ -1491,16 +1471,11 @@ class DeleteSubnetGroupCommand extends smithyClient.Command
1491
1471
  .classBuilder()
1492
1472
  .ep(commonParams)
1493
1473
  .m(function (Command, cs, config, o) {
1494
- return [
1495
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1496
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1497
- ];
1474
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1498
1475
  })
1499
1476
  .s("AmazonDAXV3", "DeleteSubnetGroup", {})
1500
1477
  .n("DAXClient", "DeleteSubnetGroupCommand")
1501
- .f(void 0, void 0)
1502
- .ser(se_DeleteSubnetGroupCommand)
1503
- .de(de_DeleteSubnetGroupCommand)
1478
+ .sc(DeleteSubnetGroup)
1504
1479
  .build() {
1505
1480
  }
1506
1481
 
@@ -1508,16 +1483,11 @@ class DescribeClustersCommand extends smithyClient.Command
1508
1483
  .classBuilder()
1509
1484
  .ep(commonParams)
1510
1485
  .m(function (Command, cs, config, o) {
1511
- return [
1512
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1513
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1514
- ];
1486
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1515
1487
  })
1516
1488
  .s("AmazonDAXV3", "DescribeClusters", {})
1517
1489
  .n("DAXClient", "DescribeClustersCommand")
1518
- .f(void 0, void 0)
1519
- .ser(se_DescribeClustersCommand)
1520
- .de(de_DescribeClustersCommand)
1490
+ .sc(DescribeClusters)
1521
1491
  .build() {
1522
1492
  }
1523
1493
 
@@ -1525,16 +1495,11 @@ class DescribeDefaultParametersCommand extends smithyClient.Command
1525
1495
  .classBuilder()
1526
1496
  .ep(commonParams)
1527
1497
  .m(function (Command, cs, config, o) {
1528
- return [
1529
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1530
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1531
- ];
1498
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1532
1499
  })
1533
1500
  .s("AmazonDAXV3", "DescribeDefaultParameters", {})
1534
1501
  .n("DAXClient", "DescribeDefaultParametersCommand")
1535
- .f(void 0, void 0)
1536
- .ser(se_DescribeDefaultParametersCommand)
1537
- .de(de_DescribeDefaultParametersCommand)
1502
+ .sc(DescribeDefaultParameters)
1538
1503
  .build() {
1539
1504
  }
1540
1505
 
@@ -1542,16 +1507,11 @@ class DescribeEventsCommand extends smithyClient.Command
1542
1507
  .classBuilder()
1543
1508
  .ep(commonParams)
1544
1509
  .m(function (Command, cs, config, o) {
1545
- return [
1546
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1547
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1548
- ];
1510
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1549
1511
  })
1550
1512
  .s("AmazonDAXV3", "DescribeEvents", {})
1551
1513
  .n("DAXClient", "DescribeEventsCommand")
1552
- .f(void 0, void 0)
1553
- .ser(se_DescribeEventsCommand)
1554
- .de(de_DescribeEventsCommand)
1514
+ .sc(DescribeEvents)
1555
1515
  .build() {
1556
1516
  }
1557
1517
 
@@ -1559,16 +1519,11 @@ class DescribeParameterGroupsCommand extends smithyClient.Command
1559
1519
  .classBuilder()
1560
1520
  .ep(commonParams)
1561
1521
  .m(function (Command, cs, config, o) {
1562
- return [
1563
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1564
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1565
- ];
1522
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1566
1523
  })
1567
1524
  .s("AmazonDAXV3", "DescribeParameterGroups", {})
1568
1525
  .n("DAXClient", "DescribeParameterGroupsCommand")
1569
- .f(void 0, void 0)
1570
- .ser(se_DescribeParameterGroupsCommand)
1571
- .de(de_DescribeParameterGroupsCommand)
1526
+ .sc(DescribeParameterGroups)
1572
1527
  .build() {
1573
1528
  }
1574
1529
 
@@ -1576,16 +1531,11 @@ class DescribeParametersCommand extends smithyClient.Command
1576
1531
  .classBuilder()
1577
1532
  .ep(commonParams)
1578
1533
  .m(function (Command, cs, config, o) {
1579
- return [
1580
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1581
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1582
- ];
1534
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1583
1535
  })
1584
1536
  .s("AmazonDAXV3", "DescribeParameters", {})
1585
1537
  .n("DAXClient", "DescribeParametersCommand")
1586
- .f(void 0, void 0)
1587
- .ser(se_DescribeParametersCommand)
1588
- .de(de_DescribeParametersCommand)
1538
+ .sc(DescribeParameters)
1589
1539
  .build() {
1590
1540
  }
1591
1541
 
@@ -1593,16 +1543,11 @@ class DescribeSubnetGroupsCommand extends smithyClient.Command
1593
1543
  .classBuilder()
1594
1544
  .ep(commonParams)
1595
1545
  .m(function (Command, cs, config, o) {
1596
- return [
1597
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1598
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1599
- ];
1546
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1600
1547
  })
1601
1548
  .s("AmazonDAXV3", "DescribeSubnetGroups", {})
1602
1549
  .n("DAXClient", "DescribeSubnetGroupsCommand")
1603
- .f(void 0, void 0)
1604
- .ser(se_DescribeSubnetGroupsCommand)
1605
- .de(de_DescribeSubnetGroupsCommand)
1550
+ .sc(DescribeSubnetGroups)
1606
1551
  .build() {
1607
1552
  }
1608
1553
 
@@ -1610,16 +1555,11 @@ class IncreaseReplicationFactorCommand extends smithyClient.Command
1610
1555
  .classBuilder()
1611
1556
  .ep(commonParams)
1612
1557
  .m(function (Command, cs, config, o) {
1613
- return [
1614
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1615
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1616
- ];
1558
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1617
1559
  })
1618
1560
  .s("AmazonDAXV3", "IncreaseReplicationFactor", {})
1619
1561
  .n("DAXClient", "IncreaseReplicationFactorCommand")
1620
- .f(void 0, void 0)
1621
- .ser(se_IncreaseReplicationFactorCommand)
1622
- .de(de_IncreaseReplicationFactorCommand)
1562
+ .sc(IncreaseReplicationFactor)
1623
1563
  .build() {
1624
1564
  }
1625
1565
 
@@ -1627,16 +1567,11 @@ class ListTagsCommand extends smithyClient.Command
1627
1567
  .classBuilder()
1628
1568
  .ep(commonParams)
1629
1569
  .m(function (Command, cs, config, o) {
1630
- return [
1631
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1632
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1633
- ];
1570
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1634
1571
  })
1635
1572
  .s("AmazonDAXV3", "ListTags", {})
1636
1573
  .n("DAXClient", "ListTagsCommand")
1637
- .f(void 0, void 0)
1638
- .ser(se_ListTagsCommand)
1639
- .de(de_ListTagsCommand)
1574
+ .sc(ListTags)
1640
1575
  .build() {
1641
1576
  }
1642
1577
 
@@ -1644,16 +1579,11 @@ class RebootNodeCommand extends smithyClient.Command
1644
1579
  .classBuilder()
1645
1580
  .ep(commonParams)
1646
1581
  .m(function (Command, cs, config, o) {
1647
- return [
1648
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1649
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1650
- ];
1582
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1651
1583
  })
1652
1584
  .s("AmazonDAXV3", "RebootNode", {})
1653
1585
  .n("DAXClient", "RebootNodeCommand")
1654
- .f(void 0, void 0)
1655
- .ser(se_RebootNodeCommand)
1656
- .de(de_RebootNodeCommand)
1586
+ .sc(RebootNode)
1657
1587
  .build() {
1658
1588
  }
1659
1589
 
@@ -1661,16 +1591,11 @@ class TagResourceCommand extends smithyClient.Command
1661
1591
  .classBuilder()
1662
1592
  .ep(commonParams)
1663
1593
  .m(function (Command, cs, config, o) {
1664
- return [
1665
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1666
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1667
- ];
1594
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1668
1595
  })
1669
1596
  .s("AmazonDAXV3", "TagResource", {})
1670
1597
  .n("DAXClient", "TagResourceCommand")
1671
- .f(void 0, void 0)
1672
- .ser(se_TagResourceCommand)
1673
- .de(de_TagResourceCommand)
1598
+ .sc(TagResource)
1674
1599
  .build() {
1675
1600
  }
1676
1601
 
@@ -1678,16 +1603,11 @@ class UntagResourceCommand extends smithyClient.Command
1678
1603
  .classBuilder()
1679
1604
  .ep(commonParams)
1680
1605
  .m(function (Command, cs, config, o) {
1681
- return [
1682
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1683
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1684
- ];
1606
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1685
1607
  })
1686
1608
  .s("AmazonDAXV3", "UntagResource", {})
1687
1609
  .n("DAXClient", "UntagResourceCommand")
1688
- .f(void 0, void 0)
1689
- .ser(se_UntagResourceCommand)
1690
- .de(de_UntagResourceCommand)
1610
+ .sc(UntagResource)
1691
1611
  .build() {
1692
1612
  }
1693
1613
 
@@ -1695,16 +1615,11 @@ class UpdateClusterCommand extends smithyClient.Command
1695
1615
  .classBuilder()
1696
1616
  .ep(commonParams)
1697
1617
  .m(function (Command, cs, config, o) {
1698
- return [
1699
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1700
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1701
- ];
1618
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1702
1619
  })
1703
1620
  .s("AmazonDAXV3", "UpdateCluster", {})
1704
1621
  .n("DAXClient", "UpdateClusterCommand")
1705
- .f(void 0, void 0)
1706
- .ser(se_UpdateClusterCommand)
1707
- .de(de_UpdateClusterCommand)
1622
+ .sc(UpdateCluster)
1708
1623
  .build() {
1709
1624
  }
1710
1625
 
@@ -1712,16 +1627,11 @@ class UpdateParameterGroupCommand extends smithyClient.Command
1712
1627
  .classBuilder()
1713
1628
  .ep(commonParams)
1714
1629
  .m(function (Command, cs, config, o) {
1715
- return [
1716
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1717
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1718
- ];
1630
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1719
1631
  })
1720
1632
  .s("AmazonDAXV3", "UpdateParameterGroup", {})
1721
1633
  .n("DAXClient", "UpdateParameterGroupCommand")
1722
- .f(void 0, void 0)
1723
- .ser(se_UpdateParameterGroupCommand)
1724
- .de(de_UpdateParameterGroupCommand)
1634
+ .sc(UpdateParameterGroup)
1725
1635
  .build() {
1726
1636
  }
1727
1637
 
@@ -1729,16 +1639,11 @@ class UpdateSubnetGroupCommand extends smithyClient.Command
1729
1639
  .classBuilder()
1730
1640
  .ep(commonParams)
1731
1641
  .m(function (Command, cs, config, o) {
1732
- return [
1733
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1734
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1735
- ];
1642
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1736
1643
  })
1737
1644
  .s("AmazonDAXV3", "UpdateSubnetGroup", {})
1738
1645
  .n("DAXClient", "UpdateSubnetGroupCommand")
1739
- .f(void 0, void 0)
1740
- .ser(se_UpdateSubnetGroupCommand)
1741
- .de(de_UpdateSubnetGroupCommand)
1646
+ .sc(UpdateSubnetGroup)
1742
1647
  .build() {
1743
1648
  }
1744
1649
 
@@ -1778,16 +1683,16 @@ Object.defineProperty(exports, "__Client", {
1778
1683
  get: function () { return smithyClient.Client; }
1779
1684
  });
1780
1685
  exports.ChangeType = ChangeType;
1781
- exports.ClusterAlreadyExistsFault = ClusterAlreadyExistsFault;
1686
+ exports.ClusterAlreadyExistsFault = ClusterAlreadyExistsFault$1;
1782
1687
  exports.ClusterEndpointEncryptionType = ClusterEndpointEncryptionType;
1783
- exports.ClusterNotFoundFault = ClusterNotFoundFault;
1784
- exports.ClusterQuotaForCustomerExceededFault = ClusterQuotaForCustomerExceededFault;
1688
+ exports.ClusterNotFoundFault = ClusterNotFoundFault$1;
1689
+ exports.ClusterQuotaForCustomerExceededFault = ClusterQuotaForCustomerExceededFault$1;
1785
1690
  exports.CreateClusterCommand = CreateClusterCommand;
1786
1691
  exports.CreateParameterGroupCommand = CreateParameterGroupCommand;
1787
1692
  exports.CreateSubnetGroupCommand = CreateSubnetGroupCommand;
1788
1693
  exports.DAX = DAX;
1789
1694
  exports.DAXClient = DAXClient;
1790
- exports.DAXServiceException = DAXServiceException;
1695
+ exports.DAXServiceException = DAXServiceException$1;
1791
1696
  exports.DecreaseReplicationFactorCommand = DecreaseReplicationFactorCommand;
1792
1697
  exports.DeleteClusterCommand = DeleteClusterCommand;
1793
1698
  exports.DeleteParameterGroupCommand = DeleteParameterGroupCommand;
@@ -1799,38 +1704,38 @@ exports.DescribeParameterGroupsCommand = DescribeParameterGroupsCommand;
1799
1704
  exports.DescribeParametersCommand = DescribeParametersCommand;
1800
1705
  exports.DescribeSubnetGroupsCommand = DescribeSubnetGroupsCommand;
1801
1706
  exports.IncreaseReplicationFactorCommand = IncreaseReplicationFactorCommand;
1802
- exports.InsufficientClusterCapacityFault = InsufficientClusterCapacityFault;
1803
- exports.InvalidARNFault = InvalidARNFault;
1804
- exports.InvalidClusterStateFault = InvalidClusterStateFault;
1805
- exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
1806
- exports.InvalidParameterGroupStateFault = InvalidParameterGroupStateFault;
1807
- exports.InvalidParameterValueException = InvalidParameterValueException;
1808
- exports.InvalidSubnet = InvalidSubnet;
1809
- exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault;
1707
+ exports.InsufficientClusterCapacityFault = InsufficientClusterCapacityFault$1;
1708
+ exports.InvalidARNFault = InvalidARNFault$1;
1709
+ exports.InvalidClusterStateFault = InvalidClusterStateFault$1;
1710
+ exports.InvalidParameterCombinationException = InvalidParameterCombinationException$1;
1711
+ exports.InvalidParameterGroupStateFault = InvalidParameterGroupStateFault$1;
1712
+ exports.InvalidParameterValueException = InvalidParameterValueException$1;
1713
+ exports.InvalidSubnet = InvalidSubnet$1;
1714
+ exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault$1;
1810
1715
  exports.IsModifiable = IsModifiable;
1811
1716
  exports.ListTagsCommand = ListTagsCommand;
1812
1717
  exports.NetworkType = NetworkType;
1813
- exports.NodeNotFoundFault = NodeNotFoundFault;
1814
- exports.NodeQuotaForClusterExceededFault = NodeQuotaForClusterExceededFault;
1815
- exports.NodeQuotaForCustomerExceededFault = NodeQuotaForCustomerExceededFault;
1816
- exports.ParameterGroupAlreadyExistsFault = ParameterGroupAlreadyExistsFault;
1817
- exports.ParameterGroupNotFoundFault = ParameterGroupNotFoundFault;
1818
- exports.ParameterGroupQuotaExceededFault = ParameterGroupQuotaExceededFault;
1718
+ exports.NodeNotFoundFault = NodeNotFoundFault$1;
1719
+ exports.NodeQuotaForClusterExceededFault = NodeQuotaForClusterExceededFault$1;
1720
+ exports.NodeQuotaForCustomerExceededFault = NodeQuotaForCustomerExceededFault$1;
1721
+ exports.ParameterGroupAlreadyExistsFault = ParameterGroupAlreadyExistsFault$1;
1722
+ exports.ParameterGroupNotFoundFault = ParameterGroupNotFoundFault$1;
1723
+ exports.ParameterGroupQuotaExceededFault = ParameterGroupQuotaExceededFault$1;
1819
1724
  exports.ParameterType = ParameterType;
1820
1725
  exports.RebootNodeCommand = RebootNodeCommand;
1821
1726
  exports.SSEStatus = SSEStatus;
1822
- exports.ServiceLinkedRoleNotFoundFault = ServiceLinkedRoleNotFoundFault;
1823
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1727
+ exports.ServiceLinkedRoleNotFoundFault = ServiceLinkedRoleNotFoundFault$1;
1728
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1824
1729
  exports.SourceType = SourceType;
1825
- exports.SubnetGroupAlreadyExistsFault = SubnetGroupAlreadyExistsFault;
1826
- exports.SubnetGroupInUseFault = SubnetGroupInUseFault;
1827
- exports.SubnetGroupNotFoundFault = SubnetGroupNotFoundFault;
1828
- exports.SubnetGroupQuotaExceededFault = SubnetGroupQuotaExceededFault;
1829
- exports.SubnetInUse = SubnetInUse;
1830
- exports.SubnetNotAllowedFault = SubnetNotAllowedFault;
1831
- exports.SubnetQuotaExceededFault = SubnetQuotaExceededFault;
1832
- exports.TagNotFoundFault = TagNotFoundFault;
1833
- exports.TagQuotaPerResourceExceeded = TagQuotaPerResourceExceeded;
1730
+ exports.SubnetGroupAlreadyExistsFault = SubnetGroupAlreadyExistsFault$1;
1731
+ exports.SubnetGroupInUseFault = SubnetGroupInUseFault$1;
1732
+ exports.SubnetGroupNotFoundFault = SubnetGroupNotFoundFault$1;
1733
+ exports.SubnetGroupQuotaExceededFault = SubnetGroupQuotaExceededFault$1;
1734
+ exports.SubnetInUse = SubnetInUse$1;
1735
+ exports.SubnetNotAllowedFault = SubnetNotAllowedFault$1;
1736
+ exports.SubnetQuotaExceededFault = SubnetQuotaExceededFault$1;
1737
+ exports.TagNotFoundFault = TagNotFoundFault$1;
1738
+ exports.TagQuotaPerResourceExceeded = TagQuotaPerResourceExceeded$1;
1834
1739
  exports.TagResourceCommand = TagResourceCommand;
1835
1740
  exports.UntagResourceCommand = UntagResourceCommand;
1836
1741
  exports.UpdateClusterCommand = UpdateClusterCommand;