@aws-sdk/client-route53-recovery-control-config 3.948.0 → 3.953.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 (45) hide show
  1. package/dist-cjs/index.js +340 -217
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateClusterCommand.js +2 -2
  4. package/dist-es/commands/CreateControlPanelCommand.js +2 -2
  5. package/dist-es/commands/CreateRoutingControlCommand.js +2 -2
  6. package/dist-es/commands/CreateSafetyRuleCommand.js +2 -2
  7. package/dist-es/commands/DeleteClusterCommand.js +2 -2
  8. package/dist-es/commands/DeleteControlPanelCommand.js +2 -2
  9. package/dist-es/commands/DeleteRoutingControlCommand.js +2 -2
  10. package/dist-es/commands/DeleteSafetyRuleCommand.js +2 -2
  11. package/dist-es/commands/DescribeClusterCommand.js +2 -2
  12. package/dist-es/commands/DescribeControlPanelCommand.js +2 -2
  13. package/dist-es/commands/DescribeRoutingControlCommand.js +2 -2
  14. package/dist-es/commands/DescribeSafetyRuleCommand.js +2 -2
  15. package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
  16. package/dist-es/commands/ListAssociatedRoute53HealthChecksCommand.js +2 -2
  17. package/dist-es/commands/ListClustersCommand.js +2 -2
  18. package/dist-es/commands/ListControlPanelsCommand.js +2 -2
  19. package/dist-es/commands/ListRoutingControlsCommand.js +2 -2
  20. package/dist-es/commands/ListSafetyRulesCommand.js +2 -2
  21. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  22. package/dist-es/commands/TagResourceCommand.js +2 -2
  23. package/dist-es/commands/UntagResourceCommand.js +2 -2
  24. package/dist-es/commands/UpdateClusterCommand.js +2 -2
  25. package/dist-es/commands/UpdateControlPanelCommand.js +2 -2
  26. package/dist-es/commands/UpdateRoutingControlCommand.js +2 -2
  27. package/dist-es/commands/UpdateSafetyRuleCommand.js +2 -2
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -1
  30. package/dist-es/schemas/schemas_0.js +203 -175
  31. package/dist-types/Route53RecoveryControlConfigClient.d.ts +1 -10
  32. package/dist-types/index.d.ts +1 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  34. package/dist-types/runtimeConfig.d.ts +6 -2
  35. package/dist-types/runtimeConfig.native.d.ts +6 -2
  36. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  37. package/dist-types/schemas/schemas_0.d.ts +96 -105
  38. package/dist-types/ts3.4/Route53RecoveryControlConfigClient.d.ts +0 -4
  39. package/dist-types/ts3.4/index.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +95 -105
  45. package/package.json +35 -35
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class Route53RecoveryControlConfigClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let Route53RecoveryControlConfigServiceException$1 = class Route53RecoveryControlConfigServiceException extends smithyClient.ServiceException {
114
+ class Route53RecoveryControlConfigServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, Route53RecoveryControlConfigServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let AccessDeniedException$1 = class AccessDeniedException extends Route53RecoveryControlConfigServiceException$1 {
121
+ class AccessDeniedException extends Route53RecoveryControlConfigServiceException {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  Message;
@@ -131,8 +131,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends Route53Recover
131
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
132
  this.Message = opts.Message;
133
133
  }
134
- };
135
- let ConflictException$1 = class ConflictException extends Route53RecoveryControlConfigServiceException$1 {
134
+ }
135
+ class ConflictException extends Route53RecoveryControlConfigServiceException {
136
136
  name = "ConflictException";
137
137
  $fault = "client";
138
138
  Message;
@@ -145,8 +145,8 @@ let ConflictException$1 = class ConflictException extends Route53RecoveryControl
145
145
  Object.setPrototypeOf(this, ConflictException.prototype);
146
146
  this.Message = opts.Message;
147
147
  }
148
- };
149
- let InternalServerException$1 = class InternalServerException extends Route53RecoveryControlConfigServiceException$1 {
148
+ }
149
+ class InternalServerException extends Route53RecoveryControlConfigServiceException {
150
150
  name = "InternalServerException";
151
151
  $fault = "server";
152
152
  Message;
@@ -159,8 +159,8 @@ let InternalServerException$1 = class InternalServerException extends Route53Rec
159
159
  Object.setPrototypeOf(this, InternalServerException.prototype);
160
160
  this.Message = opts.Message;
161
161
  }
162
- };
163
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends Route53RecoveryControlConfigServiceException$1 {
162
+ }
163
+ class ResourceNotFoundException extends Route53RecoveryControlConfigServiceException {
164
164
  name = "ResourceNotFoundException";
165
165
  $fault = "client";
166
166
  Message;
@@ -173,8 +173,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Route5
173
173
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
174
174
  this.Message = opts.Message;
175
175
  }
176
- };
177
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends Route53RecoveryControlConfigServiceException$1 {
176
+ }
177
+ class ServiceQuotaExceededException extends Route53RecoveryControlConfigServiceException {
178
178
  name = "ServiceQuotaExceededException";
179
179
  $fault = "client";
180
180
  Message;
@@ -187,8 +187,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
187
187
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
188
188
  this.Message = opts.Message;
189
189
  }
190
- };
191
- let ThrottlingException$1 = class ThrottlingException extends Route53RecoveryControlConfigServiceException$1 {
190
+ }
191
+ class ThrottlingException extends Route53RecoveryControlConfigServiceException {
192
192
  name = "ThrottlingException";
193
193
  $fault = "client";
194
194
  Message;
@@ -201,8 +201,8 @@ let ThrottlingException$1 = class ThrottlingException extends Route53RecoveryCon
201
201
  Object.setPrototypeOf(this, ThrottlingException.prototype);
202
202
  this.Message = opts.Message;
203
203
  }
204
- };
205
- let ValidationException$1 = class ValidationException extends Route53RecoveryControlConfigServiceException$1 {
204
+ }
205
+ class ValidationException extends Route53RecoveryControlConfigServiceException {
206
206
  name = "ValidationException";
207
207
  $fault = "client";
208
208
  Message;
@@ -215,7 +215,7 @@ let ValidationException$1 = class ValidationException extends Route53RecoveryCon
215
215
  Object.setPrototypeOf(this, ValidationException.prototype);
216
216
  this.Message = opts.Message;
217
217
  }
218
- };
218
+ }
219
219
 
220
220
  const _AC = "AssertedControls";
221
221
  const _ADE = "AccessDeniedException";
@@ -364,7 +364,7 @@ const _m = "message";
364
364
  const _s = "server";
365
365
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53recoverycontrolconfig";
366
366
  const n0 = "com.amazonaws.route53recoverycontrolconfig";
367
- var AccessDeniedException = [
367
+ var AccessDeniedException$ = [
368
368
  -3,
369
369
  n0,
370
370
  _ADE,
@@ -372,17 +372,17 @@ var AccessDeniedException = [
372
372
  [_M],
373
373
  [[0, { [_jN]: _m }]],
374
374
  ];
375
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
376
- var AssertionRule = [
375
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
376
+ var AssertionRule$ = [
377
377
  3,
378
378
  n0,
379
379
  _AR,
380
380
  0,
381
381
  [_AC, _CPA, _N, _RC, _SRA, _S, _WPM, _O],
382
- [64 | 0, 0, 0, () => RuleConfig, 0, 0, 1, 0],
382
+ [64 | 0, 0, 0, () => RuleConfig$, 0, 0, 1, 0],
383
383
  ];
384
- var AssertionRuleUpdate = [3, n0, _ARU, 0, [_N, _SRA, _WPM], [0, 0, 1]];
385
- var Cluster = [
384
+ var AssertionRuleUpdate$ = [3, n0, _ARU, 0, [_N, _SRA, _WPM], [0, 0, 1]];
385
+ var Cluster$ = [
386
386
  3,
387
387
  n0,
388
388
  _C,
@@ -390,10 +390,10 @@ var Cluster = [
390
390
  [_CA, _CE, _N, _S, _O, _NT],
391
391
  [0, () => __listOfClusterEndpoint, 0, 0, 0, 0],
392
392
  ];
393
- var ClusterEndpoint = [3, n0, _CEl, 0, [_E, _R], [0, 0]];
394
- var ConflictException = [-3, n0, _CEo, { [_e]: _c, [_hE]: 409 }, [_M], [[0, { [_jN]: _m }]]];
395
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
396
- var ControlPanel = [
393
+ var ClusterEndpoint$ = [3, n0, _CEl, 0, [_E, _R], [0, 0]];
394
+ var ConflictException$ = [-3, n0, _CEo, { [_e]: _c, [_hE]: 409 }, [_M], [[0, { [_jN]: _m }]]];
395
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
396
+ var ControlPanel$ = [
397
397
  3,
398
398
  n0,
399
399
  _CP,
@@ -401,9 +401,16 @@ var ControlPanel = [
401
401
  [_CA, _CPA, _DCP, _N, _RCC, _S, _O],
402
402
  [0, 0, 2, 0, 1, 0, 0],
403
403
  ];
404
- var CreateClusterRequest = [3, n0, _CCR, 0, [_CT, _CN, _T, _NT], [[0, 4], 0, 128 | 0, 0]];
405
- var CreateClusterResponse = [3, n0, _CCRr, 0, [_C], [() => Cluster]];
406
- var CreateControlPanelRequest = [
404
+ var CreateClusterRequest$ = [
405
+ 3,
406
+ n0,
407
+ _CCR,
408
+ 0,
409
+ [_CT, _CN, _T, _NT],
410
+ [[0, 4], 0, 128 | 0, 0],
411
+ ];
412
+ var CreateClusterResponse$ = [3, n0, _CCRr, 0, [_C], [() => Cluster$]];
413
+ var CreateControlPanelRequest$ = [
407
414
  3,
408
415
  n0,
409
416
  _CCPR,
@@ -411,8 +418,8 @@ var CreateControlPanelRequest = [
411
418
  [_CT, _CA, _CPN, _T],
412
419
  [[0, 4], 0, 0, 128 | 0],
413
420
  ];
414
- var CreateControlPanelResponse = [3, n0, _CCPRr, 0, [_CP], [() => ControlPanel]];
415
- var CreateRoutingControlRequest = [
421
+ var CreateControlPanelResponse$ = [3, n0, _CCPRr, 0, [_CP], [() => ControlPanel$]];
422
+ var CreateRoutingControlRequest$ = [
416
423
  3,
417
424
  n0,
418
425
  _CRCR,
@@ -420,58 +427,65 @@ var CreateRoutingControlRequest = [
420
427
  [_CT, _CA, _CPA, _RCN],
421
428
  [[0, 4], 0, 0, 0],
422
429
  ];
423
- var CreateRoutingControlResponse = [3, n0, _CRCRr, 0, [_RCo], [() => RoutingControl]];
424
- var CreateSafetyRuleRequest = [
430
+ var CreateRoutingControlResponse$ = [3, n0, _CRCRr, 0, [_RCo], [() => RoutingControl$]];
431
+ var CreateSafetyRuleRequest$ = [
425
432
  3,
426
433
  n0,
427
434
  _CSRR,
428
435
  0,
429
436
  [_AR, _CT, _GR, _T],
430
- [() => NewAssertionRule, [0, 4], () => NewGatingRule, 128 | 0],
437
+ [() => NewAssertionRule$, [0, 4], () => NewGatingRule$, 128 | 0],
431
438
  ];
432
- var CreateSafetyRuleResponse = [
439
+ var CreateSafetyRuleResponse$ = [
433
440
  3,
434
441
  n0,
435
442
  _CSRRr,
436
443
  0,
437
444
  [_AR, _GR],
438
- [() => AssertionRule, () => GatingRule],
445
+ [() => AssertionRule$, () => GatingRule$],
439
446
  ];
440
- var DeleteClusterRequest = [3, n0, _DCR, 0, [_CA], [[0, 1]]];
441
- var DeleteClusterResponse = [3, n0, _DCRe, 0, [], []];
442
- var DeleteControlPanelRequest = [3, n0, _DCPR, 0, [_CPA], [[0, 1]]];
443
- var DeleteControlPanelResponse = [3, n0, _DCPRe, 0, [], []];
444
- var DeleteRoutingControlRequest = [3, n0, _DRCR, 0, [_RCA], [[0, 1]]];
445
- var DeleteRoutingControlResponse = [3, n0, _DRCRe, 0, [], []];
446
- var DeleteSafetyRuleRequest = [3, n0, _DSRR, 0, [_SRA], [[0, 1]]];
447
- var DeleteSafetyRuleResponse = [3, n0, _DSRRe, 0, [], []];
448
- var DescribeClusterRequest = [3, n0, _DCRes, 0, [_CA], [[0, 1]]];
449
- var DescribeClusterResponse = [3, n0, _DCResc, 0, [_C], [() => Cluster]];
450
- var DescribeControlPanelRequest = [3, n0, _DCPRes, 0, [_CPA], [[0, 1]]];
451
- var DescribeControlPanelResponse = [3, n0, _DCPResc, 0, [_CP], [() => ControlPanel]];
452
- var DescribeRoutingControlRequest = [3, n0, _DRCRes, 0, [_RCA], [[0, 1]]];
453
- var DescribeRoutingControlResponse = [3, n0, _DRCResc, 0, [_RCo], [() => RoutingControl]];
454
- var DescribeSafetyRuleRequest = [3, n0, _DSRRes, 0, [_SRA], [[0, 1]]];
455
- var DescribeSafetyRuleResponse = [
447
+ var DeleteClusterRequest$ = [3, n0, _DCR, 0, [_CA], [[0, 1]]];
448
+ var DeleteClusterResponse$ = [3, n0, _DCRe, 0, [], []];
449
+ var DeleteControlPanelRequest$ = [3, n0, _DCPR, 0, [_CPA], [[0, 1]]];
450
+ var DeleteControlPanelResponse$ = [3, n0, _DCPRe, 0, [], []];
451
+ var DeleteRoutingControlRequest$ = [3, n0, _DRCR, 0, [_RCA], [[0, 1]]];
452
+ var DeleteRoutingControlResponse$ = [3, n0, _DRCRe, 0, [], []];
453
+ var DeleteSafetyRuleRequest$ = [3, n0, _DSRR, 0, [_SRA], [[0, 1]]];
454
+ var DeleteSafetyRuleResponse$ = [3, n0, _DSRRe, 0, [], []];
455
+ var DescribeClusterRequest$ = [3, n0, _DCRes, 0, [_CA], [[0, 1]]];
456
+ var DescribeClusterResponse$ = [3, n0, _DCResc, 0, [_C], [() => Cluster$]];
457
+ var DescribeControlPanelRequest$ = [3, n0, _DCPRes, 0, [_CPA], [[0, 1]]];
458
+ var DescribeControlPanelResponse$ = [3, n0, _DCPResc, 0, [_CP], [() => ControlPanel$]];
459
+ var DescribeRoutingControlRequest$ = [3, n0, _DRCRes, 0, [_RCA], [[0, 1]]];
460
+ var DescribeRoutingControlResponse$ = [
461
+ 3,
462
+ n0,
463
+ _DRCResc,
464
+ 0,
465
+ [_RCo],
466
+ [() => RoutingControl$],
467
+ ];
468
+ var DescribeSafetyRuleRequest$ = [3, n0, _DSRRes, 0, [_SRA], [[0, 1]]];
469
+ var DescribeSafetyRuleResponse$ = [
456
470
  3,
457
471
  n0,
458
472
  _DSRResc,
459
473
  0,
460
474
  [_AR, _GR],
461
- [() => AssertionRule, () => GatingRule],
475
+ [() => AssertionRule$, () => GatingRule$],
462
476
  ];
463
- var GatingRule = [
477
+ var GatingRule$ = [
464
478
  3,
465
479
  n0,
466
480
  _GR,
467
481
  0,
468
482
  [_CPA, _GC, _N, _RC, _SRA, _S, _TC, _WPM, _O],
469
- [0, 64 | 0, 0, () => RuleConfig, 0, 0, 64 | 0, 1, 0],
483
+ [0, 64 | 0, 0, () => RuleConfig$, 0, 0, 64 | 0, 1, 0],
470
484
  ];
471
- var GatingRuleUpdate = [3, n0, _GRU, 0, [_N, _SRA, _WPM], [0, 0, 1]];
472
- var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_RA], [[0, 1]]];
473
- var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_P], [0]];
474
- var InternalServerException = [
485
+ var GatingRuleUpdate$ = [3, n0, _GRU, 0, [_N, _SRA, _WPM], [0, 0, 1]];
486
+ var GetResourcePolicyRequest$ = [3, n0, _GRPR, 0, [_RA], [[0, 1]]];
487
+ var GetResourcePolicyResponse$ = [3, n0, _GRPRe, 0, [_P], [0]];
488
+ var InternalServerException$ = [
475
489
  -3,
476
490
  n0,
477
491
  _ISE,
@@ -479,8 +493,8 @@ var InternalServerException = [
479
493
  [_M],
480
494
  [[0, { [_jN]: _m }]],
481
495
  ];
482
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
483
- var ListAssociatedRoute53HealthChecksRequest = [
496
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
497
+ var ListAssociatedRoute53HealthChecksRequest$ = [
484
498
  3,
485
499
  n0,
486
500
  _LARHCR,
@@ -492,7 +506,7 @@ var ListAssociatedRoute53HealthChecksRequest = [
492
506
  [0, 1],
493
507
  ],
494
508
  ];
495
- var ListAssociatedRoute53HealthChecksResponse = [
509
+ var ListAssociatedRoute53HealthChecksResponse$ = [
496
510
  3,
497
511
  n0,
498
512
  _LARHCRi,
@@ -500,7 +514,7 @@ var ListAssociatedRoute53HealthChecksResponse = [
500
514
  [_HCI, _NTe],
501
515
  [64 | 0, 0],
502
516
  ];
503
- var ListClustersRequest = [
517
+ var ListClustersRequest$ = [
504
518
  3,
505
519
  n0,
506
520
  _LCR,
@@ -511,8 +525,8 @@ var ListClustersRequest = [
511
525
  [0, { [_hQ]: _NTe }],
512
526
  ],
513
527
  ];
514
- var ListClustersResponse = [3, n0, _LCRi, 0, [_Cl, _NTe], [() => __listOfCluster, 0]];
515
- var ListControlPanelsRequest = [
528
+ var ListClustersResponse$ = [3, n0, _LCRi, 0, [_Cl, _NTe], [() => __listOfCluster, 0]];
529
+ var ListControlPanelsRequest$ = [
516
530
  3,
517
531
  n0,
518
532
  _LCPR,
@@ -524,7 +538,7 @@ var ListControlPanelsRequest = [
524
538
  [0, { [_hQ]: _NTe }],
525
539
  ],
526
540
  ];
527
- var ListControlPanelsResponse = [
541
+ var ListControlPanelsResponse$ = [
528
542
  3,
529
543
  n0,
530
544
  _LCPRi,
@@ -532,7 +546,7 @@ var ListControlPanelsResponse = [
532
546
  [_CPo, _NTe],
533
547
  [() => __listOfControlPanel, 0],
534
548
  ];
535
- var ListRoutingControlsRequest = [
549
+ var ListRoutingControlsRequest$ = [
536
550
  3,
537
551
  n0,
538
552
  _LRCR,
@@ -544,7 +558,7 @@ var ListRoutingControlsRequest = [
544
558
  [0, { [_hQ]: _NTe }],
545
559
  ],
546
560
  ];
547
- var ListRoutingControlsResponse = [
561
+ var ListRoutingControlsResponse$ = [
548
562
  3,
549
563
  n0,
550
564
  _LRCRi,
@@ -552,7 +566,7 @@ var ListRoutingControlsResponse = [
552
566
  [_NTe, _RCou],
553
567
  [0, () => __listOfRoutingControl],
554
568
  ];
555
- var ListSafetyRulesRequest = [
569
+ var ListSafetyRulesRequest$ = [
556
570
  3,
557
571
  n0,
558
572
  _LSRR,
@@ -564,26 +578,26 @@ var ListSafetyRulesRequest = [
564
578
  [0, { [_hQ]: _NTe }],
565
579
  ],
566
580
  ];
567
- var ListSafetyRulesResponse = [3, n0, _LSRRi, 0, [_NTe, _SR], [0, () => __listOfRule]];
568
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
569
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
570
- var NewAssertionRule = [
581
+ var ListSafetyRulesResponse$ = [3, n0, _LSRRi, 0, [_NTe, _SR], [0, () => __listOfRule]];
582
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
583
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
584
+ var NewAssertionRule$ = [
571
585
  3,
572
586
  n0,
573
587
  _NAR,
574
588
  0,
575
589
  [_AC, _CPA, _N, _RC, _WPM],
576
- [64 | 0, 0, 0, () => RuleConfig, 1],
590
+ [64 | 0, 0, 0, () => RuleConfig$, 1],
577
591
  ];
578
- var NewGatingRule = [
592
+ var NewGatingRule$ = [
579
593
  3,
580
594
  n0,
581
595
  _NGR,
582
596
  0,
583
597
  [_CPA, _GC, _N, _RC, _TC, _WPM],
584
- [0, 64 | 0, 0, () => RuleConfig, 64 | 0, 1],
598
+ [0, 64 | 0, 0, () => RuleConfig$, 64 | 0, 1],
585
599
  ];
586
- var ResourceNotFoundException = [
600
+ var ResourceNotFoundException$ = [
587
601
  -3,
588
602
  n0,
589
603
  _RNFE,
@@ -591,18 +605,18 @@ var ResourceNotFoundException = [
591
605
  [_M],
592
606
  [[0, { [_jN]: _m }]],
593
607
  ];
594
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
595
- var RoutingControl = [3, n0, _RCo, 0, [_CPA, _N, _RCA, _S, _O], [0, 0, 0, 0, 0]];
596
- var Rule = [
608
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
609
+ var RoutingControl$ = [3, n0, _RCo, 0, [_CPA, _N, _RCA, _S, _O], [0, 0, 0, 0, 0]];
610
+ var Rule$ = [
597
611
  3,
598
612
  n0,
599
613
  _Ru,
600
614
  0,
601
615
  [_ASSERTION, _GATING],
602
- [() => AssertionRule, () => GatingRule],
616
+ [() => AssertionRule$, () => GatingRule$],
603
617
  ];
604
- var RuleConfig = [3, n0, _RC, 0, [_I, _Th, _Ty], [2, 1, 0]];
605
- var ServiceQuotaExceededException = [
618
+ var RuleConfig$ = [3, n0, _RC, 0, [_I, _Th, _Ty], [2, 1, 0]];
619
+ var ServiceQuotaExceededException$ = [
606
620
  -3,
607
621
  n0,
608
622
  _SQEE,
@@ -610,12 +624,19 @@ var ServiceQuotaExceededException = [
610
624
  [_M],
611
625
  [[0, { [_jN]: _m }]],
612
626
  ];
613
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
614
- var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _T], [[0, 1], 128 | 0]];
615
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
616
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [[0, { [_jN]: _m }]]];
617
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
618
- var UntagResourceRequest = [
627
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
628
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _T], [[0, 1], 128 | 0]];
629
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
630
+ var ThrottlingException$ = [
631
+ -3,
632
+ n0,
633
+ _TE,
634
+ { [_e]: _c, [_hE]: 429 },
635
+ [_M],
636
+ [[0, { [_jN]: _m }]],
637
+ ];
638
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
639
+ var UntagResourceRequest$ = [
619
640
  3,
620
641
  n0,
621
642
  _URR,
@@ -626,32 +647,39 @@ var UntagResourceRequest = [
626
647
  [64 | 0, { [_hQ]: _TK }],
627
648
  ],
628
649
  ];
629
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
630
- var UpdateClusterRequest = [3, n0, _UCR, 0, [_CA, _NT], [0, 0]];
631
- var UpdateClusterResponse = [3, n0, _UCRp, 0, [_C], [() => Cluster]];
632
- var UpdateControlPanelRequest = [3, n0, _UCPR, 0, [_CPA, _CPN], [0, 0]];
633
- var UpdateControlPanelResponse = [3, n0, _UCPRp, 0, [_CP], [() => ControlPanel]];
634
- var UpdateRoutingControlRequest = [3, n0, _URCR, 0, [_RCA, _RCN], [0, 0]];
635
- var UpdateRoutingControlResponse = [3, n0, _URCRp, 0, [_RCo], [() => RoutingControl]];
636
- var UpdateSafetyRuleRequest = [
650
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
651
+ var UpdateClusterRequest$ = [3, n0, _UCR, 0, [_CA, _NT], [0, 0]];
652
+ var UpdateClusterResponse$ = [3, n0, _UCRp, 0, [_C], [() => Cluster$]];
653
+ var UpdateControlPanelRequest$ = [3, n0, _UCPR, 0, [_CPA, _CPN], [0, 0]];
654
+ var UpdateControlPanelResponse$ = [3, n0, _UCPRp, 0, [_CP], [() => ControlPanel$]];
655
+ var UpdateRoutingControlRequest$ = [3, n0, _URCR, 0, [_RCA, _RCN], [0, 0]];
656
+ var UpdateRoutingControlResponse$ = [3, n0, _URCRp, 0, [_RCo], [() => RoutingControl$]];
657
+ var UpdateSafetyRuleRequest$ = [
637
658
  3,
638
659
  n0,
639
660
  _USRR,
640
661
  0,
641
662
  [_ARU, _GRU],
642
- [() => AssertionRuleUpdate, () => GatingRuleUpdate],
663
+ [() => AssertionRuleUpdate$, () => GatingRuleUpdate$],
643
664
  ];
644
- var UpdateSafetyRuleResponse = [
665
+ var UpdateSafetyRuleResponse$ = [
645
666
  3,
646
667
  n0,
647
668
  _USRRp,
648
669
  0,
649
670
  [_AR, _GR],
650
- [() => AssertionRule, () => GatingRule],
671
+ [() => AssertionRule$, () => GatingRule$],
672
+ ];
673
+ var ValidationException$ = [
674
+ -3,
675
+ n0,
676
+ _VE,
677
+ { [_e]: _c, [_hE]: 400 },
678
+ [_M],
679
+ [[0, { [_jN]: _m }]],
651
680
  ];
652
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [[0, { [_jN]: _m }]]];
653
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
654
- var Route53RecoveryControlConfigServiceException = [
681
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
682
+ var Route53RecoveryControlConfigServiceException$ = [
655
683
  -3,
656
684
  _sm,
657
685
  "Route53RecoveryControlConfigServiceException",
@@ -659,211 +687,211 @@ var Route53RecoveryControlConfigServiceException = [
659
687
  [],
660
688
  [],
661
689
  ];
662
- schema.TypeRegistry.for(_sm).registerError(Route53RecoveryControlConfigServiceException, Route53RecoveryControlConfigServiceException$1);
663
- var __listOfCluster = [1, n0, _lOC, 0, () => Cluster];
664
- var __listOfClusterEndpoint = [1, n0, _lOCE, 0, () => ClusterEndpoint];
665
- var __listOfControlPanel = [1, n0, _lOCP, 0, () => ControlPanel];
666
- var __listOfRoutingControl = [1, n0, _lORC, 0, () => RoutingControl];
667
- var __listOfRule = [1, n0, _lOR, 0, () => Rule];
668
- var CreateCluster = [
690
+ schema.TypeRegistry.for(_sm).registerError(Route53RecoveryControlConfigServiceException$, Route53RecoveryControlConfigServiceException);
691
+ var __listOfCluster = [1, n0, _lOC, 0, () => Cluster$];
692
+ var __listOfClusterEndpoint = [1, n0, _lOCE, 0, () => ClusterEndpoint$];
693
+ var __listOfControlPanel = [1, n0, _lOCP, 0, () => ControlPanel$];
694
+ var __listOfRoutingControl = [1, n0, _lORC, 0, () => RoutingControl$];
695
+ var __listOfRule = [1, n0, _lOR, 0, () => Rule$];
696
+ var CreateCluster$ = [
669
697
  9,
670
698
  n0,
671
699
  _CC,
672
700
  { [_h]: ["POST", "/cluster", 200] },
673
- () => CreateClusterRequest,
674
- () => CreateClusterResponse,
701
+ () => CreateClusterRequest$,
702
+ () => CreateClusterResponse$,
675
703
  ];
676
- var CreateControlPanel = [
704
+ var CreateControlPanel$ = [
677
705
  9,
678
706
  n0,
679
707
  _CCP,
680
708
  { [_h]: ["POST", "/controlpanel", 200] },
681
- () => CreateControlPanelRequest,
682
- () => CreateControlPanelResponse,
709
+ () => CreateControlPanelRequest$,
710
+ () => CreateControlPanelResponse$,
683
711
  ];
684
- var CreateRoutingControl = [
712
+ var CreateRoutingControl$ = [
685
713
  9,
686
714
  n0,
687
715
  _CRC,
688
716
  { [_h]: ["POST", "/routingcontrol", 200] },
689
- () => CreateRoutingControlRequest,
690
- () => CreateRoutingControlResponse,
717
+ () => CreateRoutingControlRequest$,
718
+ () => CreateRoutingControlResponse$,
691
719
  ];
692
- var CreateSafetyRule = [
720
+ var CreateSafetyRule$ = [
693
721
  9,
694
722
  n0,
695
723
  _CSR,
696
724
  { [_h]: ["POST", "/safetyrule", 200] },
697
- () => CreateSafetyRuleRequest,
698
- () => CreateSafetyRuleResponse,
725
+ () => CreateSafetyRuleRequest$,
726
+ () => CreateSafetyRuleResponse$,
699
727
  ];
700
- var DeleteCluster = [
728
+ var DeleteCluster$ = [
701
729
  9,
702
730
  n0,
703
731
  _DC,
704
732
  { [_h]: ["DELETE", "/cluster/{ClusterArn}", 200] },
705
- () => DeleteClusterRequest,
706
- () => DeleteClusterResponse,
733
+ () => DeleteClusterRequest$,
734
+ () => DeleteClusterResponse$,
707
735
  ];
708
- var DeleteControlPanel = [
736
+ var DeleteControlPanel$ = [
709
737
  9,
710
738
  n0,
711
739
  _DCPe,
712
740
  { [_h]: ["DELETE", "/controlpanel/{ControlPanelArn}", 200] },
713
- () => DeleteControlPanelRequest,
714
- () => DeleteControlPanelResponse,
741
+ () => DeleteControlPanelRequest$,
742
+ () => DeleteControlPanelResponse$,
715
743
  ];
716
- var DeleteRoutingControl = [
744
+ var DeleteRoutingControl$ = [
717
745
  9,
718
746
  n0,
719
747
  _DRC,
720
748
  { [_h]: ["DELETE", "/routingcontrol/{RoutingControlArn}", 200] },
721
- () => DeleteRoutingControlRequest,
722
- () => DeleteRoutingControlResponse,
749
+ () => DeleteRoutingControlRequest$,
750
+ () => DeleteRoutingControlResponse$,
723
751
  ];
724
- var DeleteSafetyRule = [
752
+ var DeleteSafetyRule$ = [
725
753
  9,
726
754
  n0,
727
755
  _DSR,
728
756
  { [_h]: ["DELETE", "/safetyrule/{SafetyRuleArn}", 200] },
729
- () => DeleteSafetyRuleRequest,
730
- () => DeleteSafetyRuleResponse,
757
+ () => DeleteSafetyRuleRequest$,
758
+ () => DeleteSafetyRuleResponse$,
731
759
  ];
732
- var DescribeCluster = [
760
+ var DescribeCluster$ = [
733
761
  9,
734
762
  n0,
735
763
  _DCe,
736
764
  { [_h]: ["GET", "/cluster/{ClusterArn}", 200] },
737
- () => DescribeClusterRequest,
738
- () => DescribeClusterResponse,
765
+ () => DescribeClusterRequest$,
766
+ () => DescribeClusterResponse$,
739
767
  ];
740
- var DescribeControlPanel = [
768
+ var DescribeControlPanel$ = [
741
769
  9,
742
770
  n0,
743
771
  _DCPes,
744
772
  { [_h]: ["GET", "/controlpanel/{ControlPanelArn}", 200] },
745
- () => DescribeControlPanelRequest,
746
- () => DescribeControlPanelResponse,
773
+ () => DescribeControlPanelRequest$,
774
+ () => DescribeControlPanelResponse$,
747
775
  ];
748
- var DescribeRoutingControl = [
776
+ var DescribeRoutingControl$ = [
749
777
  9,
750
778
  n0,
751
779
  _DRCe,
752
780
  { [_h]: ["GET", "/routingcontrol/{RoutingControlArn}", 200] },
753
- () => DescribeRoutingControlRequest,
754
- () => DescribeRoutingControlResponse,
781
+ () => DescribeRoutingControlRequest$,
782
+ () => DescribeRoutingControlResponse$,
755
783
  ];
756
- var DescribeSafetyRule = [
784
+ var DescribeSafetyRule$ = [
757
785
  9,
758
786
  n0,
759
787
  _DSRe,
760
788
  { [_h]: ["GET", "/safetyrule/{SafetyRuleArn}", 200] },
761
- () => DescribeSafetyRuleRequest,
762
- () => DescribeSafetyRuleResponse,
789
+ () => DescribeSafetyRuleRequest$,
790
+ () => DescribeSafetyRuleResponse$,
763
791
  ];
764
- var GetResourcePolicy = [
792
+ var GetResourcePolicy$ = [
765
793
  9,
766
794
  n0,
767
795
  _GRP,
768
796
  { [_h]: ["GET", "/resourcePolicy/{ResourceArn}", 200] },
769
- () => GetResourcePolicyRequest,
770
- () => GetResourcePolicyResponse,
797
+ () => GetResourcePolicyRequest$,
798
+ () => GetResourcePolicyResponse$,
771
799
  ];
772
- var ListAssociatedRoute53HealthChecks = [
800
+ var ListAssociatedRoute53HealthChecks$ = [
773
801
  9,
774
802
  n0,
775
803
  _LARHC,
776
804
  { [_h]: ["GET", "/routingcontrol/{RoutingControlArn}/associatedRoute53HealthChecks", 200] },
777
- () => ListAssociatedRoute53HealthChecksRequest,
778
- () => ListAssociatedRoute53HealthChecksResponse,
805
+ () => ListAssociatedRoute53HealthChecksRequest$,
806
+ () => ListAssociatedRoute53HealthChecksResponse$,
779
807
  ];
780
- var ListClusters = [
808
+ var ListClusters$ = [
781
809
  9,
782
810
  n0,
783
811
  _LC,
784
812
  { [_h]: ["GET", "/cluster", 200] },
785
- () => ListClustersRequest,
786
- () => ListClustersResponse,
813
+ () => ListClustersRequest$,
814
+ () => ListClustersResponse$,
787
815
  ];
788
- var ListControlPanels = [
816
+ var ListControlPanels$ = [
789
817
  9,
790
818
  n0,
791
819
  _LCP,
792
820
  { [_h]: ["GET", "/controlpanels", 200] },
793
- () => ListControlPanelsRequest,
794
- () => ListControlPanelsResponse,
821
+ () => ListControlPanelsRequest$,
822
+ () => ListControlPanelsResponse$,
795
823
  ];
796
- var ListRoutingControls = [
824
+ var ListRoutingControls$ = [
797
825
  9,
798
826
  n0,
799
827
  _LRC,
800
828
  { [_h]: ["GET", "/controlpanel/{ControlPanelArn}/routingcontrols", 200] },
801
- () => ListRoutingControlsRequest,
802
- () => ListRoutingControlsResponse,
829
+ () => ListRoutingControlsRequest$,
830
+ () => ListRoutingControlsResponse$,
803
831
  ];
804
- var ListSafetyRules = [
832
+ var ListSafetyRules$ = [
805
833
  9,
806
834
  n0,
807
835
  _LSR,
808
836
  { [_h]: ["GET", "/controlpanel/{ControlPanelArn}/safetyrules", 200] },
809
- () => ListSafetyRulesRequest,
810
- () => ListSafetyRulesResponse,
837
+ () => ListSafetyRulesRequest$,
838
+ () => ListSafetyRulesResponse$,
811
839
  ];
812
- var ListTagsForResource = [
840
+ var ListTagsForResource$ = [
813
841
  9,
814
842
  n0,
815
843
  _LTFR,
816
844
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
817
- () => ListTagsForResourceRequest,
818
- () => ListTagsForResourceResponse,
845
+ () => ListTagsForResourceRequest$,
846
+ () => ListTagsForResourceResponse$,
819
847
  ];
820
- var TagResource = [
848
+ var TagResource$ = [
821
849
  9,
822
850
  n0,
823
851
  _TR,
824
852
  { [_h]: ["POST", "/tags/{ResourceArn}", 200] },
825
- () => TagResourceRequest,
826
- () => TagResourceResponse,
853
+ () => TagResourceRequest$,
854
+ () => TagResourceResponse$,
827
855
  ];
828
- var UntagResource = [
856
+ var UntagResource$ = [
829
857
  9,
830
858
  n0,
831
859
  _UR,
832
860
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
833
- () => UntagResourceRequest,
834
- () => UntagResourceResponse,
861
+ () => UntagResourceRequest$,
862
+ () => UntagResourceResponse$,
835
863
  ];
836
- var UpdateCluster = [
864
+ var UpdateCluster$ = [
837
865
  9,
838
866
  n0,
839
867
  _UC,
840
868
  { [_h]: ["PUT", "/cluster", 200] },
841
- () => UpdateClusterRequest,
842
- () => UpdateClusterResponse,
869
+ () => UpdateClusterRequest$,
870
+ () => UpdateClusterResponse$,
843
871
  ];
844
- var UpdateControlPanel = [
872
+ var UpdateControlPanel$ = [
845
873
  9,
846
874
  n0,
847
875
  _UCP,
848
876
  { [_h]: ["PUT", "/controlpanel", 200] },
849
- () => UpdateControlPanelRequest,
850
- () => UpdateControlPanelResponse,
877
+ () => UpdateControlPanelRequest$,
878
+ () => UpdateControlPanelResponse$,
851
879
  ];
852
- var UpdateRoutingControl = [
880
+ var UpdateRoutingControl$ = [
853
881
  9,
854
882
  n0,
855
883
  _URC,
856
884
  { [_h]: ["PUT", "/routingcontrol", 200] },
857
- () => UpdateRoutingControlRequest,
858
- () => UpdateRoutingControlResponse,
885
+ () => UpdateRoutingControlRequest$,
886
+ () => UpdateRoutingControlResponse$,
859
887
  ];
860
- var UpdateSafetyRule = [
888
+ var UpdateSafetyRule$ = [
861
889
  9,
862
890
  n0,
863
891
  _USR,
864
892
  { [_h]: ["PUT", "/safetyrule", 200] },
865
- () => UpdateSafetyRuleRequest,
866
- () => UpdateSafetyRuleResponse,
893
+ () => UpdateSafetyRuleRequest$,
894
+ () => UpdateSafetyRuleResponse$,
867
895
  ];
868
896
 
869
897
  class CreateClusterCommand extends smithyClient.Command
@@ -874,7 +902,7 @@ class CreateClusterCommand extends smithyClient.Command
874
902
  })
875
903
  .s("Route53RecoveryControlConfig", "CreateCluster", {})
876
904
  .n("Route53RecoveryControlConfigClient", "CreateClusterCommand")
877
- .sc(CreateCluster)
905
+ .sc(CreateCluster$)
878
906
  .build() {
879
907
  }
880
908
 
@@ -886,7 +914,7 @@ class CreateControlPanelCommand extends smithyClient.Command
886
914
  })
887
915
  .s("Route53RecoveryControlConfig", "CreateControlPanel", {})
888
916
  .n("Route53RecoveryControlConfigClient", "CreateControlPanelCommand")
889
- .sc(CreateControlPanel)
917
+ .sc(CreateControlPanel$)
890
918
  .build() {
891
919
  }
892
920
 
@@ -898,7 +926,7 @@ class CreateRoutingControlCommand extends smithyClient.Command
898
926
  })
899
927
  .s("Route53RecoveryControlConfig", "CreateRoutingControl", {})
900
928
  .n("Route53RecoveryControlConfigClient", "CreateRoutingControlCommand")
901
- .sc(CreateRoutingControl)
929
+ .sc(CreateRoutingControl$)
902
930
  .build() {
903
931
  }
904
932
 
@@ -910,7 +938,7 @@ class CreateSafetyRuleCommand extends smithyClient.Command
910
938
  })
911
939
  .s("Route53RecoveryControlConfig", "CreateSafetyRule", {})
912
940
  .n("Route53RecoveryControlConfigClient", "CreateSafetyRuleCommand")
913
- .sc(CreateSafetyRule)
941
+ .sc(CreateSafetyRule$)
914
942
  .build() {
915
943
  }
916
944
 
@@ -922,7 +950,7 @@ class DeleteClusterCommand extends smithyClient.Command
922
950
  })
923
951
  .s("Route53RecoveryControlConfig", "DeleteCluster", {})
924
952
  .n("Route53RecoveryControlConfigClient", "DeleteClusterCommand")
925
- .sc(DeleteCluster)
953
+ .sc(DeleteCluster$)
926
954
  .build() {
927
955
  }
928
956
 
@@ -934,7 +962,7 @@ class DeleteControlPanelCommand extends smithyClient.Command
934
962
  })
935
963
  .s("Route53RecoveryControlConfig", "DeleteControlPanel", {})
936
964
  .n("Route53RecoveryControlConfigClient", "DeleteControlPanelCommand")
937
- .sc(DeleteControlPanel)
965
+ .sc(DeleteControlPanel$)
938
966
  .build() {
939
967
  }
940
968
 
@@ -946,7 +974,7 @@ class DeleteRoutingControlCommand extends smithyClient.Command
946
974
  })
947
975
  .s("Route53RecoveryControlConfig", "DeleteRoutingControl", {})
948
976
  .n("Route53RecoveryControlConfigClient", "DeleteRoutingControlCommand")
949
- .sc(DeleteRoutingControl)
977
+ .sc(DeleteRoutingControl$)
950
978
  .build() {
951
979
  }
952
980
 
@@ -958,7 +986,7 @@ class DeleteSafetyRuleCommand extends smithyClient.Command
958
986
  })
959
987
  .s("Route53RecoveryControlConfig", "DeleteSafetyRule", {})
960
988
  .n("Route53RecoveryControlConfigClient", "DeleteSafetyRuleCommand")
961
- .sc(DeleteSafetyRule)
989
+ .sc(DeleteSafetyRule$)
962
990
  .build() {
963
991
  }
964
992
 
@@ -970,7 +998,7 @@ class DescribeClusterCommand extends smithyClient.Command
970
998
  })
971
999
  .s("Route53RecoveryControlConfig", "DescribeCluster", {})
972
1000
  .n("Route53RecoveryControlConfigClient", "DescribeClusterCommand")
973
- .sc(DescribeCluster)
1001
+ .sc(DescribeCluster$)
974
1002
  .build() {
975
1003
  }
976
1004
 
@@ -982,7 +1010,7 @@ class DescribeControlPanelCommand extends smithyClient.Command
982
1010
  })
983
1011
  .s("Route53RecoveryControlConfig", "DescribeControlPanel", {})
984
1012
  .n("Route53RecoveryControlConfigClient", "DescribeControlPanelCommand")
985
- .sc(DescribeControlPanel)
1013
+ .sc(DescribeControlPanel$)
986
1014
  .build() {
987
1015
  }
988
1016
 
@@ -994,7 +1022,7 @@ class DescribeRoutingControlCommand extends smithyClient.Command
994
1022
  })
995
1023
  .s("Route53RecoveryControlConfig", "DescribeRoutingControl", {})
996
1024
  .n("Route53RecoveryControlConfigClient", "DescribeRoutingControlCommand")
997
- .sc(DescribeRoutingControl)
1025
+ .sc(DescribeRoutingControl$)
998
1026
  .build() {
999
1027
  }
1000
1028
 
@@ -1006,7 +1034,7 @@ class DescribeSafetyRuleCommand extends smithyClient.Command
1006
1034
  })
1007
1035
  .s("Route53RecoveryControlConfig", "DescribeSafetyRule", {})
1008
1036
  .n("Route53RecoveryControlConfigClient", "DescribeSafetyRuleCommand")
1009
- .sc(DescribeSafetyRule)
1037
+ .sc(DescribeSafetyRule$)
1010
1038
  .build() {
1011
1039
  }
1012
1040
 
@@ -1018,7 +1046,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
1018
1046
  })
1019
1047
  .s("Route53RecoveryControlConfig", "GetResourcePolicy", {})
1020
1048
  .n("Route53RecoveryControlConfigClient", "GetResourcePolicyCommand")
1021
- .sc(GetResourcePolicy)
1049
+ .sc(GetResourcePolicy$)
1022
1050
  .build() {
1023
1051
  }
1024
1052
 
@@ -1030,7 +1058,7 @@ class ListAssociatedRoute53HealthChecksCommand extends smithyClient.Command
1030
1058
  })
1031
1059
  .s("Route53RecoveryControlConfig", "ListAssociatedRoute53HealthChecks", {})
1032
1060
  .n("Route53RecoveryControlConfigClient", "ListAssociatedRoute53HealthChecksCommand")
1033
- .sc(ListAssociatedRoute53HealthChecks)
1061
+ .sc(ListAssociatedRoute53HealthChecks$)
1034
1062
  .build() {
1035
1063
  }
1036
1064
 
@@ -1042,7 +1070,7 @@ class ListClustersCommand extends smithyClient.Command
1042
1070
  })
1043
1071
  .s("Route53RecoveryControlConfig", "ListClusters", {})
1044
1072
  .n("Route53RecoveryControlConfigClient", "ListClustersCommand")
1045
- .sc(ListClusters)
1073
+ .sc(ListClusters$)
1046
1074
  .build() {
1047
1075
  }
1048
1076
 
@@ -1054,7 +1082,7 @@ class ListControlPanelsCommand extends smithyClient.Command
1054
1082
  })
1055
1083
  .s("Route53RecoveryControlConfig", "ListControlPanels", {})
1056
1084
  .n("Route53RecoveryControlConfigClient", "ListControlPanelsCommand")
1057
- .sc(ListControlPanels)
1085
+ .sc(ListControlPanels$)
1058
1086
  .build() {
1059
1087
  }
1060
1088
 
@@ -1066,7 +1094,7 @@ class ListRoutingControlsCommand extends smithyClient.Command
1066
1094
  })
1067
1095
  .s("Route53RecoveryControlConfig", "ListRoutingControls", {})
1068
1096
  .n("Route53RecoveryControlConfigClient", "ListRoutingControlsCommand")
1069
- .sc(ListRoutingControls)
1097
+ .sc(ListRoutingControls$)
1070
1098
  .build() {
1071
1099
  }
1072
1100
 
@@ -1078,7 +1106,7 @@ class ListSafetyRulesCommand extends smithyClient.Command
1078
1106
  })
1079
1107
  .s("Route53RecoveryControlConfig", "ListSafetyRules", {})
1080
1108
  .n("Route53RecoveryControlConfigClient", "ListSafetyRulesCommand")
1081
- .sc(ListSafetyRules)
1109
+ .sc(ListSafetyRules$)
1082
1110
  .build() {
1083
1111
  }
1084
1112
 
@@ -1090,7 +1118,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1090
1118
  })
1091
1119
  .s("Route53RecoveryControlConfig", "ListTagsForResource", {})
1092
1120
  .n("Route53RecoveryControlConfigClient", "ListTagsForResourceCommand")
1093
- .sc(ListTagsForResource)
1121
+ .sc(ListTagsForResource$)
1094
1122
  .build() {
1095
1123
  }
1096
1124
 
@@ -1102,7 +1130,7 @@ class TagResourceCommand extends smithyClient.Command
1102
1130
  })
1103
1131
  .s("Route53RecoveryControlConfig", "TagResource", {})
1104
1132
  .n("Route53RecoveryControlConfigClient", "TagResourceCommand")
1105
- .sc(TagResource)
1133
+ .sc(TagResource$)
1106
1134
  .build() {
1107
1135
  }
1108
1136
 
@@ -1114,7 +1142,7 @@ class UntagResourceCommand extends smithyClient.Command
1114
1142
  })
1115
1143
  .s("Route53RecoveryControlConfig", "UntagResource", {})
1116
1144
  .n("Route53RecoveryControlConfigClient", "UntagResourceCommand")
1117
- .sc(UntagResource)
1145
+ .sc(UntagResource$)
1118
1146
  .build() {
1119
1147
  }
1120
1148
 
@@ -1126,7 +1154,7 @@ class UpdateClusterCommand extends smithyClient.Command
1126
1154
  })
1127
1155
  .s("Route53RecoveryControlConfig", "UpdateCluster", {})
1128
1156
  .n("Route53RecoveryControlConfigClient", "UpdateClusterCommand")
1129
- .sc(UpdateCluster)
1157
+ .sc(UpdateCluster$)
1130
1158
  .build() {
1131
1159
  }
1132
1160
 
@@ -1138,7 +1166,7 @@ class UpdateControlPanelCommand extends smithyClient.Command
1138
1166
  })
1139
1167
  .s("Route53RecoveryControlConfig", "UpdateControlPanel", {})
1140
1168
  .n("Route53RecoveryControlConfigClient", "UpdateControlPanelCommand")
1141
- .sc(UpdateControlPanel)
1169
+ .sc(UpdateControlPanel$)
1142
1170
  .build() {
1143
1171
  }
1144
1172
 
@@ -1150,7 +1178,7 @@ class UpdateRoutingControlCommand extends smithyClient.Command
1150
1178
  })
1151
1179
  .s("Route53RecoveryControlConfig", "UpdateRoutingControl", {})
1152
1180
  .n("Route53RecoveryControlConfigClient", "UpdateRoutingControlCommand")
1153
- .sc(UpdateRoutingControl)
1181
+ .sc(UpdateRoutingControl$)
1154
1182
  .build() {
1155
1183
  }
1156
1184
 
@@ -1162,7 +1190,7 @@ class UpdateSafetyRuleCommand extends smithyClient.Command
1162
1190
  })
1163
1191
  .s("Route53RecoveryControlConfig", "UpdateSafetyRule", {})
1164
1192
  .n("Route53RecoveryControlConfigClient", "UpdateSafetyRuleCommand")
1165
- .sc(UpdateSafetyRule)
1193
+ .sc(UpdateSafetyRule$)
1166
1194
  .build() {
1167
1195
  }
1168
1196
 
@@ -1464,44 +1492,139 @@ Object.defineProperty(exports, "__Client", {
1464
1492
  enumerable: true,
1465
1493
  get: function () { return smithyClient.Client; }
1466
1494
  });
1467
- exports.AccessDeniedException = AccessDeniedException$1;
1468
- exports.ConflictException = ConflictException$1;
1495
+ exports.AccessDeniedException = AccessDeniedException;
1496
+ exports.AccessDeniedException$ = AccessDeniedException$;
1497
+ exports.AssertionRule$ = AssertionRule$;
1498
+ exports.AssertionRuleUpdate$ = AssertionRuleUpdate$;
1499
+ exports.Cluster$ = Cluster$;
1500
+ exports.ClusterEndpoint$ = ClusterEndpoint$;
1501
+ exports.ConflictException = ConflictException;
1502
+ exports.ConflictException$ = ConflictException$;
1503
+ exports.ControlPanel$ = ControlPanel$;
1504
+ exports.CreateCluster$ = CreateCluster$;
1469
1505
  exports.CreateClusterCommand = CreateClusterCommand;
1506
+ exports.CreateClusterRequest$ = CreateClusterRequest$;
1507
+ exports.CreateClusterResponse$ = CreateClusterResponse$;
1508
+ exports.CreateControlPanel$ = CreateControlPanel$;
1470
1509
  exports.CreateControlPanelCommand = CreateControlPanelCommand;
1510
+ exports.CreateControlPanelRequest$ = CreateControlPanelRequest$;
1511
+ exports.CreateControlPanelResponse$ = CreateControlPanelResponse$;
1512
+ exports.CreateRoutingControl$ = CreateRoutingControl$;
1471
1513
  exports.CreateRoutingControlCommand = CreateRoutingControlCommand;
1514
+ exports.CreateRoutingControlRequest$ = CreateRoutingControlRequest$;
1515
+ exports.CreateRoutingControlResponse$ = CreateRoutingControlResponse$;
1516
+ exports.CreateSafetyRule$ = CreateSafetyRule$;
1472
1517
  exports.CreateSafetyRuleCommand = CreateSafetyRuleCommand;
1518
+ exports.CreateSafetyRuleRequest$ = CreateSafetyRuleRequest$;
1519
+ exports.CreateSafetyRuleResponse$ = CreateSafetyRuleResponse$;
1520
+ exports.DeleteCluster$ = DeleteCluster$;
1473
1521
  exports.DeleteClusterCommand = DeleteClusterCommand;
1522
+ exports.DeleteClusterRequest$ = DeleteClusterRequest$;
1523
+ exports.DeleteClusterResponse$ = DeleteClusterResponse$;
1524
+ exports.DeleteControlPanel$ = DeleteControlPanel$;
1474
1525
  exports.DeleteControlPanelCommand = DeleteControlPanelCommand;
1526
+ exports.DeleteControlPanelRequest$ = DeleteControlPanelRequest$;
1527
+ exports.DeleteControlPanelResponse$ = DeleteControlPanelResponse$;
1528
+ exports.DeleteRoutingControl$ = DeleteRoutingControl$;
1475
1529
  exports.DeleteRoutingControlCommand = DeleteRoutingControlCommand;
1530
+ exports.DeleteRoutingControlRequest$ = DeleteRoutingControlRequest$;
1531
+ exports.DeleteRoutingControlResponse$ = DeleteRoutingControlResponse$;
1532
+ exports.DeleteSafetyRule$ = DeleteSafetyRule$;
1476
1533
  exports.DeleteSafetyRuleCommand = DeleteSafetyRuleCommand;
1534
+ exports.DeleteSafetyRuleRequest$ = DeleteSafetyRuleRequest$;
1535
+ exports.DeleteSafetyRuleResponse$ = DeleteSafetyRuleResponse$;
1536
+ exports.DescribeCluster$ = DescribeCluster$;
1477
1537
  exports.DescribeClusterCommand = DescribeClusterCommand;
1538
+ exports.DescribeClusterRequest$ = DescribeClusterRequest$;
1539
+ exports.DescribeClusterResponse$ = DescribeClusterResponse$;
1540
+ exports.DescribeControlPanel$ = DescribeControlPanel$;
1478
1541
  exports.DescribeControlPanelCommand = DescribeControlPanelCommand;
1542
+ exports.DescribeControlPanelRequest$ = DescribeControlPanelRequest$;
1543
+ exports.DescribeControlPanelResponse$ = DescribeControlPanelResponse$;
1544
+ exports.DescribeRoutingControl$ = DescribeRoutingControl$;
1479
1545
  exports.DescribeRoutingControlCommand = DescribeRoutingControlCommand;
1546
+ exports.DescribeRoutingControlRequest$ = DescribeRoutingControlRequest$;
1547
+ exports.DescribeRoutingControlResponse$ = DescribeRoutingControlResponse$;
1548
+ exports.DescribeSafetyRule$ = DescribeSafetyRule$;
1480
1549
  exports.DescribeSafetyRuleCommand = DescribeSafetyRuleCommand;
1550
+ exports.DescribeSafetyRuleRequest$ = DescribeSafetyRuleRequest$;
1551
+ exports.DescribeSafetyRuleResponse$ = DescribeSafetyRuleResponse$;
1552
+ exports.GatingRule$ = GatingRule$;
1553
+ exports.GatingRuleUpdate$ = GatingRuleUpdate$;
1554
+ exports.GetResourcePolicy$ = GetResourcePolicy$;
1481
1555
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
1482
- exports.InternalServerException = InternalServerException$1;
1556
+ exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
1557
+ exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
1558
+ exports.InternalServerException = InternalServerException;
1559
+ exports.InternalServerException$ = InternalServerException$;
1560
+ exports.ListAssociatedRoute53HealthChecks$ = ListAssociatedRoute53HealthChecks$;
1483
1561
  exports.ListAssociatedRoute53HealthChecksCommand = ListAssociatedRoute53HealthChecksCommand;
1562
+ exports.ListAssociatedRoute53HealthChecksRequest$ = ListAssociatedRoute53HealthChecksRequest$;
1563
+ exports.ListAssociatedRoute53HealthChecksResponse$ = ListAssociatedRoute53HealthChecksResponse$;
1564
+ exports.ListClusters$ = ListClusters$;
1484
1565
  exports.ListClustersCommand = ListClustersCommand;
1566
+ exports.ListClustersRequest$ = ListClustersRequest$;
1567
+ exports.ListClustersResponse$ = ListClustersResponse$;
1568
+ exports.ListControlPanels$ = ListControlPanels$;
1485
1569
  exports.ListControlPanelsCommand = ListControlPanelsCommand;
1570
+ exports.ListControlPanelsRequest$ = ListControlPanelsRequest$;
1571
+ exports.ListControlPanelsResponse$ = ListControlPanelsResponse$;
1572
+ exports.ListRoutingControls$ = ListRoutingControls$;
1486
1573
  exports.ListRoutingControlsCommand = ListRoutingControlsCommand;
1574
+ exports.ListRoutingControlsRequest$ = ListRoutingControlsRequest$;
1575
+ exports.ListRoutingControlsResponse$ = ListRoutingControlsResponse$;
1576
+ exports.ListSafetyRules$ = ListSafetyRules$;
1487
1577
  exports.ListSafetyRulesCommand = ListSafetyRulesCommand;
1578
+ exports.ListSafetyRulesRequest$ = ListSafetyRulesRequest$;
1579
+ exports.ListSafetyRulesResponse$ = ListSafetyRulesResponse$;
1580
+ exports.ListTagsForResource$ = ListTagsForResource$;
1488
1581
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1582
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1583
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1489
1584
  exports.NetworkType = NetworkType;
1490
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1585
+ exports.NewAssertionRule$ = NewAssertionRule$;
1586
+ exports.NewGatingRule$ = NewGatingRule$;
1587
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1588
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1491
1589
  exports.Route53RecoveryControlConfig = Route53RecoveryControlConfig;
1492
1590
  exports.Route53RecoveryControlConfigClient = Route53RecoveryControlConfigClient;
1493
- exports.Route53RecoveryControlConfigServiceException = Route53RecoveryControlConfigServiceException$1;
1591
+ exports.Route53RecoveryControlConfigServiceException = Route53RecoveryControlConfigServiceException;
1592
+ exports.Route53RecoveryControlConfigServiceException$ = Route53RecoveryControlConfigServiceException$;
1593
+ exports.RoutingControl$ = RoutingControl$;
1594
+ exports.Rule$ = Rule$;
1595
+ exports.RuleConfig$ = RuleConfig$;
1494
1596
  exports.RuleType = RuleType;
1495
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1597
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1598
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1496
1599
  exports.Status = Status;
1600
+ exports.TagResource$ = TagResource$;
1497
1601
  exports.TagResourceCommand = TagResourceCommand;
1498
- exports.ThrottlingException = ThrottlingException$1;
1602
+ exports.TagResourceRequest$ = TagResourceRequest$;
1603
+ exports.TagResourceResponse$ = TagResourceResponse$;
1604
+ exports.ThrottlingException = ThrottlingException;
1605
+ exports.ThrottlingException$ = ThrottlingException$;
1606
+ exports.UntagResource$ = UntagResource$;
1499
1607
  exports.UntagResourceCommand = UntagResourceCommand;
1608
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1609
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1610
+ exports.UpdateCluster$ = UpdateCluster$;
1500
1611
  exports.UpdateClusterCommand = UpdateClusterCommand;
1612
+ exports.UpdateClusterRequest$ = UpdateClusterRequest$;
1613
+ exports.UpdateClusterResponse$ = UpdateClusterResponse$;
1614
+ exports.UpdateControlPanel$ = UpdateControlPanel$;
1501
1615
  exports.UpdateControlPanelCommand = UpdateControlPanelCommand;
1616
+ exports.UpdateControlPanelRequest$ = UpdateControlPanelRequest$;
1617
+ exports.UpdateControlPanelResponse$ = UpdateControlPanelResponse$;
1618
+ exports.UpdateRoutingControl$ = UpdateRoutingControl$;
1502
1619
  exports.UpdateRoutingControlCommand = UpdateRoutingControlCommand;
1620
+ exports.UpdateRoutingControlRequest$ = UpdateRoutingControlRequest$;
1621
+ exports.UpdateRoutingControlResponse$ = UpdateRoutingControlResponse$;
1622
+ exports.UpdateSafetyRule$ = UpdateSafetyRule$;
1503
1623
  exports.UpdateSafetyRuleCommand = UpdateSafetyRuleCommand;
1504
- exports.ValidationException = ValidationException$1;
1624
+ exports.UpdateSafetyRuleRequest$ = UpdateSafetyRuleRequest$;
1625
+ exports.UpdateSafetyRuleResponse$ = UpdateSafetyRuleResponse$;
1626
+ exports.ValidationException = ValidationException;
1627
+ exports.ValidationException$ = ValidationException$;
1505
1628
  exports.paginateListAssociatedRoute53HealthChecks = paginateListAssociatedRoute53HealthChecks;
1506
1629
  exports.paginateListClusters = paginateListClusters;
1507
1630
  exports.paginateListControlPanels = paginateListControlPanels;