@aws-sdk/client-route53-recovery-readiness 3.928.0 → 3.930.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 (53) hide show
  1. package/dist-cjs/index.js +2390 -1469
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/Route53RecoveryReadinessClient.js +2 -0
  4. package/dist-es/commands/CreateCellCommand.js +3 -9
  5. package/dist-es/commands/CreateCrossAccountAuthorizationCommand.js +3 -9
  6. package/dist-es/commands/CreateReadinessCheckCommand.js +3 -9
  7. package/dist-es/commands/CreateRecoveryGroupCommand.js +3 -9
  8. package/dist-es/commands/CreateResourceSetCommand.js +3 -9
  9. package/dist-es/commands/DeleteCellCommand.js +3 -9
  10. package/dist-es/commands/DeleteCrossAccountAuthorizationCommand.js +3 -9
  11. package/dist-es/commands/DeleteReadinessCheckCommand.js +3 -9
  12. package/dist-es/commands/DeleteRecoveryGroupCommand.js +3 -9
  13. package/dist-es/commands/DeleteResourceSetCommand.js +3 -9
  14. package/dist-es/commands/GetArchitectureRecommendationsCommand.js +3 -9
  15. package/dist-es/commands/GetCellCommand.js +3 -9
  16. package/dist-es/commands/GetCellReadinessSummaryCommand.js +3 -9
  17. package/dist-es/commands/GetReadinessCheckCommand.js +3 -9
  18. package/dist-es/commands/GetReadinessCheckResourceStatusCommand.js +3 -9
  19. package/dist-es/commands/GetReadinessCheckStatusCommand.js +3 -9
  20. package/dist-es/commands/GetRecoveryGroupCommand.js +3 -9
  21. package/dist-es/commands/GetRecoveryGroupReadinessSummaryCommand.js +3 -9
  22. package/dist-es/commands/GetResourceSetCommand.js +3 -9
  23. package/dist-es/commands/ListCellsCommand.js +3 -9
  24. package/dist-es/commands/ListCrossAccountAuthorizationsCommand.js +3 -9
  25. package/dist-es/commands/ListReadinessChecksCommand.js +3 -9
  26. package/dist-es/commands/ListRecoveryGroupsCommand.js +3 -9
  27. package/dist-es/commands/ListResourceSetsCommand.js +3 -9
  28. package/dist-es/commands/ListRulesCommand.js +3 -9
  29. package/dist-es/commands/ListTagsForResourcesCommand.js +3 -9
  30. package/dist-es/commands/TagResourceCommand.js +3 -9
  31. package/dist-es/commands/UntagResourceCommand.js +3 -9
  32. package/dist-es/commands/UpdateCellCommand.js +3 -9
  33. package/dist-es/commands/UpdateReadinessCheckCommand.js +3 -9
  34. package/dist-es/commands/UpdateRecoveryGroupCommand.js +3 -9
  35. package/dist-es/commands/UpdateResourceSetCommand.js +3 -9
  36. package/dist-es/runtimeConfig.shared.js +2 -0
  37. package/dist-es/schemas/schemas_0.js +2315 -0
  38. package/dist-types/Route53RecoveryReadinessClient.d.ts +10 -1
  39. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  40. package/dist-types/runtimeConfig.d.ts +1 -0
  41. package/dist-types/runtimeConfig.native.d.ts +1 -0
  42. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  43. package/dist-types/schemas/schemas_0.d.ts +129 -0
  44. package/dist-types/ts3.4/Route53RecoveryReadinessClient.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
  50. package/package.json +33 -33
  51. package/dist-es/protocols/Aws_restJson1.js +0 -1234
  52. package/dist-types/protocols/Aws_restJson1.d.ts +0 -290
  53. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -389
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 Route53RecoveryReadinessClient 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,12 +110,12 @@ class Route53RecoveryReadinessClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class Route53RecoveryReadinessServiceException extends smithyClient.ServiceException {
113
+ let Route53RecoveryReadinessServiceException$1 = class Route53RecoveryReadinessServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, Route53RecoveryReadinessServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
120
  const Readiness = {
121
121
  NOT_AUTHORIZED: "NOT_AUTHORIZED",
@@ -123,7 +123,7 @@ const Readiness = {
123
123
  READY: "READY",
124
124
  UNKNOWN: "UNKNOWN",
125
125
  };
126
- class AccessDeniedException extends Route53RecoveryReadinessServiceException {
126
+ let AccessDeniedException$1 = class AccessDeniedException extends Route53RecoveryReadinessServiceException$1 {
127
127
  name = "AccessDeniedException";
128
128
  $fault = "client";
129
129
  Message;
@@ -136,8 +136,8 @@ class AccessDeniedException extends Route53RecoveryReadinessServiceException {
136
136
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
137
137
  this.Message = opts.Message;
138
138
  }
139
- }
140
- class ConflictException extends Route53RecoveryReadinessServiceException {
139
+ };
140
+ let ConflictException$1 = class ConflictException extends Route53RecoveryReadinessServiceException$1 {
141
141
  name = "ConflictException";
142
142
  $fault = "client";
143
143
  Message;
@@ -150,8 +150,8 @@ class ConflictException extends Route53RecoveryReadinessServiceException {
150
150
  Object.setPrototypeOf(this, ConflictException.prototype);
151
151
  this.Message = opts.Message;
152
152
  }
153
- }
154
- class InternalServerException extends Route53RecoveryReadinessServiceException {
153
+ };
154
+ let InternalServerException$1 = class InternalServerException extends Route53RecoveryReadinessServiceException$1 {
155
155
  name = "InternalServerException";
156
156
  $fault = "server";
157
157
  Message;
@@ -164,8 +164,8 @@ class InternalServerException extends Route53RecoveryReadinessServiceException {
164
164
  Object.setPrototypeOf(this, InternalServerException.prototype);
165
165
  this.Message = opts.Message;
166
166
  }
167
- }
168
- class ThrottlingException extends Route53RecoveryReadinessServiceException {
167
+ };
168
+ let ThrottlingException$1 = class ThrottlingException extends Route53RecoveryReadinessServiceException$1 {
169
169
  name = "ThrottlingException";
170
170
  $fault = "client";
171
171
  Message;
@@ -178,8 +178,8 @@ class ThrottlingException extends Route53RecoveryReadinessServiceException {
178
178
  Object.setPrototypeOf(this, ThrottlingException.prototype);
179
179
  this.Message = opts.Message;
180
180
  }
181
- }
182
- class ValidationException extends Route53RecoveryReadinessServiceException {
181
+ };
182
+ let ValidationException$1 = class ValidationException extends Route53RecoveryReadinessServiceException$1 {
183
183
  name = "ValidationException";
184
184
  $fault = "client";
185
185
  Message;
@@ -192,8 +192,8 @@ class ValidationException extends Route53RecoveryReadinessServiceException {
192
192
  Object.setPrototypeOf(this, ValidationException.prototype);
193
193
  this.Message = opts.Message;
194
194
  }
195
- }
196
- class ResourceNotFoundException extends Route53RecoveryReadinessServiceException {
195
+ };
196
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Route53RecoveryReadinessServiceException$1 {
197
197
  name = "ResourceNotFoundException";
198
198
  $fault = "client";
199
199
  Message;
@@ -206,1251 +206,2327 @@ class ResourceNotFoundException extends Route53RecoveryReadinessServiceException
206
206
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
207
207
  this.Message = opts.Message;
208
208
  }
209
- }
210
-
211
- const se_CreateCellCommand = async (input, context) => {
212
- const b = core.requestBuilder(input, context);
213
- const headers = {
214
- "content-type": "application/json",
215
- };
216
- b.bp("/cells");
217
- let body;
218
- body = JSON.stringify(smithyClient.take(input, {
219
- cellName: [, , `CellName`],
220
- cells: [, (_) => smithyClient._json(_), `Cells`],
221
- tags: [, (_) => smithyClient._json(_), `Tags`],
222
- }));
223
- b.m("POST").h(headers).b(body);
224
- return b.build();
225
- };
226
- const se_CreateCrossAccountAuthorizationCommand = async (input, context) => {
227
- const b = core.requestBuilder(input, context);
228
- const headers = {
229
- "content-type": "application/json",
230
- };
231
- b.bp("/crossaccountauthorizations");
232
- let body;
233
- body = JSON.stringify(smithyClient.take(input, {
234
- crossAccountAuthorization: [, , `CrossAccountAuthorization`],
235
- }));
236
- b.m("POST").h(headers).b(body);
237
- return b.build();
238
- };
239
- const se_CreateReadinessCheckCommand = async (input, context) => {
240
- const b = core.requestBuilder(input, context);
241
- const headers = {
242
- "content-type": "application/json",
243
- };
244
- b.bp("/readinesschecks");
245
- let body;
246
- body = JSON.stringify(smithyClient.take(input, {
247
- readinessCheckName: [, , `ReadinessCheckName`],
248
- resourceSetName: [, , `ResourceSetName`],
249
- tags: [, (_) => smithyClient._json(_), `Tags`],
250
- }));
251
- b.m("POST").h(headers).b(body);
252
- return b.build();
253
- };
254
- const se_CreateRecoveryGroupCommand = async (input, context) => {
255
- const b = core.requestBuilder(input, context);
256
- const headers = {
257
- "content-type": "application/json",
258
- };
259
- b.bp("/recoverygroups");
260
- let body;
261
- body = JSON.stringify(smithyClient.take(input, {
262
- cells: [, (_) => smithyClient._json(_), `Cells`],
263
- recoveryGroupName: [, , `RecoveryGroupName`],
264
- tags: [, (_) => smithyClient._json(_), `Tags`],
265
- }));
266
- b.m("POST").h(headers).b(body);
267
- return b.build();
268
- };
269
- const se_CreateResourceSetCommand = async (input, context) => {
270
- const b = core.requestBuilder(input, context);
271
- const headers = {
272
- "content-type": "application/json",
273
- };
274
- b.bp("/resourcesets");
275
- let body;
276
- body = JSON.stringify(smithyClient.take(input, {
277
- resourceSetName: [, , `ResourceSetName`],
278
- resourceSetType: [, , `ResourceSetType`],
279
- resources: [, (_) => se___listOfResource(_), `Resources`],
280
- tags: [, (_) => smithyClient._json(_), `Tags`],
281
- }));
282
- b.m("POST").h(headers).b(body);
283
- return b.build();
284
- };
285
- const se_DeleteCellCommand = async (input, context) => {
286
- const b = core.requestBuilder(input, context);
287
- const headers = {};
288
- b.bp("/cells/{CellName}");
289
- b.p("CellName", () => input.CellName, "{CellName}", false);
290
- let body;
291
- b.m("DELETE").h(headers).b(body);
292
- return b.build();
293
- };
294
- const se_DeleteCrossAccountAuthorizationCommand = async (input, context) => {
295
- const b = core.requestBuilder(input, context);
296
- const headers = {};
297
- b.bp("/crossaccountauthorizations/{CrossAccountAuthorization}");
298
- b.p("CrossAccountAuthorization", () => input.CrossAccountAuthorization, "{CrossAccountAuthorization}", false);
299
- let body;
300
- b.m("DELETE").h(headers).b(body);
301
- return b.build();
302
- };
303
- const se_DeleteReadinessCheckCommand = async (input, context) => {
304
- const b = core.requestBuilder(input, context);
305
- const headers = {};
306
- b.bp("/readinesschecks/{ReadinessCheckName}");
307
- b.p("ReadinessCheckName", () => input.ReadinessCheckName, "{ReadinessCheckName}", false);
308
- let body;
309
- b.m("DELETE").h(headers).b(body);
310
- return b.build();
311
- };
312
- const se_DeleteRecoveryGroupCommand = async (input, context) => {
313
- const b = core.requestBuilder(input, context);
314
- const headers = {};
315
- b.bp("/recoverygroups/{RecoveryGroupName}");
316
- b.p("RecoveryGroupName", () => input.RecoveryGroupName, "{RecoveryGroupName}", false);
317
- let body;
318
- b.m("DELETE").h(headers).b(body);
319
- return b.build();
320
- };
321
- const se_DeleteResourceSetCommand = async (input, context) => {
322
- const b = core.requestBuilder(input, context);
323
- const headers = {};
324
- b.bp("/resourcesets/{ResourceSetName}");
325
- b.p("ResourceSetName", () => input.ResourceSetName, "{ResourceSetName}", false);
326
- let body;
327
- b.m("DELETE").h(headers).b(body);
328
- return b.build();
329
- };
330
- const se_GetArchitectureRecommendationsCommand = async (input, context) => {
331
- const b = core.requestBuilder(input, context);
332
- const headers = {};
333
- b.bp("/recoverygroups/{RecoveryGroupName}/architectureRecommendations");
334
- b.p("RecoveryGroupName", () => input.RecoveryGroupName, "{RecoveryGroupName}", false);
335
- const query = smithyClient.map({
336
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
337
- [_nT]: [, input[_NT]],
338
- });
339
- let body;
340
- b.m("GET").h(headers).q(query).b(body);
341
- return b.build();
342
- };
343
- const se_GetCellCommand = async (input, context) => {
344
- const b = core.requestBuilder(input, context);
345
- const headers = {};
346
- b.bp("/cells/{CellName}");
347
- b.p("CellName", () => input.CellName, "{CellName}", false);
348
- let body;
349
- b.m("GET").h(headers).b(body);
350
- return b.build();
351
- };
352
- const se_GetCellReadinessSummaryCommand = async (input, context) => {
353
- const b = core.requestBuilder(input, context);
354
- const headers = {};
355
- b.bp("/cellreadiness/{CellName}");
356
- b.p("CellName", () => input.CellName, "{CellName}", false);
357
- const query = smithyClient.map({
358
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
359
- [_nT]: [, input[_NT]],
360
- });
361
- let body;
362
- b.m("GET").h(headers).q(query).b(body);
363
- return b.build();
364
- };
365
- const se_GetReadinessCheckCommand = async (input, context) => {
366
- const b = core.requestBuilder(input, context);
367
- const headers = {};
368
- b.bp("/readinesschecks/{ReadinessCheckName}");
369
- b.p("ReadinessCheckName", () => input.ReadinessCheckName, "{ReadinessCheckName}", false);
370
- let body;
371
- b.m("GET").h(headers).b(body);
372
- return b.build();
373
- };
374
- const se_GetReadinessCheckResourceStatusCommand = async (input, context) => {
375
- const b = core.requestBuilder(input, context);
376
- const headers = {};
377
- b.bp("/readinesschecks/{ReadinessCheckName}/resource/{ResourceIdentifier}/status");
378
- b.p("ReadinessCheckName", () => input.ReadinessCheckName, "{ReadinessCheckName}", false);
379
- b.p("ResourceIdentifier", () => input.ResourceIdentifier, "{ResourceIdentifier}", false);
380
- const query = smithyClient.map({
381
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
382
- [_nT]: [, input[_NT]],
383
- });
384
- let body;
385
- b.m("GET").h(headers).q(query).b(body);
386
- return b.build();
387
- };
388
- const se_GetReadinessCheckStatusCommand = async (input, context) => {
389
- const b = core.requestBuilder(input, context);
390
- const headers = {};
391
- b.bp("/readinesschecks/{ReadinessCheckName}/status");
392
- b.p("ReadinessCheckName", () => input.ReadinessCheckName, "{ReadinessCheckName}", false);
393
- const query = smithyClient.map({
394
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
395
- [_nT]: [, input[_NT]],
396
- });
397
- let body;
398
- b.m("GET").h(headers).q(query).b(body);
399
- return b.build();
400
- };
401
- const se_GetRecoveryGroupCommand = async (input, context) => {
402
- const b = core.requestBuilder(input, context);
403
- const headers = {};
404
- b.bp("/recoverygroups/{RecoveryGroupName}");
405
- b.p("RecoveryGroupName", () => input.RecoveryGroupName, "{RecoveryGroupName}", false);
406
- let body;
407
- b.m("GET").h(headers).b(body);
408
- return b.build();
409
- };
410
- const se_GetRecoveryGroupReadinessSummaryCommand = async (input, context) => {
411
- const b = core.requestBuilder(input, context);
412
- const headers = {};
413
- b.bp("/recoverygroupreadiness/{RecoveryGroupName}");
414
- b.p("RecoveryGroupName", () => input.RecoveryGroupName, "{RecoveryGroupName}", false);
415
- const query = smithyClient.map({
416
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
417
- [_nT]: [, input[_NT]],
418
- });
419
- let body;
420
- b.m("GET").h(headers).q(query).b(body);
421
- return b.build();
422
- };
423
- const se_GetResourceSetCommand = async (input, context) => {
424
- const b = core.requestBuilder(input, context);
425
- const headers = {};
426
- b.bp("/resourcesets/{ResourceSetName}");
427
- b.p("ResourceSetName", () => input.ResourceSetName, "{ResourceSetName}", false);
428
- let body;
429
- b.m("GET").h(headers).b(body);
430
- return b.build();
431
- };
432
- const se_ListCellsCommand = async (input, context) => {
433
- const b = core.requestBuilder(input, context);
434
- const headers = {};
435
- b.bp("/cells");
436
- const query = smithyClient.map({
437
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
438
- [_nT]: [, input[_NT]],
439
- });
440
- let body;
441
- b.m("GET").h(headers).q(query).b(body);
442
- return b.build();
443
- };
444
- const se_ListCrossAccountAuthorizationsCommand = async (input, context) => {
445
- const b = core.requestBuilder(input, context);
446
- const headers = {};
447
- b.bp("/crossaccountauthorizations");
448
- const query = smithyClient.map({
449
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
450
- [_nT]: [, input[_NT]],
451
- });
452
- let body;
453
- b.m("GET").h(headers).q(query).b(body);
454
- return b.build();
455
- };
456
- const se_ListReadinessChecksCommand = async (input, context) => {
457
- const b = core.requestBuilder(input, context);
458
- const headers = {};
459
- b.bp("/readinesschecks");
460
- const query = smithyClient.map({
461
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
462
- [_nT]: [, input[_NT]],
463
- });
464
- let body;
465
- b.m("GET").h(headers).q(query).b(body);
466
- return b.build();
467
- };
468
- const se_ListRecoveryGroupsCommand = async (input, context) => {
469
- const b = core.requestBuilder(input, context);
470
- const headers = {};
471
- b.bp("/recoverygroups");
472
- const query = smithyClient.map({
473
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
474
- [_nT]: [, input[_NT]],
475
- });
476
- let body;
477
- b.m("GET").h(headers).q(query).b(body);
478
- return b.build();
479
- };
480
- const se_ListResourceSetsCommand = async (input, context) => {
481
- const b = core.requestBuilder(input, context);
482
- const headers = {};
483
- b.bp("/resourcesets");
484
- const query = smithyClient.map({
485
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
486
- [_nT]: [, input[_NT]],
487
- });
488
- let body;
489
- b.m("GET").h(headers).q(query).b(body);
490
- return b.build();
491
- };
492
- const se_ListRulesCommand = async (input, context) => {
493
- const b = core.requestBuilder(input, context);
494
- const headers = {};
495
- b.bp("/rules");
496
- const query = smithyClient.map({
497
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
498
- [_nT]: [, input[_NT]],
499
- [_rT]: [, input[_RT]],
500
- });
501
- let body;
502
- b.m("GET").h(headers).q(query).b(body);
503
- return b.build();
504
- };
505
- const se_ListTagsForResourcesCommand = async (input, context) => {
506
- const b = core.requestBuilder(input, context);
507
- const headers = {};
508
- b.bp("/tags/{ResourceArn}");
509
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
510
- let body;
511
- b.m("GET").h(headers).b(body);
512
- return b.build();
513
- };
514
- const se_TagResourceCommand = async (input, context) => {
515
- const b = core.requestBuilder(input, context);
516
- const headers = {
517
- "content-type": "application/json",
518
- };
519
- b.bp("/tags/{ResourceArn}");
520
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
521
- let body;
522
- body = JSON.stringify(smithyClient.take(input, {
523
- tags: [, (_) => smithyClient._json(_), `Tags`],
524
- }));
525
- b.m("POST").h(headers).b(body);
526
- return b.build();
527
- };
528
- const se_UntagResourceCommand = async (input, context) => {
529
- const b = core.requestBuilder(input, context);
530
- const headers = {};
531
- b.bp("/tags/{ResourceArn}");
532
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
533
- const query = smithyClient.map({
534
- [_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
535
- });
536
- let body;
537
- b.m("DELETE").h(headers).q(query).b(body);
538
- return b.build();
539
- };
540
- const se_UpdateCellCommand = async (input, context) => {
541
- const b = core.requestBuilder(input, context);
542
- const headers = {
543
- "content-type": "application/json",
544
- };
545
- b.bp("/cells/{CellName}");
546
- b.p("CellName", () => input.CellName, "{CellName}", false);
547
- let body;
548
- body = JSON.stringify(smithyClient.take(input, {
549
- cells: [, (_) => smithyClient._json(_), `Cells`],
550
- }));
551
- b.m("PUT").h(headers).b(body);
552
- return b.build();
553
- };
554
- const se_UpdateReadinessCheckCommand = async (input, context) => {
555
- const b = core.requestBuilder(input, context);
556
- const headers = {
557
- "content-type": "application/json",
558
- };
559
- b.bp("/readinesschecks/{ReadinessCheckName}");
560
- b.p("ReadinessCheckName", () => input.ReadinessCheckName, "{ReadinessCheckName}", false);
561
- let body;
562
- body = JSON.stringify(smithyClient.take(input, {
563
- resourceSetName: [, , `ResourceSetName`],
564
- }));
565
- b.m("PUT").h(headers).b(body);
566
- return b.build();
567
- };
568
- const se_UpdateRecoveryGroupCommand = async (input, context) => {
569
- const b = core.requestBuilder(input, context);
570
- const headers = {
571
- "content-type": "application/json",
572
- };
573
- b.bp("/recoverygroups/{RecoveryGroupName}");
574
- b.p("RecoveryGroupName", () => input.RecoveryGroupName, "{RecoveryGroupName}", false);
575
- let body;
576
- body = JSON.stringify(smithyClient.take(input, {
577
- cells: [, (_) => smithyClient._json(_), `Cells`],
578
- }));
579
- b.m("PUT").h(headers).b(body);
580
- return b.build();
581
- };
582
- const se_UpdateResourceSetCommand = async (input, context) => {
583
- const b = core.requestBuilder(input, context);
584
- const headers = {
585
- "content-type": "application/json",
586
- };
587
- b.bp("/resourcesets/{ResourceSetName}");
588
- b.p("ResourceSetName", () => input.ResourceSetName, "{ResourceSetName}", false);
589
- let body;
590
- body = JSON.stringify(smithyClient.take(input, {
591
- resourceSetType: [, , `ResourceSetType`],
592
- resources: [, (_) => se___listOfResource(_), `Resources`],
593
- }));
594
- b.m("PUT").h(headers).b(body);
595
- return b.build();
596
- };
597
- const de_CreateCellCommand = async (output, context) => {
598
- if (output.statusCode !== 200 && output.statusCode >= 300) {
599
- return de_CommandError(output, context);
600
- }
601
- const contents = smithyClient.map({
602
- $metadata: deserializeMetadata(output),
603
- });
604
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
605
- const doc = smithyClient.take(data, {
606
- CellArn: [, smithyClient.expectString, `cellArn`],
607
- CellName: [, smithyClient.expectString, `cellName`],
608
- Cells: [, smithyClient._json, `cells`],
609
- ParentReadinessScopes: [, smithyClient._json, `parentReadinessScopes`],
610
- Tags: [, smithyClient._json, `tags`],
611
- });
612
- Object.assign(contents, doc);
613
- return contents;
614
- };
615
- const de_CreateCrossAccountAuthorizationCommand = async (output, context) => {
616
- if (output.statusCode !== 200 && output.statusCode >= 300) {
617
- return de_CommandError(output, context);
618
- }
619
- const contents = smithyClient.map({
620
- $metadata: deserializeMetadata(output),
621
- });
622
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
623
- const doc = smithyClient.take(data, {
624
- CrossAccountAuthorization: [, smithyClient.expectString, `crossAccountAuthorization`],
625
- });
626
- Object.assign(contents, doc);
627
- return contents;
628
- };
629
- const de_CreateReadinessCheckCommand = async (output, context) => {
630
- if (output.statusCode !== 200 && output.statusCode >= 300) {
631
- return de_CommandError(output, context);
632
- }
633
- const contents = smithyClient.map({
634
- $metadata: deserializeMetadata(output),
635
- });
636
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
637
- const doc = smithyClient.take(data, {
638
- ReadinessCheckArn: [, smithyClient.expectString, `readinessCheckArn`],
639
- ReadinessCheckName: [, smithyClient.expectString, `readinessCheckName`],
640
- ResourceSet: [, smithyClient.expectString, `resourceSet`],
641
- Tags: [, smithyClient._json, `tags`],
642
- });
643
- Object.assign(contents, doc);
644
- return contents;
645
- };
646
- const de_CreateRecoveryGroupCommand = async (output, context) => {
647
- if (output.statusCode !== 200 && output.statusCode >= 300) {
648
- return de_CommandError(output, context);
649
- }
650
- const contents = smithyClient.map({
651
- $metadata: deserializeMetadata(output),
652
- });
653
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
654
- const doc = smithyClient.take(data, {
655
- Cells: [, smithyClient._json, `cells`],
656
- RecoveryGroupArn: [, smithyClient.expectString, `recoveryGroupArn`],
657
- RecoveryGroupName: [, smithyClient.expectString, `recoveryGroupName`],
658
- Tags: [, smithyClient._json, `tags`],
659
- });
660
- Object.assign(contents, doc);
661
- return contents;
662
- };
663
- const de_CreateResourceSetCommand = async (output, context) => {
664
- if (output.statusCode !== 200 && output.statusCode >= 300) {
665
- return de_CommandError(output, context);
666
- }
667
- const contents = smithyClient.map({
668
- $metadata: deserializeMetadata(output),
669
- });
670
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
671
- const doc = smithyClient.take(data, {
672
- ResourceSetArn: [, smithyClient.expectString, `resourceSetArn`],
673
- ResourceSetName: [, smithyClient.expectString, `resourceSetName`],
674
- ResourceSetType: [, smithyClient.expectString, `resourceSetType`],
675
- Resources: [, (_) => de___listOfResource(_), `resources`],
676
- Tags: [, smithyClient._json, `tags`],
677
- });
678
- Object.assign(contents, doc);
679
- return contents;
680
- };
681
- const de_DeleteCellCommand = async (output, context) => {
682
- if (output.statusCode !== 204 && output.statusCode >= 300) {
683
- return de_CommandError(output, context);
684
- }
685
- const contents = smithyClient.map({
686
- $metadata: deserializeMetadata(output),
687
- });
688
- await smithyClient.collectBody(output.body, context);
689
- return contents;
690
- };
691
- const de_DeleteCrossAccountAuthorizationCommand = async (output, context) => {
692
- if (output.statusCode !== 200 && output.statusCode >= 300) {
693
- return de_CommandError(output, context);
694
- }
695
- const contents = smithyClient.map({
696
- $metadata: deserializeMetadata(output),
697
- });
698
- await smithyClient.collectBody(output.body, context);
699
- return contents;
700
- };
701
- const de_DeleteReadinessCheckCommand = async (output, context) => {
702
- if (output.statusCode !== 204 && output.statusCode >= 300) {
703
- return de_CommandError(output, context);
704
- }
705
- const contents = smithyClient.map({
706
- $metadata: deserializeMetadata(output),
707
- });
708
- await smithyClient.collectBody(output.body, context);
709
- return contents;
710
- };
711
- const de_DeleteRecoveryGroupCommand = async (output, context) => {
712
- if (output.statusCode !== 204 && output.statusCode >= 300) {
713
- return de_CommandError(output, context);
714
- }
715
- const contents = smithyClient.map({
716
- $metadata: deserializeMetadata(output),
717
- });
718
- await smithyClient.collectBody(output.body, context);
719
- return contents;
720
- };
721
- const de_DeleteResourceSetCommand = async (output, context) => {
722
- if (output.statusCode !== 204 && output.statusCode >= 300) {
723
- return de_CommandError(output, context);
724
- }
725
- const contents = smithyClient.map({
726
- $metadata: deserializeMetadata(output),
727
- });
728
- await smithyClient.collectBody(output.body, context);
729
- return contents;
730
- };
731
- const de_GetArchitectureRecommendationsCommand = async (output, context) => {
732
- if (output.statusCode !== 200 && output.statusCode >= 300) {
733
- return de_CommandError(output, context);
734
- }
735
- const contents = smithyClient.map({
736
- $metadata: deserializeMetadata(output),
737
- });
738
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
739
- const doc = smithyClient.take(data, {
740
- LastAuditTimestamp: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `lastAuditTimestamp`],
741
- NextToken: [, smithyClient.expectString, `nextToken`],
742
- Recommendations: [, (_) => de___listOfRecommendation(_), `recommendations`],
743
- });
744
- Object.assign(contents, doc);
745
- return contents;
746
- };
747
- const de_GetCellCommand = async (output, context) => {
748
- if (output.statusCode !== 200 && output.statusCode >= 300) {
749
- return de_CommandError(output, context);
750
- }
751
- const contents = smithyClient.map({
752
- $metadata: deserializeMetadata(output),
753
- });
754
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
755
- const doc = smithyClient.take(data, {
756
- CellArn: [, smithyClient.expectString, `cellArn`],
757
- CellName: [, smithyClient.expectString, `cellName`],
758
- Cells: [, smithyClient._json, `cells`],
759
- ParentReadinessScopes: [, smithyClient._json, `parentReadinessScopes`],
760
- Tags: [, smithyClient._json, `tags`],
761
- });
762
- Object.assign(contents, doc);
763
- return contents;
764
- };
765
- const de_GetCellReadinessSummaryCommand = async (output, context) => {
766
- if (output.statusCode !== 200 && output.statusCode >= 300) {
767
- return de_CommandError(output, context);
768
- }
769
- const contents = smithyClient.map({
770
- $metadata: deserializeMetadata(output),
771
- });
772
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
773
- const doc = smithyClient.take(data, {
774
- NextToken: [, smithyClient.expectString, `nextToken`],
775
- Readiness: [, smithyClient.expectString, `readiness`],
776
- ReadinessChecks: [, (_) => de___listOfReadinessCheckSummary(_), `readinessChecks`],
777
- });
778
- Object.assign(contents, doc);
779
- return contents;
780
- };
781
- const de_GetReadinessCheckCommand = async (output, context) => {
782
- if (output.statusCode !== 200 && output.statusCode >= 300) {
783
- return de_CommandError(output, context);
784
- }
785
- const contents = smithyClient.map({
786
- $metadata: deserializeMetadata(output),
787
- });
788
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
789
- const doc = smithyClient.take(data, {
790
- ReadinessCheckArn: [, smithyClient.expectString, `readinessCheckArn`],
791
- ReadinessCheckName: [, smithyClient.expectString, `readinessCheckName`],
792
- ResourceSet: [, smithyClient.expectString, `resourceSet`],
793
- Tags: [, smithyClient._json, `tags`],
794
- });
795
- Object.assign(contents, doc);
796
- return contents;
797
- };
798
- const de_GetReadinessCheckResourceStatusCommand = async (output, context) => {
799
- if (output.statusCode !== 200 && output.statusCode >= 300) {
800
- return de_CommandError(output, context);
801
- }
802
- const contents = smithyClient.map({
803
- $metadata: deserializeMetadata(output),
804
- });
805
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
806
- const doc = smithyClient.take(data, {
807
- NextToken: [, smithyClient.expectString, `nextToken`],
808
- Readiness: [, smithyClient.expectString, `readiness`],
809
- Rules: [, (_) => de___listOfRuleResult(_), `rules`],
810
- });
811
- Object.assign(contents, doc);
812
- return contents;
813
- };
814
- const de_GetReadinessCheckStatusCommand = async (output, context) => {
815
- if (output.statusCode !== 200 && output.statusCode >= 300) {
816
- return de_CommandError(output, context);
817
- }
818
- const contents = smithyClient.map({
819
- $metadata: deserializeMetadata(output),
820
- });
821
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
822
- const doc = smithyClient.take(data, {
823
- Messages: [, (_) => de___listOfMessage(_), `messages`],
824
- NextToken: [, smithyClient.expectString, `nextToken`],
825
- Readiness: [, smithyClient.expectString, `readiness`],
826
- Resources: [, (_) => de___listOfResourceResult(_), `resources`],
827
- });
828
- Object.assign(contents, doc);
829
- return contents;
830
- };
831
- const de_GetRecoveryGroupCommand = async (output, context) => {
832
- if (output.statusCode !== 200 && output.statusCode >= 300) {
833
- return de_CommandError(output, context);
834
- }
835
- const contents = smithyClient.map({
836
- $metadata: deserializeMetadata(output),
837
- });
838
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
839
- const doc = smithyClient.take(data, {
840
- Cells: [, smithyClient._json, `cells`],
841
- RecoveryGroupArn: [, smithyClient.expectString, `recoveryGroupArn`],
842
- RecoveryGroupName: [, smithyClient.expectString, `recoveryGroupName`],
843
- Tags: [, smithyClient._json, `tags`],
844
- });
845
- Object.assign(contents, doc);
846
- return contents;
847
- };
848
- const de_GetRecoveryGroupReadinessSummaryCommand = async (output, context) => {
849
- if (output.statusCode !== 200 && output.statusCode >= 300) {
850
- return de_CommandError(output, context);
851
- }
852
- const contents = smithyClient.map({
853
- $metadata: deserializeMetadata(output),
854
- });
855
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
856
- const doc = smithyClient.take(data, {
857
- NextToken: [, smithyClient.expectString, `nextToken`],
858
- Readiness: [, smithyClient.expectString, `readiness`],
859
- ReadinessChecks: [, (_) => de___listOfReadinessCheckSummary(_), `readinessChecks`],
860
- });
861
- Object.assign(contents, doc);
862
- return contents;
863
- };
864
- const de_GetResourceSetCommand = async (output, context) => {
865
- if (output.statusCode !== 200 && output.statusCode >= 300) {
866
- return de_CommandError(output, context);
867
- }
868
- const contents = smithyClient.map({
869
- $metadata: deserializeMetadata(output),
870
- });
871
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
872
- const doc = smithyClient.take(data, {
873
- ResourceSetArn: [, smithyClient.expectString, `resourceSetArn`],
874
- ResourceSetName: [, smithyClient.expectString, `resourceSetName`],
875
- ResourceSetType: [, smithyClient.expectString, `resourceSetType`],
876
- Resources: [, (_) => de___listOfResource(_), `resources`],
877
- Tags: [, smithyClient._json, `tags`],
878
- });
879
- Object.assign(contents, doc);
880
- return contents;
881
209
  };
882
- const de_ListCellsCommand = async (output, context) => {
883
- if (output.statusCode !== 200 && output.statusCode >= 300) {
884
- return de_CommandError(output, context);
885
- }
886
- const contents = smithyClient.map({
887
- $metadata: deserializeMetadata(output),
888
- });
889
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
890
- const doc = smithyClient.take(data, {
891
- Cells: [, (_) => de___listOfCellOutput(_), `cells`],
892
- NextToken: [, smithyClient.expectString, `nextToken`],
893
- });
894
- Object.assign(contents, doc);
895
- return contents;
896
- };
897
- const de_ListCrossAccountAuthorizationsCommand = async (output, context) => {
898
- if (output.statusCode !== 200 && output.statusCode >= 300) {
899
- return de_CommandError(output, context);
900
- }
901
- const contents = smithyClient.map({
902
- $metadata: deserializeMetadata(output),
903
- });
904
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
905
- const doc = smithyClient.take(data, {
906
- CrossAccountAuthorizations: [, smithyClient._json, `crossAccountAuthorizations`],
907
- NextToken: [, smithyClient.expectString, `nextToken`],
908
- });
909
- Object.assign(contents, doc);
910
- return contents;
911
- };
912
- const de_ListReadinessChecksCommand = async (output, context) => {
913
- if (output.statusCode !== 200 && output.statusCode >= 300) {
914
- return de_CommandError(output, context);
915
- }
916
- const contents = smithyClient.map({
917
- $metadata: deserializeMetadata(output),
918
- });
919
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
920
- const doc = smithyClient.take(data, {
921
- NextToken: [, smithyClient.expectString, `nextToken`],
922
- ReadinessChecks: [, (_) => de___listOfReadinessCheckOutput(_), `readinessChecks`],
923
- });
924
- Object.assign(contents, doc);
925
- return contents;
926
- };
927
- const de_ListRecoveryGroupsCommand = async (output, context) => {
928
- if (output.statusCode !== 200 && output.statusCode >= 300) {
929
- return de_CommandError(output, context);
930
- }
931
- const contents = smithyClient.map({
932
- $metadata: deserializeMetadata(output),
933
- });
934
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
935
- const doc = smithyClient.take(data, {
936
- NextToken: [, smithyClient.expectString, `nextToken`],
937
- RecoveryGroups: [, (_) => de___listOfRecoveryGroupOutput(_), `recoveryGroups`],
938
- });
939
- Object.assign(contents, doc);
940
- return contents;
941
- };
942
- const de_ListResourceSetsCommand = async (output, context) => {
943
- if (output.statusCode !== 200 && output.statusCode >= 300) {
944
- return de_CommandError(output, context);
945
- }
946
- const contents = smithyClient.map({
947
- $metadata: deserializeMetadata(output),
948
- });
949
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
950
- const doc = smithyClient.take(data, {
951
- NextToken: [, smithyClient.expectString, `nextToken`],
952
- ResourceSets: [, (_) => de___listOfResourceSetOutput(_), `resourceSets`],
953
- });
954
- Object.assign(contents, doc);
955
- return contents;
956
- };
957
- const de_ListRulesCommand = async (output, context) => {
958
- if (output.statusCode !== 200 && output.statusCode >= 300) {
959
- return de_CommandError(output, context);
960
- }
961
- const contents = smithyClient.map({
962
- $metadata: deserializeMetadata(output),
963
- });
964
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
965
- const doc = smithyClient.take(data, {
966
- NextToken: [, smithyClient.expectString, `nextToken`],
967
- Rules: [, (_) => de___listOfListRulesOutput(_), `rules`],
968
- });
969
- Object.assign(contents, doc);
970
- return contents;
971
- };
972
- const de_ListTagsForResourcesCommand = async (output, context) => {
973
- if (output.statusCode !== 200 && output.statusCode >= 300) {
974
- return de_CommandError(output, context);
975
- }
976
- const contents = smithyClient.map({
977
- $metadata: deserializeMetadata(output),
978
- });
979
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
980
- const doc = smithyClient.take(data, {
981
- Tags: [, smithyClient._json, `tags`],
982
- });
983
- Object.assign(contents, doc);
984
- return contents;
985
- };
986
- const de_TagResourceCommand = async (output, context) => {
987
- if (output.statusCode !== 200 && output.statusCode >= 300) {
988
- return de_CommandError(output, context);
989
- }
990
- const contents = smithyClient.map({
991
- $metadata: deserializeMetadata(output),
992
- });
993
- await smithyClient.collectBody(output.body, context);
994
- return contents;
995
- };
996
- const de_UntagResourceCommand = async (output, context) => {
997
- if (output.statusCode !== 204 && output.statusCode >= 300) {
998
- return de_CommandError(output, context);
999
- }
1000
- const contents = smithyClient.map({
1001
- $metadata: deserializeMetadata(output),
1002
- });
1003
- await smithyClient.collectBody(output.body, context);
1004
- return contents;
1005
- };
1006
- const de_UpdateCellCommand = async (output, context) => {
1007
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1008
- return de_CommandError(output, context);
1009
- }
1010
- const contents = smithyClient.map({
1011
- $metadata: deserializeMetadata(output),
1012
- });
1013
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1014
- const doc = smithyClient.take(data, {
1015
- CellArn: [, smithyClient.expectString, `cellArn`],
1016
- CellName: [, smithyClient.expectString, `cellName`],
1017
- Cells: [, smithyClient._json, `cells`],
1018
- ParentReadinessScopes: [, smithyClient._json, `parentReadinessScopes`],
1019
- Tags: [, smithyClient._json, `tags`],
1020
- });
1021
- Object.assign(contents, doc);
1022
- return contents;
1023
- };
1024
- const de_UpdateReadinessCheckCommand = async (output, context) => {
1025
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1026
- return de_CommandError(output, context);
1027
- }
1028
- const contents = smithyClient.map({
1029
- $metadata: deserializeMetadata(output),
1030
- });
1031
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1032
- const doc = smithyClient.take(data, {
1033
- ReadinessCheckArn: [, smithyClient.expectString, `readinessCheckArn`],
1034
- ReadinessCheckName: [, smithyClient.expectString, `readinessCheckName`],
1035
- ResourceSet: [, smithyClient.expectString, `resourceSet`],
1036
- Tags: [, smithyClient._json, `tags`],
1037
- });
1038
- Object.assign(contents, doc);
1039
- return contents;
1040
- };
1041
- const de_UpdateRecoveryGroupCommand = async (output, context) => {
1042
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1043
- return de_CommandError(output, context);
1044
- }
1045
- const contents = smithyClient.map({
1046
- $metadata: deserializeMetadata(output),
1047
- });
1048
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1049
- const doc = smithyClient.take(data, {
1050
- Cells: [, smithyClient._json, `cells`],
1051
- RecoveryGroupArn: [, smithyClient.expectString, `recoveryGroupArn`],
1052
- RecoveryGroupName: [, smithyClient.expectString, `recoveryGroupName`],
1053
- Tags: [, smithyClient._json, `tags`],
1054
- });
1055
- Object.assign(contents, doc);
1056
- return contents;
1057
- };
1058
- const de_UpdateResourceSetCommand = async (output, context) => {
1059
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1060
- return de_CommandError(output, context);
1061
- }
1062
- const contents = smithyClient.map({
1063
- $metadata: deserializeMetadata(output),
1064
- });
1065
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1066
- const doc = smithyClient.take(data, {
1067
- ResourceSetArn: [, smithyClient.expectString, `resourceSetArn`],
1068
- ResourceSetName: [, smithyClient.expectString, `resourceSetName`],
1069
- ResourceSetType: [, smithyClient.expectString, `resourceSetType`],
1070
- Resources: [, (_) => de___listOfResource(_), `resources`],
1071
- Tags: [, smithyClient._json, `tags`],
1072
- });
1073
- Object.assign(contents, doc);
1074
- return contents;
1075
- };
1076
- const de_CommandError = async (output, context) => {
1077
- const parsedOutput = {
1078
- ...output,
1079
- body: await core$1.parseJsonErrorBody(output.body, context),
1080
- };
1081
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1082
- switch (errorCode) {
1083
- case "AccessDeniedException":
1084
- case "com.amazonaws.route53recoveryreadiness#AccessDeniedException":
1085
- throw await de_AccessDeniedExceptionRes(parsedOutput);
1086
- case "ConflictException":
1087
- case "com.amazonaws.route53recoveryreadiness#ConflictException":
1088
- throw await de_ConflictExceptionRes(parsedOutput);
1089
- case "InternalServerException":
1090
- case "com.amazonaws.route53recoveryreadiness#InternalServerException":
1091
- throw await de_InternalServerExceptionRes(parsedOutput);
1092
- case "ThrottlingException":
1093
- case "com.amazonaws.route53recoveryreadiness#ThrottlingException":
1094
- throw await de_ThrottlingExceptionRes(parsedOutput);
1095
- case "ValidationException":
1096
- case "com.amazonaws.route53recoveryreadiness#ValidationException":
1097
- throw await de_ValidationExceptionRes(parsedOutput);
1098
- case "ResourceNotFoundException":
1099
- case "com.amazonaws.route53recoveryreadiness#ResourceNotFoundException":
1100
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1101
- default:
1102
- const parsedBody = parsedOutput.body;
1103
- return throwDefaultError({
1104
- output,
1105
- parsedBody,
1106
- errorCode,
1107
- });
1108
- }
1109
- };
1110
- const throwDefaultError = smithyClient.withBaseException(Route53RecoveryReadinessServiceException);
1111
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1112
- const contents = smithyClient.map({});
1113
- const data = parsedOutput.body;
1114
- const doc = smithyClient.take(data, {
1115
- Message: [, smithyClient.expectString, `message`],
1116
- });
1117
- Object.assign(contents, doc);
1118
- const exception = new AccessDeniedException({
1119
- $metadata: deserializeMetadata(parsedOutput),
1120
- ...contents,
1121
- });
1122
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1123
- };
1124
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1125
- const contents = smithyClient.map({});
1126
- const data = parsedOutput.body;
1127
- const doc = smithyClient.take(data, {
1128
- Message: [, smithyClient.expectString, `message`],
1129
- });
1130
- Object.assign(contents, doc);
1131
- const exception = new ConflictException({
1132
- $metadata: deserializeMetadata(parsedOutput),
1133
- ...contents,
1134
- });
1135
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1136
- };
1137
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
1138
- const contents = smithyClient.map({});
1139
- const data = parsedOutput.body;
1140
- const doc = smithyClient.take(data, {
1141
- Message: [, smithyClient.expectString, `message`],
1142
- });
1143
- Object.assign(contents, doc);
1144
- const exception = new InternalServerException({
1145
- $metadata: deserializeMetadata(parsedOutput),
1146
- ...contents,
1147
- });
1148
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1149
- };
1150
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1151
- const contents = smithyClient.map({});
1152
- const data = parsedOutput.body;
1153
- const doc = smithyClient.take(data, {
1154
- Message: [, smithyClient.expectString, `message`],
1155
- });
1156
- Object.assign(contents, doc);
1157
- const exception = new ResourceNotFoundException({
1158
- $metadata: deserializeMetadata(parsedOutput),
1159
- ...contents,
1160
- });
1161
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1162
- };
1163
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1164
- const contents = smithyClient.map({});
1165
- const data = parsedOutput.body;
1166
- const doc = smithyClient.take(data, {
1167
- Message: [, smithyClient.expectString, `message`],
1168
- });
1169
- Object.assign(contents, doc);
1170
- const exception = new ThrottlingException({
1171
- $metadata: deserializeMetadata(parsedOutput),
1172
- ...contents,
1173
- });
1174
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1175
- };
1176
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1177
- const contents = smithyClient.map({});
1178
- const data = parsedOutput.body;
1179
- const doc = smithyClient.take(data, {
1180
- Message: [, smithyClient.expectString, `message`],
1181
- });
1182
- Object.assign(contents, doc);
1183
- const exception = new ValidationException({
1184
- $metadata: deserializeMetadata(parsedOutput),
1185
- ...contents,
1186
- });
1187
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1188
- };
1189
- const se___listOfResource = (input, context) => {
1190
- return input
1191
- .filter((e) => e != null)
1192
- .map((entry) => {
1193
- return se_Resource(entry);
1194
- });
1195
- };
1196
- const se_DNSTargetResource = (input, context) => {
1197
- return smithyClient.take(input, {
1198
- domainName: [, , `DomainName`],
1199
- hostedZoneArn: [, , `HostedZoneArn`],
1200
- recordSetId: [, , `RecordSetId`],
1201
- recordType: [, , `RecordType`],
1202
- targetResource: [, (_) => se_TargetResource(_), `TargetResource`],
1203
- });
1204
- };
1205
- const se_NLBResource = (input, context) => {
1206
- return smithyClient.take(input, {
1207
- arn: [, , `Arn`],
1208
- });
1209
- };
1210
- const se_R53ResourceRecord = (input, context) => {
1211
- return smithyClient.take(input, {
1212
- domainName: [, , `DomainName`],
1213
- recordSetId: [, , `RecordSetId`],
1214
- });
1215
- };
1216
- const se_Resource = (input, context) => {
1217
- return smithyClient.take(input, {
1218
- componentId: [, , `ComponentId`],
1219
- dnsTargetResource: [, (_) => se_DNSTargetResource(_), `DnsTargetResource`],
1220
- readinessScopes: [, smithyClient._json, `ReadinessScopes`],
1221
- resourceArn: [, , `ResourceArn`],
1222
- });
1223
- };
1224
- const se_TargetResource = (input, context) => {
1225
- return smithyClient.take(input, {
1226
- nLBResource: [, (_) => se_NLBResource(_), `NLBResource`],
1227
- r53Resource: [, (_) => se_R53ResourceRecord(_), `R53Resource`],
1228
- });
1229
- };
1230
- const de___listOfCellOutput = (output, context) => {
1231
- const retVal = (output || [])
1232
- .filter((e) => e != null)
1233
- .map((entry) => {
1234
- return de_CellOutput(entry);
1235
- });
1236
- return retVal;
1237
- };
1238
- const de___listOfListRulesOutput = (output, context) => {
1239
- const retVal = (output || [])
1240
- .filter((e) => e != null)
1241
- .map((entry) => {
1242
- return de_ListRulesOutput(entry);
1243
- });
1244
- return retVal;
1245
- };
1246
- const de___listOfMessage = (output, context) => {
1247
- const retVal = (output || [])
1248
- .filter((e) => e != null)
1249
- .map((entry) => {
1250
- return de_Message(entry);
1251
- });
1252
- return retVal;
1253
- };
1254
- const de___listOfReadinessCheckOutput = (output, context) => {
1255
- const retVal = (output || [])
1256
- .filter((e) => e != null)
1257
- .map((entry) => {
1258
- return de_ReadinessCheckOutput(entry);
1259
- });
1260
- return retVal;
1261
- };
1262
- const de___listOfReadinessCheckSummary = (output, context) => {
1263
- const retVal = (output || [])
1264
- .filter((e) => e != null)
1265
- .map((entry) => {
1266
- return de_ReadinessCheckSummary(entry);
1267
- });
1268
- return retVal;
1269
- };
1270
- const de___listOfRecommendation = (output, context) => {
1271
- const retVal = (output || [])
1272
- .filter((e) => e != null)
1273
- .map((entry) => {
1274
- return de_Recommendation(entry);
1275
- });
1276
- return retVal;
1277
- };
1278
- const de___listOfRecoveryGroupOutput = (output, context) => {
1279
- const retVal = (output || [])
1280
- .filter((e) => e != null)
1281
- .map((entry) => {
1282
- return de_RecoveryGroupOutput(entry);
1283
- });
1284
- return retVal;
1285
- };
1286
- const de___listOfResource = (output, context) => {
1287
- const retVal = (output || [])
1288
- .filter((e) => e != null)
1289
- .map((entry) => {
1290
- return de_Resource(entry);
1291
- });
1292
- return retVal;
1293
- };
1294
- const de___listOfResourceResult = (output, context) => {
1295
- const retVal = (output || [])
1296
- .filter((e) => e != null)
1297
- .map((entry) => {
1298
- return de_ResourceResult(entry);
1299
- });
1300
- return retVal;
1301
- };
1302
- const de___listOfResourceSetOutput = (output, context) => {
1303
- const retVal = (output || [])
1304
- .filter((e) => e != null)
1305
- .map((entry) => {
1306
- return de_ResourceSetOutput(entry);
1307
- });
1308
- return retVal;
1309
- };
1310
- const de___listOfRuleResult = (output, context) => {
1311
- const retVal = (output || [])
1312
- .filter((e) => e != null)
1313
- .map((entry) => {
1314
- return de_RuleResult(entry);
1315
- });
1316
- return retVal;
1317
- };
1318
- const de_CellOutput = (output, context) => {
1319
- return smithyClient.take(output, {
1320
- CellArn: [, smithyClient.expectString, `cellArn`],
1321
- CellName: [, smithyClient.expectString, `cellName`],
1322
- Cells: [, smithyClient._json, `cells`],
1323
- ParentReadinessScopes: [, smithyClient._json, `parentReadinessScopes`],
1324
- Tags: [, smithyClient._json, `tags`],
1325
- });
1326
- };
1327
- const de_DNSTargetResource = (output, context) => {
1328
- return smithyClient.take(output, {
1329
- DomainName: [, smithyClient.expectString, `domainName`],
1330
- HostedZoneArn: [, smithyClient.expectString, `hostedZoneArn`],
1331
- RecordSetId: [, smithyClient.expectString, `recordSetId`],
1332
- RecordType: [, smithyClient.expectString, `recordType`],
1333
- TargetResource: [, (_) => de_TargetResource(_), `targetResource`],
1334
- });
1335
- };
1336
- const de_ListRulesOutput = (output, context) => {
1337
- return smithyClient.take(output, {
1338
- ResourceType: [, smithyClient.expectString, `resourceType`],
1339
- RuleDescription: [, smithyClient.expectString, `ruleDescription`],
1340
- RuleId: [, smithyClient.expectString, `ruleId`],
1341
- });
1342
- };
1343
- const de_Message = (output, context) => {
1344
- return smithyClient.take(output, {
1345
- MessageText: [, smithyClient.expectString, `messageText`],
1346
- });
1347
- };
1348
- const de_NLBResource = (output, context) => {
1349
- return smithyClient.take(output, {
1350
- Arn: [, smithyClient.expectString, `arn`],
1351
- });
1352
- };
1353
- const de_R53ResourceRecord = (output, context) => {
1354
- return smithyClient.take(output, {
1355
- DomainName: [, smithyClient.expectString, `domainName`],
1356
- RecordSetId: [, smithyClient.expectString, `recordSetId`],
1357
- });
1358
- };
1359
- const de_ReadinessCheckOutput = (output, context) => {
1360
- return smithyClient.take(output, {
1361
- ReadinessCheckArn: [, smithyClient.expectString, `readinessCheckArn`],
1362
- ReadinessCheckName: [, smithyClient.expectString, `readinessCheckName`],
1363
- ResourceSet: [, smithyClient.expectString, `resourceSet`],
1364
- Tags: [, smithyClient._json, `tags`],
1365
- });
1366
- };
1367
- const de_ReadinessCheckSummary = (output, context) => {
1368
- return smithyClient.take(output, {
1369
- Readiness: [, smithyClient.expectString, `readiness`],
1370
- ReadinessCheckName: [, smithyClient.expectString, `readinessCheckName`],
1371
- });
1372
- };
1373
- const de_Recommendation = (output, context) => {
1374
- return smithyClient.take(output, {
1375
- RecommendationText: [, smithyClient.expectString, `recommendationText`],
1376
- });
1377
- };
1378
- const de_RecoveryGroupOutput = (output, context) => {
1379
- return smithyClient.take(output, {
1380
- Cells: [, smithyClient._json, `cells`],
1381
- RecoveryGroupArn: [, smithyClient.expectString, `recoveryGroupArn`],
1382
- RecoveryGroupName: [, smithyClient.expectString, `recoveryGroupName`],
1383
- Tags: [, smithyClient._json, `tags`],
1384
- });
1385
- };
1386
- const de_Resource = (output, context) => {
1387
- return smithyClient.take(output, {
1388
- ComponentId: [, smithyClient.expectString, `componentId`],
1389
- DnsTargetResource: [, (_) => de_DNSTargetResource(_), `dnsTargetResource`],
1390
- ReadinessScopes: [, smithyClient._json, `readinessScopes`],
1391
- ResourceArn: [, smithyClient.expectString, `resourceArn`],
1392
- });
1393
- };
1394
- const de_ResourceResult = (output, context) => {
1395
- return smithyClient.take(output, {
1396
- ComponentId: [, smithyClient.expectString, `componentId`],
1397
- LastCheckedTimestamp: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `lastCheckedTimestamp`],
1398
- Readiness: [, smithyClient.expectString, `readiness`],
1399
- ResourceArn: [, smithyClient.expectString, `resourceArn`],
1400
- });
1401
- };
1402
- const de_ResourceSetOutput = (output, context) => {
1403
- return smithyClient.take(output, {
1404
- ResourceSetArn: [, smithyClient.expectString, `resourceSetArn`],
1405
- ResourceSetName: [, smithyClient.expectString, `resourceSetName`],
1406
- ResourceSetType: [, smithyClient.expectString, `resourceSetType`],
1407
- Resources: [, (_) => de___listOfResource(_), `resources`],
1408
- Tags: [, smithyClient._json, `tags`],
1409
- });
1410
- };
1411
- const de_RuleResult = (output, context) => {
1412
- return smithyClient.take(output, {
1413
- LastCheckedTimestamp: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `lastCheckedTimestamp`],
1414
- Messages: [, (_) => de___listOfMessage(_), `messages`],
1415
- Readiness: [, smithyClient.expectString, `readiness`],
1416
- RuleId: [, smithyClient.expectString, `ruleId`],
1417
- });
1418
- };
1419
- const de_TargetResource = (output, context) => {
1420
- return smithyClient.take(output, {
1421
- NLBResource: [, (_) => de_NLBResource(_), `nLBResource`],
1422
- R53Resource: [, (_) => de_R53ResourceRecord(_), `r53Resource`],
1423
- });
1424
- };
1425
- const deserializeMetadata = (output) => ({
1426
- httpStatusCode: output.statusCode,
1427
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1428
- extendedRequestId: output.headers["x-amz-id-2"],
1429
- cfId: output.headers["x-amz-cf-id"],
1430
- });
210
+
211
+ const _A = "Arn";
212
+ const _ADE = "AccessDeniedException";
213
+ const _C = "Cells";
214
+ const _CA = "CellArn";
215
+ const _CAA = "CrossAccountAuthorization";
216
+ const _CAAr = "CrossAccountAuthorizations";
217
+ const _CC = "CreateCell";
218
+ const _CCAA = "CreateCrossAccountAuthorization";
219
+ const _CCAAR = "CreateCrossAccountAuthorizationRequest";
220
+ const _CCAARr = "CreateCrossAccountAuthorizationResponse";
221
+ const _CCR = "CreateCellRequest";
222
+ const _CCRr = "CreateCellResponse";
223
+ const _CE = "ConflictException";
224
+ const _CI = "ComponentId";
225
+ const _CN = "CellName";
226
+ const _CO = "CellOutput";
227
+ const _CRC = "CreateReadinessCheck";
228
+ const _CRCR = "CreateReadinessCheckRequest";
229
+ const _CRCRr = "CreateReadinessCheckResponse";
230
+ const _CRG = "CreateRecoveryGroup";
231
+ const _CRGR = "CreateRecoveryGroupRequest";
232
+ const _CRGRr = "CreateRecoveryGroupResponse";
233
+ const _CRS = "CreateResourceSet";
234
+ const _CRSR = "CreateResourceSetRequest";
235
+ const _CRSRr = "CreateResourceSetResponse";
236
+ const _DC = "DeleteCell";
237
+ const _DCAA = "DeleteCrossAccountAuthorization";
238
+ const _DCAAR = "DeleteCrossAccountAuthorizationRequest";
239
+ const _DCAARe = "DeleteCrossAccountAuthorizationResponse";
240
+ const _DCR = "DeleteCellRequest";
241
+ const _DN = "DomainName";
242
+ const _DNSTR = "DNSTargetResource";
243
+ const _DRC = "DeleteReadinessCheck";
244
+ const _DRCR = "DeleteReadinessCheckRequest";
245
+ const _DRG = "DeleteRecoveryGroup";
246
+ const _DRGR = "DeleteRecoveryGroupRequest";
247
+ const _DRS = "DeleteResourceSet";
248
+ const _DRSR = "DeleteResourceSetRequest";
249
+ const _DTR = "DnsTargetResource";
250
+ const _GAR = "GetArchitectureRecommendations";
251
+ const _GARR = "GetArchitectureRecommendationsRequest";
252
+ const _GARRe = "GetArchitectureRecommendationsResponse";
253
+ const _GC = "GetCell";
254
+ const _GCR = "GetCellRequest";
255
+ const _GCRS = "GetCellReadinessSummary";
256
+ const _GCRSR = "GetCellReadinessSummaryRequest";
257
+ const _GCRSRe = "GetCellReadinessSummaryResponse";
258
+ const _GCRe = "GetCellResponse";
259
+ const _GRC = "GetReadinessCheck";
260
+ const _GRCR = "GetReadinessCheckRequest";
261
+ const _GRCRS = "GetReadinessCheckResourceStatus";
262
+ const _GRCRSR = "GetReadinessCheckResourceStatusRequest";
263
+ const _GRCRSRe = "GetReadinessCheckResourceStatusResponse";
264
+ const _GRCRe = "GetReadinessCheckResponse";
265
+ const _GRCS = "GetReadinessCheckStatus";
266
+ const _GRCSR = "GetReadinessCheckStatusRequest";
267
+ const _GRCSRe = "GetReadinessCheckStatusResponse";
268
+ const _GRG = "GetRecoveryGroup";
269
+ const _GRGR = "GetRecoveryGroupRequest";
270
+ const _GRGRS = "GetRecoveryGroupReadinessSummary";
271
+ const _GRGRSR = "GetRecoveryGroupReadinessSummaryRequest";
272
+ const _GRGRSRe = "GetRecoveryGroupReadinessSummaryResponse";
273
+ const _GRGRe = "GetRecoveryGroupResponse";
274
+ const _GRS = "GetResourceSet";
275
+ const _GRSR = "GetResourceSetRequest";
276
+ const _GRSRe = "GetResourceSetResponse";
277
+ const _HZA = "HostedZoneArn";
278
+ const _ISE = "InternalServerException";
279
+ const _LAT = "LastAuditTimestamp";
280
+ const _LC = "ListCells";
281
+ const _LCAA = "ListCrossAccountAuthorizations";
282
+ const _LCAAR = "ListCrossAccountAuthorizationsRequest";
283
+ const _LCAARi = "ListCrossAccountAuthorizationsResponse";
284
+ const _LCR = "ListCellsRequest";
285
+ const _LCRi = "ListCellsResponse";
286
+ const _LCT = "LastCheckedTimestamp";
287
+ const _LR = "ListRules";
288
+ const _LRC = "ListReadinessChecks";
289
+ const _LRCR = "ListReadinessChecksRequest";
290
+ const _LRCRi = "ListReadinessChecksResponse";
291
+ const _LRG = "ListRecoveryGroups";
292
+ const _LRGR = "ListRecoveryGroupsRequest";
293
+ const _LRGRi = "ListRecoveryGroupsResponse";
294
+ const _LRO = "ListRulesOutput";
295
+ const _LRR = "ListRulesRequest";
296
+ const _LRRi = "ListRulesResponse";
297
+ const _LRS = "ListResourceSets";
298
+ const _LRSR = "ListResourceSetsRequest";
299
+ const _LRSRi = "ListResourceSetsResponse";
300
+ const _LTFR = "ListTagsForResources";
301
+ const _LTFRR = "ListTagsForResourcesRequest";
302
+ const _LTFRRi = "ListTagsForResourcesResponse";
303
+ const _M = "Message";
1431
304
  const _MR = "MaxResults";
305
+ const _MT = "MessageText";
306
+ const _Me = "Messages";
307
+ const _NLBR = "NLBResource";
1432
308
  const _NT = "NextToken";
1433
- const _RT = "ResourceType";
309
+ const _PRS = "ParentReadinessScopes";
310
+ const _R = "Resources";
311
+ const _RA = "ResourceArn";
312
+ const _RC = "ReadinessChecks";
313
+ const _RCA = "ReadinessCheckArn";
314
+ const _RCN = "ReadinessCheckName";
315
+ const _RCO = "ReadinessCheckOutput";
316
+ const _RCS = "ReadinessCheckSummary";
317
+ const _RD = "RuleDescription";
318
+ const _RG = "RecoveryGroups";
319
+ const _RGA = "RecoveryGroupArn";
320
+ const _RGN = "RecoveryGroupName";
321
+ const _RGO = "RecoveryGroupOutput";
322
+ const _RI = "ResourceIdentifier";
323
+ const _RIu = "RuleId";
324
+ const _RNFE = "ResourceNotFoundException";
325
+ const _RR = "ResourceResult";
326
+ const _RRR = "R53ResourceRecord";
327
+ const _RRe = "R53Resource";
328
+ const _RRu = "RuleResult";
329
+ const _RS = "ResourceSet";
330
+ const _RSA = "ResourceSetArn";
331
+ const _RSI = "RecordSetId";
332
+ const _RSN = "ResourceSetName";
333
+ const _RSO = "ResourceSetOutput";
334
+ const _RST = "ResourceSetType";
335
+ const _RSe = "ResourceSets";
336
+ const _RSea = "ReadinessScopes";
337
+ const _RT = "RecordType";
338
+ const _RTe = "ResourceType";
339
+ const _RTec = "RecommendationText";
340
+ const _Re = "Recommendations";
341
+ const _Rea = "Readiness";
342
+ const _Rec = "Recommendation";
343
+ const _Res = "Resource";
344
+ const _Ru = "Rules";
345
+ const _T = "Tags";
346
+ const _TE = "ThrottlingException";
1434
347
  const _TK = "TagKeys";
348
+ const _TR = "TargetResource";
349
+ const _TRR = "TagResourceRequest";
350
+ const _TRRa = "TagResourceResponse";
351
+ const _TRa = "TagResource";
352
+ const _UC = "UpdateCell";
353
+ const _UCR = "UpdateCellRequest";
354
+ const _UCRp = "UpdateCellResponse";
355
+ const _UR = "UntagResource";
356
+ const _URC = "UpdateReadinessCheck";
357
+ const _URCR = "UpdateReadinessCheckRequest";
358
+ const _URCRp = "UpdateReadinessCheckResponse";
359
+ const _URG = "UpdateRecoveryGroup";
360
+ const _URGR = "UpdateRecoveryGroupRequest";
361
+ const _URGRp = "UpdateRecoveryGroupResponse";
362
+ const _URR = "UntagResourceRequest";
363
+ const _URS = "UpdateResourceSet";
364
+ const _URSR = "UpdateResourceSetRequest";
365
+ const _URSRp = "UpdateResourceSetResponse";
366
+ const _VE = "ValidationException";
367
+ const _a = "arn";
368
+ const _c = "client";
369
+ const _cA = "cellArn";
370
+ const _cAA = "crossAccountAuthorization";
371
+ const _cAAr = "crossAccountAuthorizations";
372
+ const _cI = "componentId";
373
+ const _cN = "cellName";
374
+ const _ce = "cells";
375
+ const _dN = "domainName";
376
+ const _dTR = "dnsTargetResource";
377
+ const _e = "error";
378
+ const _h = "http";
379
+ const _hE = "httpError";
380
+ const _hQ = "httpQuery";
381
+ const _hZA = "hostedZoneArn";
382
+ const _jN = "jsonName";
383
+ const _lAT = "lastAuditTimestamp";
384
+ const _lCT = "lastCheckedTimestamp";
385
+ const _lOCO = "__listOfCellOutput";
386
+ const _lOLRO = "__listOfListRulesOutput";
387
+ const _lOM = "__listOfMessage";
388
+ const _lOR = "__listOfRecommendation";
389
+ const _lORCO = "__listOfReadinessCheckOutput";
390
+ const _lORCS = "__listOfReadinessCheckSummary";
391
+ const _lORGO = "__listOfRecoveryGroupOutput";
392
+ const _lORR = "__listOfResourceResult";
393
+ const _lORRi = "__listOfRuleResult";
394
+ const _lORSO = "__listOfResourceSetOutput";
395
+ const _lORi = "__listOfResource";
396
+ const _m = "message";
1435
397
  const _mR = "maxResults";
398
+ const _mT = "messageText";
399
+ const _me = "messages";
400
+ const _nLBR = "nLBResource";
1436
401
  const _nT = "nextToken";
1437
- const _rT = "resourceType";
402
+ const _pRS = "parentReadinessScopes";
403
+ const _r = "resources";
404
+ const _rA = "resourceArn";
405
+ const _rC = "readinessChecks";
406
+ const _rCA = "readinessCheckArn";
407
+ const _rCN = "readinessCheckName";
408
+ const _rD = "ruleDescription";
409
+ const _rG = "recoveryGroups";
410
+ const _rGA = "recoveryGroupArn";
411
+ const _rGN = "recoveryGroupName";
412
+ const _rI = "ruleId";
413
+ const _rR = "r53Resource";
414
+ const _rS = "resourceSet";
415
+ const _rSA = "resourceSetArn";
416
+ const _rSI = "recordSetId";
417
+ const _rSN = "resourceSetName";
418
+ const _rST = "resourceSetType";
419
+ const _rSe = "resourceSets";
420
+ const _rSea = "readinessScopes";
421
+ const _rT = "recordType";
422
+ const _rTe = "resourceType";
423
+ const _rTec = "recommendationText";
424
+ const _re = "recommendations";
425
+ const _rea = "readiness";
426
+ const _ru = "rules";
427
+ const _s = "server";
428
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53recoveryreadiness";
429
+ const _t = "tags";
1438
430
  const _tK = "tagKeys";
431
+ const _tR = "targetResource";
432
+ const n0 = "com.amazonaws.route53recoveryreadiness";
433
+ var AccessDeniedException = [
434
+ -3,
435
+ n0,
436
+ _ADE,
437
+ {
438
+ [_e]: _c,
439
+ [_hE]: 403,
440
+ },
441
+ [_M],
442
+ [
443
+ [
444
+ 0,
445
+ {
446
+ [_jN]: _m,
447
+ },
448
+ ],
449
+ ],
450
+ ];
451
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
452
+ var CellOutput = [
453
+ 3,
454
+ n0,
455
+ _CO,
456
+ 0,
457
+ [_CA, _CN, _C, _PRS, _T],
458
+ [
459
+ [
460
+ 0,
461
+ {
462
+ [_jN]: _cA,
463
+ },
464
+ ],
465
+ [
466
+ 0,
467
+ {
468
+ [_jN]: _cN,
469
+ },
470
+ ],
471
+ [
472
+ 64 | 0,
473
+ {
474
+ [_jN]: _ce,
475
+ },
476
+ ],
477
+ [
478
+ 64 | 0,
479
+ {
480
+ [_jN]: _pRS,
481
+ },
482
+ ],
483
+ [
484
+ 128 | 0,
485
+ {
486
+ [_jN]: _t,
487
+ },
488
+ ],
489
+ ],
490
+ ];
491
+ var ConflictException = [
492
+ -3,
493
+ n0,
494
+ _CE,
495
+ {
496
+ [_e]: _c,
497
+ [_hE]: 409,
498
+ },
499
+ [_M],
500
+ [
501
+ [
502
+ 0,
503
+ {
504
+ [_jN]: _m,
505
+ },
506
+ ],
507
+ ],
508
+ ];
509
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
510
+ var CreateCellRequest = [
511
+ 3,
512
+ n0,
513
+ _CCR,
514
+ 0,
515
+ [_CN, _C, _T],
516
+ [
517
+ [
518
+ 0,
519
+ {
520
+ [_jN]: _cN,
521
+ },
522
+ ],
523
+ [
524
+ 64 | 0,
525
+ {
526
+ [_jN]: _ce,
527
+ },
528
+ ],
529
+ [
530
+ 128 | 0,
531
+ {
532
+ [_jN]: _t,
533
+ },
534
+ ],
535
+ ],
536
+ ];
537
+ var CreateCellResponse = [
538
+ 3,
539
+ n0,
540
+ _CCRr,
541
+ 0,
542
+ [_CA, _CN, _C, _PRS, _T],
543
+ [
544
+ [
545
+ 0,
546
+ {
547
+ [_jN]: _cA,
548
+ },
549
+ ],
550
+ [
551
+ 0,
552
+ {
553
+ [_jN]: _cN,
554
+ },
555
+ ],
556
+ [
557
+ 64 | 0,
558
+ {
559
+ [_jN]: _ce,
560
+ },
561
+ ],
562
+ [
563
+ 64 | 0,
564
+ {
565
+ [_jN]: _pRS,
566
+ },
567
+ ],
568
+ [
569
+ 128 | 0,
570
+ {
571
+ [_jN]: _t,
572
+ },
573
+ ],
574
+ ],
575
+ ];
576
+ var CreateCrossAccountAuthorizationRequest = [
577
+ 3,
578
+ n0,
579
+ _CCAAR,
580
+ 0,
581
+ [_CAA],
582
+ [
583
+ [
584
+ 0,
585
+ {
586
+ [_jN]: _cAA,
587
+ },
588
+ ],
589
+ ],
590
+ ];
591
+ var CreateCrossAccountAuthorizationResponse = [
592
+ 3,
593
+ n0,
594
+ _CCAARr,
595
+ 0,
596
+ [_CAA],
597
+ [
598
+ [
599
+ 0,
600
+ {
601
+ [_jN]: _cAA,
602
+ },
603
+ ],
604
+ ],
605
+ ];
606
+ var CreateReadinessCheckRequest = [
607
+ 3,
608
+ n0,
609
+ _CRCR,
610
+ 0,
611
+ [_RCN, _RSN, _T],
612
+ [
613
+ [
614
+ 0,
615
+ {
616
+ [_jN]: _rCN,
617
+ },
618
+ ],
619
+ [
620
+ 0,
621
+ {
622
+ [_jN]: _rSN,
623
+ },
624
+ ],
625
+ [
626
+ 128 | 0,
627
+ {
628
+ [_jN]: _t,
629
+ },
630
+ ],
631
+ ],
632
+ ];
633
+ var CreateReadinessCheckResponse = [
634
+ 3,
635
+ n0,
636
+ _CRCRr,
637
+ 0,
638
+ [_RCA, _RCN, _RS, _T],
639
+ [
640
+ [
641
+ 0,
642
+ {
643
+ [_jN]: _rCA,
644
+ },
645
+ ],
646
+ [
647
+ 0,
648
+ {
649
+ [_jN]: _rCN,
650
+ },
651
+ ],
652
+ [
653
+ 0,
654
+ {
655
+ [_jN]: _rS,
656
+ },
657
+ ],
658
+ [
659
+ 128 | 0,
660
+ {
661
+ [_jN]: _t,
662
+ },
663
+ ],
664
+ ],
665
+ ];
666
+ var CreateRecoveryGroupRequest = [
667
+ 3,
668
+ n0,
669
+ _CRGR,
670
+ 0,
671
+ [_C, _RGN, _T],
672
+ [
673
+ [
674
+ 64 | 0,
675
+ {
676
+ [_jN]: _ce,
677
+ },
678
+ ],
679
+ [
680
+ 0,
681
+ {
682
+ [_jN]: _rGN,
683
+ },
684
+ ],
685
+ [
686
+ 128 | 0,
687
+ {
688
+ [_jN]: _t,
689
+ },
690
+ ],
691
+ ],
692
+ ];
693
+ var CreateRecoveryGroupResponse = [
694
+ 3,
695
+ n0,
696
+ _CRGRr,
697
+ 0,
698
+ [_C, _RGA, _RGN, _T],
699
+ [
700
+ [
701
+ 64 | 0,
702
+ {
703
+ [_jN]: _ce,
704
+ },
705
+ ],
706
+ [
707
+ 0,
708
+ {
709
+ [_jN]: _rGA,
710
+ },
711
+ ],
712
+ [
713
+ 0,
714
+ {
715
+ [_jN]: _rGN,
716
+ },
717
+ ],
718
+ [
719
+ 128 | 0,
720
+ {
721
+ [_jN]: _t,
722
+ },
723
+ ],
724
+ ],
725
+ ];
726
+ var CreateResourceSetRequest = [
727
+ 3,
728
+ n0,
729
+ _CRSR,
730
+ 0,
731
+ [_RSN, _RST, _R, _T],
732
+ [
733
+ [
734
+ 0,
735
+ {
736
+ [_jN]: _rSN,
737
+ },
738
+ ],
739
+ [
740
+ 0,
741
+ {
742
+ [_jN]: _rST,
743
+ },
744
+ ],
745
+ [
746
+ () => __listOfResource,
747
+ {
748
+ [_jN]: _r,
749
+ },
750
+ ],
751
+ [
752
+ 128 | 0,
753
+ {
754
+ [_jN]: _t,
755
+ },
756
+ ],
757
+ ],
758
+ ];
759
+ var CreateResourceSetResponse = [
760
+ 3,
761
+ n0,
762
+ _CRSRr,
763
+ 0,
764
+ [_RSA, _RSN, _RST, _R, _T],
765
+ [
766
+ [
767
+ 0,
768
+ {
769
+ [_jN]: _rSA,
770
+ },
771
+ ],
772
+ [
773
+ 0,
774
+ {
775
+ [_jN]: _rSN,
776
+ },
777
+ ],
778
+ [
779
+ 0,
780
+ {
781
+ [_jN]: _rST,
782
+ },
783
+ ],
784
+ [
785
+ () => __listOfResource,
786
+ {
787
+ [_jN]: _r,
788
+ },
789
+ ],
790
+ [
791
+ 128 | 0,
792
+ {
793
+ [_jN]: _t,
794
+ },
795
+ ],
796
+ ],
797
+ ];
798
+ var DeleteCellRequest = [3, n0, _DCR, 0, [_CN], [[0, 1]]];
799
+ var DeleteCrossAccountAuthorizationRequest = [3, n0, _DCAAR, 0, [_CAA], [[0, 1]]];
800
+ var DeleteCrossAccountAuthorizationResponse = [3, n0, _DCAARe, 0, [], []];
801
+ var DeleteReadinessCheckRequest = [3, n0, _DRCR, 0, [_RCN], [[0, 1]]];
802
+ var DeleteRecoveryGroupRequest = [3, n0, _DRGR, 0, [_RGN], [[0, 1]]];
803
+ var DeleteResourceSetRequest = [3, n0, _DRSR, 0, [_RSN], [[0, 1]]];
804
+ var DNSTargetResource = [
805
+ 3,
806
+ n0,
807
+ _DNSTR,
808
+ 0,
809
+ [_DN, _HZA, _RSI, _RT, _TR],
810
+ [
811
+ [
812
+ 0,
813
+ {
814
+ [_jN]: _dN,
815
+ },
816
+ ],
817
+ [
818
+ 0,
819
+ {
820
+ [_jN]: _hZA,
821
+ },
822
+ ],
823
+ [
824
+ 0,
825
+ {
826
+ [_jN]: _rSI,
827
+ },
828
+ ],
829
+ [
830
+ 0,
831
+ {
832
+ [_jN]: _rT,
833
+ },
834
+ ],
835
+ [
836
+ () => TargetResource,
837
+ {
838
+ [_jN]: _tR,
839
+ },
840
+ ],
841
+ ],
842
+ ];
843
+ var GetArchitectureRecommendationsRequest = [
844
+ 3,
845
+ n0,
846
+ _GARR,
847
+ 0,
848
+ [_MR, _NT, _RGN],
849
+ [
850
+ [
851
+ 1,
852
+ {
853
+ [_hQ]: _mR,
854
+ },
855
+ ],
856
+ [
857
+ 0,
858
+ {
859
+ [_hQ]: _nT,
860
+ },
861
+ ],
862
+ [0, 1],
863
+ ],
864
+ ];
865
+ var GetArchitectureRecommendationsResponse = [
866
+ 3,
867
+ n0,
868
+ _GARRe,
869
+ 0,
870
+ [_LAT, _NT, _Re],
871
+ [
872
+ [
873
+ 5,
874
+ {
875
+ [_jN]: _lAT,
876
+ },
877
+ ],
878
+ [
879
+ 0,
880
+ {
881
+ [_jN]: _nT,
882
+ },
883
+ ],
884
+ [
885
+ () => __listOfRecommendation,
886
+ {
887
+ [_jN]: _re,
888
+ },
889
+ ],
890
+ ],
891
+ ];
892
+ var GetCellReadinessSummaryRequest = [
893
+ 3,
894
+ n0,
895
+ _GCRSR,
896
+ 0,
897
+ [_CN, _MR, _NT],
898
+ [
899
+ [0, 1],
900
+ [
901
+ 1,
902
+ {
903
+ [_hQ]: _mR,
904
+ },
905
+ ],
906
+ [
907
+ 0,
908
+ {
909
+ [_hQ]: _nT,
910
+ },
911
+ ],
912
+ ],
913
+ ];
914
+ var GetCellReadinessSummaryResponse = [
915
+ 3,
916
+ n0,
917
+ _GCRSRe,
918
+ 0,
919
+ [_NT, _Rea, _RC],
920
+ [
921
+ [
922
+ 0,
923
+ {
924
+ [_jN]: _nT,
925
+ },
926
+ ],
927
+ [
928
+ 0,
929
+ {
930
+ [_jN]: _rea,
931
+ },
932
+ ],
933
+ [
934
+ () => __listOfReadinessCheckSummary,
935
+ {
936
+ [_jN]: _rC,
937
+ },
938
+ ],
939
+ ],
940
+ ];
941
+ var GetCellRequest = [3, n0, _GCR, 0, [_CN], [[0, 1]]];
942
+ var GetCellResponse = [
943
+ 3,
944
+ n0,
945
+ _GCRe,
946
+ 0,
947
+ [_CA, _CN, _C, _PRS, _T],
948
+ [
949
+ [
950
+ 0,
951
+ {
952
+ [_jN]: _cA,
953
+ },
954
+ ],
955
+ [
956
+ 0,
957
+ {
958
+ [_jN]: _cN,
959
+ },
960
+ ],
961
+ [
962
+ 64 | 0,
963
+ {
964
+ [_jN]: _ce,
965
+ },
966
+ ],
967
+ [
968
+ 64 | 0,
969
+ {
970
+ [_jN]: _pRS,
971
+ },
972
+ ],
973
+ [
974
+ 128 | 0,
975
+ {
976
+ [_jN]: _t,
977
+ },
978
+ ],
979
+ ],
980
+ ];
981
+ var GetReadinessCheckRequest = [3, n0, _GRCR, 0, [_RCN], [[0, 1]]];
982
+ var GetReadinessCheckResourceStatusRequest = [
983
+ 3,
984
+ n0,
985
+ _GRCRSR,
986
+ 0,
987
+ [_MR, _NT, _RCN, _RI],
988
+ [
989
+ [
990
+ 1,
991
+ {
992
+ [_hQ]: _mR,
993
+ },
994
+ ],
995
+ [
996
+ 0,
997
+ {
998
+ [_hQ]: _nT,
999
+ },
1000
+ ],
1001
+ [0, 1],
1002
+ [0, 1],
1003
+ ],
1004
+ ];
1005
+ var GetReadinessCheckResourceStatusResponse = [
1006
+ 3,
1007
+ n0,
1008
+ _GRCRSRe,
1009
+ 0,
1010
+ [_NT, _Rea, _Ru],
1011
+ [
1012
+ [
1013
+ 0,
1014
+ {
1015
+ [_jN]: _nT,
1016
+ },
1017
+ ],
1018
+ [
1019
+ 0,
1020
+ {
1021
+ [_jN]: _rea,
1022
+ },
1023
+ ],
1024
+ [
1025
+ () => __listOfRuleResult,
1026
+ {
1027
+ [_jN]: _ru,
1028
+ },
1029
+ ],
1030
+ ],
1031
+ ];
1032
+ var GetReadinessCheckResponse = [
1033
+ 3,
1034
+ n0,
1035
+ _GRCRe,
1036
+ 0,
1037
+ [_RCA, _RCN, _RS, _T],
1038
+ [
1039
+ [
1040
+ 0,
1041
+ {
1042
+ [_jN]: _rCA,
1043
+ },
1044
+ ],
1045
+ [
1046
+ 0,
1047
+ {
1048
+ [_jN]: _rCN,
1049
+ },
1050
+ ],
1051
+ [
1052
+ 0,
1053
+ {
1054
+ [_jN]: _rS,
1055
+ },
1056
+ ],
1057
+ [
1058
+ 128 | 0,
1059
+ {
1060
+ [_jN]: _t,
1061
+ },
1062
+ ],
1063
+ ],
1064
+ ];
1065
+ var GetReadinessCheckStatusRequest = [
1066
+ 3,
1067
+ n0,
1068
+ _GRCSR,
1069
+ 0,
1070
+ [_MR, _NT, _RCN],
1071
+ [
1072
+ [
1073
+ 1,
1074
+ {
1075
+ [_hQ]: _mR,
1076
+ },
1077
+ ],
1078
+ [
1079
+ 0,
1080
+ {
1081
+ [_hQ]: _nT,
1082
+ },
1083
+ ],
1084
+ [0, 1],
1085
+ ],
1086
+ ];
1087
+ var GetReadinessCheckStatusResponse = [
1088
+ 3,
1089
+ n0,
1090
+ _GRCSRe,
1091
+ 0,
1092
+ [_Me, _NT, _Rea, _R],
1093
+ [
1094
+ [
1095
+ () => __listOfMessage,
1096
+ {
1097
+ [_jN]: _me,
1098
+ },
1099
+ ],
1100
+ [
1101
+ 0,
1102
+ {
1103
+ [_jN]: _nT,
1104
+ },
1105
+ ],
1106
+ [
1107
+ 0,
1108
+ {
1109
+ [_jN]: _rea,
1110
+ },
1111
+ ],
1112
+ [
1113
+ () => __listOfResourceResult,
1114
+ {
1115
+ [_jN]: _r,
1116
+ },
1117
+ ],
1118
+ ],
1119
+ ];
1120
+ var GetRecoveryGroupReadinessSummaryRequest = [
1121
+ 3,
1122
+ n0,
1123
+ _GRGRSR,
1124
+ 0,
1125
+ [_MR, _NT, _RGN],
1126
+ [
1127
+ [
1128
+ 1,
1129
+ {
1130
+ [_hQ]: _mR,
1131
+ },
1132
+ ],
1133
+ [
1134
+ 0,
1135
+ {
1136
+ [_hQ]: _nT,
1137
+ },
1138
+ ],
1139
+ [0, 1],
1140
+ ],
1141
+ ];
1142
+ var GetRecoveryGroupReadinessSummaryResponse = [
1143
+ 3,
1144
+ n0,
1145
+ _GRGRSRe,
1146
+ 0,
1147
+ [_NT, _Rea, _RC],
1148
+ [
1149
+ [
1150
+ 0,
1151
+ {
1152
+ [_jN]: _nT,
1153
+ },
1154
+ ],
1155
+ [
1156
+ 0,
1157
+ {
1158
+ [_jN]: _rea,
1159
+ },
1160
+ ],
1161
+ [
1162
+ () => __listOfReadinessCheckSummary,
1163
+ {
1164
+ [_jN]: _rC,
1165
+ },
1166
+ ],
1167
+ ],
1168
+ ];
1169
+ var GetRecoveryGroupRequest = [3, n0, _GRGR, 0, [_RGN], [[0, 1]]];
1170
+ var GetRecoveryGroupResponse = [
1171
+ 3,
1172
+ n0,
1173
+ _GRGRe,
1174
+ 0,
1175
+ [_C, _RGA, _RGN, _T],
1176
+ [
1177
+ [
1178
+ 64 | 0,
1179
+ {
1180
+ [_jN]: _ce,
1181
+ },
1182
+ ],
1183
+ [
1184
+ 0,
1185
+ {
1186
+ [_jN]: _rGA,
1187
+ },
1188
+ ],
1189
+ [
1190
+ 0,
1191
+ {
1192
+ [_jN]: _rGN,
1193
+ },
1194
+ ],
1195
+ [
1196
+ 128 | 0,
1197
+ {
1198
+ [_jN]: _t,
1199
+ },
1200
+ ],
1201
+ ],
1202
+ ];
1203
+ var GetResourceSetRequest = [3, n0, _GRSR, 0, [_RSN], [[0, 1]]];
1204
+ var GetResourceSetResponse = [
1205
+ 3,
1206
+ n0,
1207
+ _GRSRe,
1208
+ 0,
1209
+ [_RSA, _RSN, _RST, _R, _T],
1210
+ [
1211
+ [
1212
+ 0,
1213
+ {
1214
+ [_jN]: _rSA,
1215
+ },
1216
+ ],
1217
+ [
1218
+ 0,
1219
+ {
1220
+ [_jN]: _rSN,
1221
+ },
1222
+ ],
1223
+ [
1224
+ 0,
1225
+ {
1226
+ [_jN]: _rST,
1227
+ },
1228
+ ],
1229
+ [
1230
+ () => __listOfResource,
1231
+ {
1232
+ [_jN]: _r,
1233
+ },
1234
+ ],
1235
+ [
1236
+ 128 | 0,
1237
+ {
1238
+ [_jN]: _t,
1239
+ },
1240
+ ],
1241
+ ],
1242
+ ];
1243
+ var InternalServerException = [
1244
+ -3,
1245
+ n0,
1246
+ _ISE,
1247
+ {
1248
+ [_e]: _s,
1249
+ [_hE]: 500,
1250
+ },
1251
+ [_M],
1252
+ [
1253
+ [
1254
+ 0,
1255
+ {
1256
+ [_jN]: _m,
1257
+ },
1258
+ ],
1259
+ ],
1260
+ ];
1261
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1262
+ var ListCellsRequest = [
1263
+ 3,
1264
+ n0,
1265
+ _LCR,
1266
+ 0,
1267
+ [_MR, _NT],
1268
+ [
1269
+ [
1270
+ 1,
1271
+ {
1272
+ [_hQ]: _mR,
1273
+ },
1274
+ ],
1275
+ [
1276
+ 0,
1277
+ {
1278
+ [_hQ]: _nT,
1279
+ },
1280
+ ],
1281
+ ],
1282
+ ];
1283
+ var ListCellsResponse = [
1284
+ 3,
1285
+ n0,
1286
+ _LCRi,
1287
+ 0,
1288
+ [_C, _NT],
1289
+ [
1290
+ [
1291
+ () => __listOfCellOutput,
1292
+ {
1293
+ [_jN]: _ce,
1294
+ },
1295
+ ],
1296
+ [
1297
+ 0,
1298
+ {
1299
+ [_jN]: _nT,
1300
+ },
1301
+ ],
1302
+ ],
1303
+ ];
1304
+ var ListCrossAccountAuthorizationsRequest = [
1305
+ 3,
1306
+ n0,
1307
+ _LCAAR,
1308
+ 0,
1309
+ [_MR, _NT],
1310
+ [
1311
+ [
1312
+ 1,
1313
+ {
1314
+ [_hQ]: _mR,
1315
+ },
1316
+ ],
1317
+ [
1318
+ 0,
1319
+ {
1320
+ [_hQ]: _nT,
1321
+ },
1322
+ ],
1323
+ ],
1324
+ ];
1325
+ var ListCrossAccountAuthorizationsResponse = [
1326
+ 3,
1327
+ n0,
1328
+ _LCAARi,
1329
+ 0,
1330
+ [_CAAr, _NT],
1331
+ [
1332
+ [
1333
+ 64 | 0,
1334
+ {
1335
+ [_jN]: _cAAr,
1336
+ },
1337
+ ],
1338
+ [
1339
+ 0,
1340
+ {
1341
+ [_jN]: _nT,
1342
+ },
1343
+ ],
1344
+ ],
1345
+ ];
1346
+ var ListReadinessChecksRequest = [
1347
+ 3,
1348
+ n0,
1349
+ _LRCR,
1350
+ 0,
1351
+ [_MR, _NT],
1352
+ [
1353
+ [
1354
+ 1,
1355
+ {
1356
+ [_hQ]: _mR,
1357
+ },
1358
+ ],
1359
+ [
1360
+ 0,
1361
+ {
1362
+ [_hQ]: _nT,
1363
+ },
1364
+ ],
1365
+ ],
1366
+ ];
1367
+ var ListReadinessChecksResponse = [
1368
+ 3,
1369
+ n0,
1370
+ _LRCRi,
1371
+ 0,
1372
+ [_NT, _RC],
1373
+ [
1374
+ [
1375
+ 0,
1376
+ {
1377
+ [_jN]: _nT,
1378
+ },
1379
+ ],
1380
+ [
1381
+ () => __listOfReadinessCheckOutput,
1382
+ {
1383
+ [_jN]: _rC,
1384
+ },
1385
+ ],
1386
+ ],
1387
+ ];
1388
+ var ListRecoveryGroupsRequest = [
1389
+ 3,
1390
+ n0,
1391
+ _LRGR,
1392
+ 0,
1393
+ [_MR, _NT],
1394
+ [
1395
+ [
1396
+ 1,
1397
+ {
1398
+ [_hQ]: _mR,
1399
+ },
1400
+ ],
1401
+ [
1402
+ 0,
1403
+ {
1404
+ [_hQ]: _nT,
1405
+ },
1406
+ ],
1407
+ ],
1408
+ ];
1409
+ var ListRecoveryGroupsResponse = [
1410
+ 3,
1411
+ n0,
1412
+ _LRGRi,
1413
+ 0,
1414
+ [_NT, _RG],
1415
+ [
1416
+ [
1417
+ 0,
1418
+ {
1419
+ [_jN]: _nT,
1420
+ },
1421
+ ],
1422
+ [
1423
+ () => __listOfRecoveryGroupOutput,
1424
+ {
1425
+ [_jN]: _rG,
1426
+ },
1427
+ ],
1428
+ ],
1429
+ ];
1430
+ var ListResourceSetsRequest = [
1431
+ 3,
1432
+ n0,
1433
+ _LRSR,
1434
+ 0,
1435
+ [_MR, _NT],
1436
+ [
1437
+ [
1438
+ 1,
1439
+ {
1440
+ [_hQ]: _mR,
1441
+ },
1442
+ ],
1443
+ [
1444
+ 0,
1445
+ {
1446
+ [_hQ]: _nT,
1447
+ },
1448
+ ],
1449
+ ],
1450
+ ];
1451
+ var ListResourceSetsResponse = [
1452
+ 3,
1453
+ n0,
1454
+ _LRSRi,
1455
+ 0,
1456
+ [_NT, _RSe],
1457
+ [
1458
+ [
1459
+ 0,
1460
+ {
1461
+ [_jN]: _nT,
1462
+ },
1463
+ ],
1464
+ [
1465
+ () => __listOfResourceSetOutput,
1466
+ {
1467
+ [_jN]: _rSe,
1468
+ },
1469
+ ],
1470
+ ],
1471
+ ];
1472
+ var ListRulesOutput = [
1473
+ 3,
1474
+ n0,
1475
+ _LRO,
1476
+ 0,
1477
+ [_RTe, _RD, _RIu],
1478
+ [
1479
+ [
1480
+ 0,
1481
+ {
1482
+ [_jN]: _rTe,
1483
+ },
1484
+ ],
1485
+ [
1486
+ 0,
1487
+ {
1488
+ [_jN]: _rD,
1489
+ },
1490
+ ],
1491
+ [
1492
+ 0,
1493
+ {
1494
+ [_jN]: _rI,
1495
+ },
1496
+ ],
1497
+ ],
1498
+ ];
1499
+ var ListRulesRequest = [
1500
+ 3,
1501
+ n0,
1502
+ _LRR,
1503
+ 0,
1504
+ [_MR, _NT, _RTe],
1505
+ [
1506
+ [
1507
+ 1,
1508
+ {
1509
+ [_hQ]: _mR,
1510
+ },
1511
+ ],
1512
+ [
1513
+ 0,
1514
+ {
1515
+ [_hQ]: _nT,
1516
+ },
1517
+ ],
1518
+ [
1519
+ 0,
1520
+ {
1521
+ [_hQ]: _rTe,
1522
+ },
1523
+ ],
1524
+ ],
1525
+ ];
1526
+ var ListRulesResponse = [
1527
+ 3,
1528
+ n0,
1529
+ _LRRi,
1530
+ 0,
1531
+ [_NT, _Ru],
1532
+ [
1533
+ [
1534
+ 0,
1535
+ {
1536
+ [_jN]: _nT,
1537
+ },
1538
+ ],
1539
+ [
1540
+ () => __listOfListRulesOutput,
1541
+ {
1542
+ [_jN]: _ru,
1543
+ },
1544
+ ],
1545
+ ],
1546
+ ];
1547
+ var ListTagsForResourcesRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
1548
+ var ListTagsForResourcesResponse = [
1549
+ 3,
1550
+ n0,
1551
+ _LTFRRi,
1552
+ 0,
1553
+ [_T],
1554
+ [
1555
+ [
1556
+ 128 | 0,
1557
+ {
1558
+ [_jN]: _t,
1559
+ },
1560
+ ],
1561
+ ],
1562
+ ];
1563
+ var Message = [
1564
+ 3,
1565
+ n0,
1566
+ _M,
1567
+ 0,
1568
+ [_MT],
1569
+ [
1570
+ [
1571
+ 0,
1572
+ {
1573
+ [_jN]: _mT,
1574
+ },
1575
+ ],
1576
+ ],
1577
+ ];
1578
+ var NLBResource = [
1579
+ 3,
1580
+ n0,
1581
+ _NLBR,
1582
+ 0,
1583
+ [_A],
1584
+ [
1585
+ [
1586
+ 0,
1587
+ {
1588
+ [_jN]: _a,
1589
+ },
1590
+ ],
1591
+ ],
1592
+ ];
1593
+ var R53ResourceRecord = [
1594
+ 3,
1595
+ n0,
1596
+ _RRR,
1597
+ 0,
1598
+ [_DN, _RSI],
1599
+ [
1600
+ [
1601
+ 0,
1602
+ {
1603
+ [_jN]: _dN,
1604
+ },
1605
+ ],
1606
+ [
1607
+ 0,
1608
+ {
1609
+ [_jN]: _rSI,
1610
+ },
1611
+ ],
1612
+ ],
1613
+ ];
1614
+ var ReadinessCheckOutput = [
1615
+ 3,
1616
+ n0,
1617
+ _RCO,
1618
+ 0,
1619
+ [_RCA, _RCN, _RS, _T],
1620
+ [
1621
+ [
1622
+ 0,
1623
+ {
1624
+ [_jN]: _rCA,
1625
+ },
1626
+ ],
1627
+ [
1628
+ 0,
1629
+ {
1630
+ [_jN]: _rCN,
1631
+ },
1632
+ ],
1633
+ [
1634
+ 0,
1635
+ {
1636
+ [_jN]: _rS,
1637
+ },
1638
+ ],
1639
+ [
1640
+ 128 | 0,
1641
+ {
1642
+ [_jN]: _t,
1643
+ },
1644
+ ],
1645
+ ],
1646
+ ];
1647
+ var ReadinessCheckSummary = [
1648
+ 3,
1649
+ n0,
1650
+ _RCS,
1651
+ 0,
1652
+ [_Rea, _RCN],
1653
+ [
1654
+ [
1655
+ 0,
1656
+ {
1657
+ [_jN]: _rea,
1658
+ },
1659
+ ],
1660
+ [
1661
+ 0,
1662
+ {
1663
+ [_jN]: _rCN,
1664
+ },
1665
+ ],
1666
+ ],
1667
+ ];
1668
+ var Recommendation = [
1669
+ 3,
1670
+ n0,
1671
+ _Rec,
1672
+ 0,
1673
+ [_RTec],
1674
+ [
1675
+ [
1676
+ 0,
1677
+ {
1678
+ [_jN]: _rTec,
1679
+ },
1680
+ ],
1681
+ ],
1682
+ ];
1683
+ var RecoveryGroupOutput = [
1684
+ 3,
1685
+ n0,
1686
+ _RGO,
1687
+ 0,
1688
+ [_C, _RGA, _RGN, _T],
1689
+ [
1690
+ [
1691
+ 64 | 0,
1692
+ {
1693
+ [_jN]: _ce,
1694
+ },
1695
+ ],
1696
+ [
1697
+ 0,
1698
+ {
1699
+ [_jN]: _rGA,
1700
+ },
1701
+ ],
1702
+ [
1703
+ 0,
1704
+ {
1705
+ [_jN]: _rGN,
1706
+ },
1707
+ ],
1708
+ [
1709
+ 128 | 0,
1710
+ {
1711
+ [_jN]: _t,
1712
+ },
1713
+ ],
1714
+ ],
1715
+ ];
1716
+ var Resource = [
1717
+ 3,
1718
+ n0,
1719
+ _Res,
1720
+ 0,
1721
+ [_CI, _DTR, _RSea, _RA],
1722
+ [
1723
+ [
1724
+ 0,
1725
+ {
1726
+ [_jN]: _cI,
1727
+ },
1728
+ ],
1729
+ [
1730
+ () => DNSTargetResource,
1731
+ {
1732
+ [_jN]: _dTR,
1733
+ },
1734
+ ],
1735
+ [
1736
+ 64 | 0,
1737
+ {
1738
+ [_jN]: _rSea,
1739
+ },
1740
+ ],
1741
+ [
1742
+ 0,
1743
+ {
1744
+ [_jN]: _rA,
1745
+ },
1746
+ ],
1747
+ ],
1748
+ ];
1749
+ var ResourceNotFoundException = [
1750
+ -3,
1751
+ n0,
1752
+ _RNFE,
1753
+ {
1754
+ [_e]: _c,
1755
+ [_hE]: 404,
1756
+ },
1757
+ [_M],
1758
+ [
1759
+ [
1760
+ 0,
1761
+ {
1762
+ [_jN]: _m,
1763
+ },
1764
+ ],
1765
+ ],
1766
+ ];
1767
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1768
+ var ResourceResult = [
1769
+ 3,
1770
+ n0,
1771
+ _RR,
1772
+ 0,
1773
+ [_CI, _LCT, _Rea, _RA],
1774
+ [
1775
+ [
1776
+ 0,
1777
+ {
1778
+ [_jN]: _cI,
1779
+ },
1780
+ ],
1781
+ [
1782
+ 5,
1783
+ {
1784
+ [_jN]: _lCT,
1785
+ },
1786
+ ],
1787
+ [
1788
+ 0,
1789
+ {
1790
+ [_jN]: _rea,
1791
+ },
1792
+ ],
1793
+ [
1794
+ 0,
1795
+ {
1796
+ [_jN]: _rA,
1797
+ },
1798
+ ],
1799
+ ],
1800
+ ];
1801
+ var ResourceSetOutput = [
1802
+ 3,
1803
+ n0,
1804
+ _RSO,
1805
+ 0,
1806
+ [_RSA, _RSN, _RST, _R, _T],
1807
+ [
1808
+ [
1809
+ 0,
1810
+ {
1811
+ [_jN]: _rSA,
1812
+ },
1813
+ ],
1814
+ [
1815
+ 0,
1816
+ {
1817
+ [_jN]: _rSN,
1818
+ },
1819
+ ],
1820
+ [
1821
+ 0,
1822
+ {
1823
+ [_jN]: _rST,
1824
+ },
1825
+ ],
1826
+ [
1827
+ () => __listOfResource,
1828
+ {
1829
+ [_jN]: _r,
1830
+ },
1831
+ ],
1832
+ [
1833
+ 128 | 0,
1834
+ {
1835
+ [_jN]: _t,
1836
+ },
1837
+ ],
1838
+ ],
1839
+ ];
1840
+ var RuleResult = [
1841
+ 3,
1842
+ n0,
1843
+ _RRu,
1844
+ 0,
1845
+ [_LCT, _Me, _Rea, _RIu],
1846
+ [
1847
+ [
1848
+ 5,
1849
+ {
1850
+ [_jN]: _lCT,
1851
+ },
1852
+ ],
1853
+ [
1854
+ () => __listOfMessage,
1855
+ {
1856
+ [_jN]: _me,
1857
+ },
1858
+ ],
1859
+ [
1860
+ 0,
1861
+ {
1862
+ [_jN]: _rea,
1863
+ },
1864
+ ],
1865
+ [
1866
+ 0,
1867
+ {
1868
+ [_jN]: _rI,
1869
+ },
1870
+ ],
1871
+ ],
1872
+ ];
1873
+ var TagResourceRequest = [
1874
+ 3,
1875
+ n0,
1876
+ _TRR,
1877
+ 0,
1878
+ [_RA, _T],
1879
+ [
1880
+ [0, 1],
1881
+ [
1882
+ 128 | 0,
1883
+ {
1884
+ [_jN]: _t,
1885
+ },
1886
+ ],
1887
+ ],
1888
+ ];
1889
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1890
+ var TargetResource = [
1891
+ 3,
1892
+ n0,
1893
+ _TR,
1894
+ 0,
1895
+ [_NLBR, _RRe],
1896
+ [
1897
+ [
1898
+ () => NLBResource,
1899
+ {
1900
+ [_jN]: _nLBR,
1901
+ },
1902
+ ],
1903
+ [
1904
+ () => R53ResourceRecord,
1905
+ {
1906
+ [_jN]: _rR,
1907
+ },
1908
+ ],
1909
+ ],
1910
+ ];
1911
+ var ThrottlingException = [
1912
+ -3,
1913
+ n0,
1914
+ _TE,
1915
+ {
1916
+ [_e]: _c,
1917
+ [_hE]: 429,
1918
+ },
1919
+ [_M],
1920
+ [
1921
+ [
1922
+ 0,
1923
+ {
1924
+ [_jN]: _m,
1925
+ },
1926
+ ],
1927
+ ],
1928
+ ];
1929
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1930
+ var UntagResourceRequest = [
1931
+ 3,
1932
+ n0,
1933
+ _URR,
1934
+ 0,
1935
+ [_RA, _TK],
1936
+ [
1937
+ [0, 1],
1938
+ [
1939
+ 64 | 0,
1940
+ {
1941
+ [_hQ]: _tK,
1942
+ },
1943
+ ],
1944
+ ],
1945
+ ];
1946
+ var UpdateCellRequest = [
1947
+ 3,
1948
+ n0,
1949
+ _UCR,
1950
+ 0,
1951
+ [_CN, _C],
1952
+ [
1953
+ [0, 1],
1954
+ [
1955
+ 64 | 0,
1956
+ {
1957
+ [_jN]: _ce,
1958
+ },
1959
+ ],
1960
+ ],
1961
+ ];
1962
+ var UpdateCellResponse = [
1963
+ 3,
1964
+ n0,
1965
+ _UCRp,
1966
+ 0,
1967
+ [_CA, _CN, _C, _PRS, _T],
1968
+ [
1969
+ [
1970
+ 0,
1971
+ {
1972
+ [_jN]: _cA,
1973
+ },
1974
+ ],
1975
+ [
1976
+ 0,
1977
+ {
1978
+ [_jN]: _cN,
1979
+ },
1980
+ ],
1981
+ [
1982
+ 64 | 0,
1983
+ {
1984
+ [_jN]: _ce,
1985
+ },
1986
+ ],
1987
+ [
1988
+ 64 | 0,
1989
+ {
1990
+ [_jN]: _pRS,
1991
+ },
1992
+ ],
1993
+ [
1994
+ 128 | 0,
1995
+ {
1996
+ [_jN]: _t,
1997
+ },
1998
+ ],
1999
+ ],
2000
+ ];
2001
+ var UpdateReadinessCheckRequest = [
2002
+ 3,
2003
+ n0,
2004
+ _URCR,
2005
+ 0,
2006
+ [_RCN, _RSN],
2007
+ [
2008
+ [0, 1],
2009
+ [
2010
+ 0,
2011
+ {
2012
+ [_jN]: _rSN,
2013
+ },
2014
+ ],
2015
+ ],
2016
+ ];
2017
+ var UpdateReadinessCheckResponse = [
2018
+ 3,
2019
+ n0,
2020
+ _URCRp,
2021
+ 0,
2022
+ [_RCA, _RCN, _RS, _T],
2023
+ [
2024
+ [
2025
+ 0,
2026
+ {
2027
+ [_jN]: _rCA,
2028
+ },
2029
+ ],
2030
+ [
2031
+ 0,
2032
+ {
2033
+ [_jN]: _rCN,
2034
+ },
2035
+ ],
2036
+ [
2037
+ 0,
2038
+ {
2039
+ [_jN]: _rS,
2040
+ },
2041
+ ],
2042
+ [
2043
+ 128 | 0,
2044
+ {
2045
+ [_jN]: _t,
2046
+ },
2047
+ ],
2048
+ ],
2049
+ ];
2050
+ var UpdateRecoveryGroupRequest = [
2051
+ 3,
2052
+ n0,
2053
+ _URGR,
2054
+ 0,
2055
+ [_C, _RGN],
2056
+ [
2057
+ [
2058
+ 64 | 0,
2059
+ {
2060
+ [_jN]: _ce,
2061
+ },
2062
+ ],
2063
+ [0, 1],
2064
+ ],
2065
+ ];
2066
+ var UpdateRecoveryGroupResponse = [
2067
+ 3,
2068
+ n0,
2069
+ _URGRp,
2070
+ 0,
2071
+ [_C, _RGA, _RGN, _T],
2072
+ [
2073
+ [
2074
+ 64 | 0,
2075
+ {
2076
+ [_jN]: _ce,
2077
+ },
2078
+ ],
2079
+ [
2080
+ 0,
2081
+ {
2082
+ [_jN]: _rGA,
2083
+ },
2084
+ ],
2085
+ [
2086
+ 0,
2087
+ {
2088
+ [_jN]: _rGN,
2089
+ },
2090
+ ],
2091
+ [
2092
+ 128 | 0,
2093
+ {
2094
+ [_jN]: _t,
2095
+ },
2096
+ ],
2097
+ ],
2098
+ ];
2099
+ var UpdateResourceSetRequest = [
2100
+ 3,
2101
+ n0,
2102
+ _URSR,
2103
+ 0,
2104
+ [_RSN, _RST, _R],
2105
+ [
2106
+ [0, 1],
2107
+ [
2108
+ 0,
2109
+ {
2110
+ [_jN]: _rST,
2111
+ },
2112
+ ],
2113
+ [
2114
+ () => __listOfResource,
2115
+ {
2116
+ [_jN]: _r,
2117
+ },
2118
+ ],
2119
+ ],
2120
+ ];
2121
+ var UpdateResourceSetResponse = [
2122
+ 3,
2123
+ n0,
2124
+ _URSRp,
2125
+ 0,
2126
+ [_RSA, _RSN, _RST, _R, _T],
2127
+ [
2128
+ [
2129
+ 0,
2130
+ {
2131
+ [_jN]: _rSA,
2132
+ },
2133
+ ],
2134
+ [
2135
+ 0,
2136
+ {
2137
+ [_jN]: _rSN,
2138
+ },
2139
+ ],
2140
+ [
2141
+ 0,
2142
+ {
2143
+ [_jN]: _rST,
2144
+ },
2145
+ ],
2146
+ [
2147
+ () => __listOfResource,
2148
+ {
2149
+ [_jN]: _r,
2150
+ },
2151
+ ],
2152
+ [
2153
+ 128 | 0,
2154
+ {
2155
+ [_jN]: _t,
2156
+ },
2157
+ ],
2158
+ ],
2159
+ ];
2160
+ var ValidationException = [
2161
+ -3,
2162
+ n0,
2163
+ _VE,
2164
+ {
2165
+ [_e]: _c,
2166
+ [_hE]: 400,
2167
+ },
2168
+ [_M],
2169
+ [
2170
+ [
2171
+ 0,
2172
+ {
2173
+ [_jN]: _m,
2174
+ },
2175
+ ],
2176
+ ],
2177
+ ];
2178
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
2179
+ var __Unit = "unit";
2180
+ var Route53RecoveryReadinessServiceException = [
2181
+ -3,
2182
+ _sm,
2183
+ "Route53RecoveryReadinessServiceException",
2184
+ 0,
2185
+ [],
2186
+ [],
2187
+ ];
2188
+ schema.TypeRegistry.for(_sm).registerError(Route53RecoveryReadinessServiceException, Route53RecoveryReadinessServiceException$1);
2189
+ var __listOfCellOutput = [1, n0, _lOCO, 0, [() => CellOutput, 0]];
2190
+ var __listOfListRulesOutput = [1, n0, _lOLRO, 0, [() => ListRulesOutput, 0]];
2191
+ var __listOfMessage = [1, n0, _lOM, 0, [() => Message, 0]];
2192
+ var __listOfReadinessCheckOutput = [1, n0, _lORCO, 0, [() => ReadinessCheckOutput, 0]];
2193
+ var __listOfReadinessCheckSummary = [1, n0, _lORCS, 0, [() => ReadinessCheckSummary, 0]];
2194
+ var __listOfRecommendation = [1, n0, _lOR, 0, [() => Recommendation, 0]];
2195
+ var __listOfRecoveryGroupOutput = [1, n0, _lORGO, 0, [() => RecoveryGroupOutput, 0]];
2196
+ var __listOfResource = [1, n0, _lORi, 0, [() => Resource, 0]];
2197
+ var __listOfResourceResult = [1, n0, _lORR, 0, [() => ResourceResult, 0]];
2198
+ var __listOfResourceSetOutput = [1, n0, _lORSO, 0, [() => ResourceSetOutput, 0]];
2199
+ var __listOfRuleResult = [1, n0, _lORRi, 0, [() => RuleResult, 0]];
2200
+ var CreateCell = [
2201
+ 9,
2202
+ n0,
2203
+ _CC,
2204
+ {
2205
+ [_h]: ["POST", "/cells", 200],
2206
+ },
2207
+ () => CreateCellRequest,
2208
+ () => CreateCellResponse,
2209
+ ];
2210
+ var CreateCrossAccountAuthorization = [
2211
+ 9,
2212
+ n0,
2213
+ _CCAA,
2214
+ {
2215
+ [_h]: ["POST", "/crossaccountauthorizations", 200],
2216
+ },
2217
+ () => CreateCrossAccountAuthorizationRequest,
2218
+ () => CreateCrossAccountAuthorizationResponse,
2219
+ ];
2220
+ var CreateReadinessCheck = [
2221
+ 9,
2222
+ n0,
2223
+ _CRC,
2224
+ {
2225
+ [_h]: ["POST", "/readinesschecks", 200],
2226
+ },
2227
+ () => CreateReadinessCheckRequest,
2228
+ () => CreateReadinessCheckResponse,
2229
+ ];
2230
+ var CreateRecoveryGroup = [
2231
+ 9,
2232
+ n0,
2233
+ _CRG,
2234
+ {
2235
+ [_h]: ["POST", "/recoverygroups", 200],
2236
+ },
2237
+ () => CreateRecoveryGroupRequest,
2238
+ () => CreateRecoveryGroupResponse,
2239
+ ];
2240
+ var CreateResourceSet = [
2241
+ 9,
2242
+ n0,
2243
+ _CRS,
2244
+ {
2245
+ [_h]: ["POST", "/resourcesets", 200],
2246
+ },
2247
+ () => CreateResourceSetRequest,
2248
+ () => CreateResourceSetResponse,
2249
+ ];
2250
+ var DeleteCell = [
2251
+ 9,
2252
+ n0,
2253
+ _DC,
2254
+ {
2255
+ [_h]: ["DELETE", "/cells/{CellName}", 204],
2256
+ },
2257
+ () => DeleteCellRequest,
2258
+ () => __Unit,
2259
+ ];
2260
+ var DeleteCrossAccountAuthorization = [
2261
+ 9,
2262
+ n0,
2263
+ _DCAA,
2264
+ {
2265
+ [_h]: ["DELETE", "/crossaccountauthorizations/{CrossAccountAuthorization}", 200],
2266
+ },
2267
+ () => DeleteCrossAccountAuthorizationRequest,
2268
+ () => DeleteCrossAccountAuthorizationResponse,
2269
+ ];
2270
+ var DeleteReadinessCheck = [
2271
+ 9,
2272
+ n0,
2273
+ _DRC,
2274
+ {
2275
+ [_h]: ["DELETE", "/readinesschecks/{ReadinessCheckName}", 204],
2276
+ },
2277
+ () => DeleteReadinessCheckRequest,
2278
+ () => __Unit,
2279
+ ];
2280
+ var DeleteRecoveryGroup = [
2281
+ 9,
2282
+ n0,
2283
+ _DRG,
2284
+ {
2285
+ [_h]: ["DELETE", "/recoverygroups/{RecoveryGroupName}", 204],
2286
+ },
2287
+ () => DeleteRecoveryGroupRequest,
2288
+ () => __Unit,
2289
+ ];
2290
+ var DeleteResourceSet = [
2291
+ 9,
2292
+ n0,
2293
+ _DRS,
2294
+ {
2295
+ [_h]: ["DELETE", "/resourcesets/{ResourceSetName}", 204],
2296
+ },
2297
+ () => DeleteResourceSetRequest,
2298
+ () => __Unit,
2299
+ ];
2300
+ var GetArchitectureRecommendations = [
2301
+ 9,
2302
+ n0,
2303
+ _GAR,
2304
+ {
2305
+ [_h]: ["GET", "/recoverygroups/{RecoveryGroupName}/architectureRecommendations", 200],
2306
+ },
2307
+ () => GetArchitectureRecommendationsRequest,
2308
+ () => GetArchitectureRecommendationsResponse,
2309
+ ];
2310
+ var GetCell = [
2311
+ 9,
2312
+ n0,
2313
+ _GC,
2314
+ {
2315
+ [_h]: ["GET", "/cells/{CellName}", 200],
2316
+ },
2317
+ () => GetCellRequest,
2318
+ () => GetCellResponse,
2319
+ ];
2320
+ var GetCellReadinessSummary = [
2321
+ 9,
2322
+ n0,
2323
+ _GCRS,
2324
+ {
2325
+ [_h]: ["GET", "/cellreadiness/{CellName}", 200],
2326
+ },
2327
+ () => GetCellReadinessSummaryRequest,
2328
+ () => GetCellReadinessSummaryResponse,
2329
+ ];
2330
+ var GetReadinessCheck = [
2331
+ 9,
2332
+ n0,
2333
+ _GRC,
2334
+ {
2335
+ [_h]: ["GET", "/readinesschecks/{ReadinessCheckName}", 200],
2336
+ },
2337
+ () => GetReadinessCheckRequest,
2338
+ () => GetReadinessCheckResponse,
2339
+ ];
2340
+ var GetReadinessCheckResourceStatus = [
2341
+ 9,
2342
+ n0,
2343
+ _GRCRS,
2344
+ {
2345
+ [_h]: ["GET", "/readinesschecks/{ReadinessCheckName}/resource/{ResourceIdentifier}/status", 200],
2346
+ },
2347
+ () => GetReadinessCheckResourceStatusRequest,
2348
+ () => GetReadinessCheckResourceStatusResponse,
2349
+ ];
2350
+ var GetReadinessCheckStatus = [
2351
+ 9,
2352
+ n0,
2353
+ _GRCS,
2354
+ {
2355
+ [_h]: ["GET", "/readinesschecks/{ReadinessCheckName}/status", 200],
2356
+ },
2357
+ () => GetReadinessCheckStatusRequest,
2358
+ () => GetReadinessCheckStatusResponse,
2359
+ ];
2360
+ var GetRecoveryGroup = [
2361
+ 9,
2362
+ n0,
2363
+ _GRG,
2364
+ {
2365
+ [_h]: ["GET", "/recoverygroups/{RecoveryGroupName}", 200],
2366
+ },
2367
+ () => GetRecoveryGroupRequest,
2368
+ () => GetRecoveryGroupResponse,
2369
+ ];
2370
+ var GetRecoveryGroupReadinessSummary = [
2371
+ 9,
2372
+ n0,
2373
+ _GRGRS,
2374
+ {
2375
+ [_h]: ["GET", "/recoverygroupreadiness/{RecoveryGroupName}", 200],
2376
+ },
2377
+ () => GetRecoveryGroupReadinessSummaryRequest,
2378
+ () => GetRecoveryGroupReadinessSummaryResponse,
2379
+ ];
2380
+ var GetResourceSet = [
2381
+ 9,
2382
+ n0,
2383
+ _GRS,
2384
+ {
2385
+ [_h]: ["GET", "/resourcesets/{ResourceSetName}", 200],
2386
+ },
2387
+ () => GetResourceSetRequest,
2388
+ () => GetResourceSetResponse,
2389
+ ];
2390
+ var ListCells = [
2391
+ 9,
2392
+ n0,
2393
+ _LC,
2394
+ {
2395
+ [_h]: ["GET", "/cells", 200],
2396
+ },
2397
+ () => ListCellsRequest,
2398
+ () => ListCellsResponse,
2399
+ ];
2400
+ var ListCrossAccountAuthorizations = [
2401
+ 9,
2402
+ n0,
2403
+ _LCAA,
2404
+ {
2405
+ [_h]: ["GET", "/crossaccountauthorizations", 200],
2406
+ },
2407
+ () => ListCrossAccountAuthorizationsRequest,
2408
+ () => ListCrossAccountAuthorizationsResponse,
2409
+ ];
2410
+ var ListReadinessChecks = [
2411
+ 9,
2412
+ n0,
2413
+ _LRC,
2414
+ {
2415
+ [_h]: ["GET", "/readinesschecks", 200],
2416
+ },
2417
+ () => ListReadinessChecksRequest,
2418
+ () => ListReadinessChecksResponse,
2419
+ ];
2420
+ var ListRecoveryGroups = [
2421
+ 9,
2422
+ n0,
2423
+ _LRG,
2424
+ {
2425
+ [_h]: ["GET", "/recoverygroups", 200],
2426
+ },
2427
+ () => ListRecoveryGroupsRequest,
2428
+ () => ListRecoveryGroupsResponse,
2429
+ ];
2430
+ var ListResourceSets = [
2431
+ 9,
2432
+ n0,
2433
+ _LRS,
2434
+ {
2435
+ [_h]: ["GET", "/resourcesets", 200],
2436
+ },
2437
+ () => ListResourceSetsRequest,
2438
+ () => ListResourceSetsResponse,
2439
+ ];
2440
+ var ListRules = [
2441
+ 9,
2442
+ n0,
2443
+ _LR,
2444
+ {
2445
+ [_h]: ["GET", "/rules", 200],
2446
+ },
2447
+ () => ListRulesRequest,
2448
+ () => ListRulesResponse,
2449
+ ];
2450
+ var ListTagsForResources = [
2451
+ 9,
2452
+ n0,
2453
+ _LTFR,
2454
+ {
2455
+ [_h]: ["GET", "/tags/{ResourceArn}", 200],
2456
+ },
2457
+ () => ListTagsForResourcesRequest,
2458
+ () => ListTagsForResourcesResponse,
2459
+ ];
2460
+ var TagResource = [
2461
+ 9,
2462
+ n0,
2463
+ _TRa,
2464
+ {
2465
+ [_h]: ["POST", "/tags/{ResourceArn}", 200],
2466
+ },
2467
+ () => TagResourceRequest,
2468
+ () => TagResourceResponse,
2469
+ ];
2470
+ var UntagResource = [
2471
+ 9,
2472
+ n0,
2473
+ _UR,
2474
+ {
2475
+ [_h]: ["DELETE", "/tags/{ResourceArn}", 204],
2476
+ },
2477
+ () => UntagResourceRequest,
2478
+ () => __Unit,
2479
+ ];
2480
+ var UpdateCell = [
2481
+ 9,
2482
+ n0,
2483
+ _UC,
2484
+ {
2485
+ [_h]: ["PUT", "/cells/{CellName}", 200],
2486
+ },
2487
+ () => UpdateCellRequest,
2488
+ () => UpdateCellResponse,
2489
+ ];
2490
+ var UpdateReadinessCheck = [
2491
+ 9,
2492
+ n0,
2493
+ _URC,
2494
+ {
2495
+ [_h]: ["PUT", "/readinesschecks/{ReadinessCheckName}", 200],
2496
+ },
2497
+ () => UpdateReadinessCheckRequest,
2498
+ () => UpdateReadinessCheckResponse,
2499
+ ];
2500
+ var UpdateRecoveryGroup = [
2501
+ 9,
2502
+ n0,
2503
+ _URG,
2504
+ {
2505
+ [_h]: ["PUT", "/recoverygroups/{RecoveryGroupName}", 200],
2506
+ },
2507
+ () => UpdateRecoveryGroupRequest,
2508
+ () => UpdateRecoveryGroupResponse,
2509
+ ];
2510
+ var UpdateResourceSet = [
2511
+ 9,
2512
+ n0,
2513
+ _URS,
2514
+ {
2515
+ [_h]: ["PUT", "/resourcesets/{ResourceSetName}", 200],
2516
+ },
2517
+ () => UpdateResourceSetRequest,
2518
+ () => UpdateResourceSetResponse,
2519
+ ];
1439
2520
 
1440
2521
  class CreateCellCommand extends smithyClient.Command
1441
2522
  .classBuilder()
1442
2523
  .ep(commonParams)
1443
2524
  .m(function (Command, cs, config, o) {
1444
- return [
1445
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1446
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1447
- ];
2525
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1448
2526
  })
1449
2527
  .s("Route53RecoveryReadiness", "CreateCell", {})
1450
2528
  .n("Route53RecoveryReadinessClient", "CreateCellCommand")
1451
- .f(void 0, void 0)
1452
- .ser(se_CreateCellCommand)
1453
- .de(de_CreateCellCommand)
2529
+ .sc(CreateCell)
1454
2530
  .build() {
1455
2531
  }
1456
2532
 
@@ -1458,16 +2534,11 @@ class CreateCrossAccountAuthorizationCommand extends smithyClient.Command
1458
2534
  .classBuilder()
1459
2535
  .ep(commonParams)
1460
2536
  .m(function (Command, cs, config, o) {
1461
- return [
1462
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1463
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1464
- ];
2537
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1465
2538
  })
1466
2539
  .s("Route53RecoveryReadiness", "CreateCrossAccountAuthorization", {})
1467
2540
  .n("Route53RecoveryReadinessClient", "CreateCrossAccountAuthorizationCommand")
1468
- .f(void 0, void 0)
1469
- .ser(se_CreateCrossAccountAuthorizationCommand)
1470
- .de(de_CreateCrossAccountAuthorizationCommand)
2541
+ .sc(CreateCrossAccountAuthorization)
1471
2542
  .build() {
1472
2543
  }
1473
2544
 
@@ -1475,16 +2546,11 @@ class CreateReadinessCheckCommand extends smithyClient.Command
1475
2546
  .classBuilder()
1476
2547
  .ep(commonParams)
1477
2548
  .m(function (Command, cs, config, o) {
1478
- return [
1479
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1480
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1481
- ];
2549
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1482
2550
  })
1483
2551
  .s("Route53RecoveryReadiness", "CreateReadinessCheck", {})
1484
2552
  .n("Route53RecoveryReadinessClient", "CreateReadinessCheckCommand")
1485
- .f(void 0, void 0)
1486
- .ser(se_CreateReadinessCheckCommand)
1487
- .de(de_CreateReadinessCheckCommand)
2553
+ .sc(CreateReadinessCheck)
1488
2554
  .build() {
1489
2555
  }
1490
2556
 
@@ -1492,16 +2558,11 @@ class CreateRecoveryGroupCommand extends smithyClient.Command
1492
2558
  .classBuilder()
1493
2559
  .ep(commonParams)
1494
2560
  .m(function (Command, cs, config, o) {
1495
- return [
1496
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1497
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1498
- ];
2561
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1499
2562
  })
1500
2563
  .s("Route53RecoveryReadiness", "CreateRecoveryGroup", {})
1501
2564
  .n("Route53RecoveryReadinessClient", "CreateRecoveryGroupCommand")
1502
- .f(void 0, void 0)
1503
- .ser(se_CreateRecoveryGroupCommand)
1504
- .de(de_CreateRecoveryGroupCommand)
2565
+ .sc(CreateRecoveryGroup)
1505
2566
  .build() {
1506
2567
  }
1507
2568
 
@@ -1509,16 +2570,11 @@ class CreateResourceSetCommand extends smithyClient.Command
1509
2570
  .classBuilder()
1510
2571
  .ep(commonParams)
1511
2572
  .m(function (Command, cs, config, o) {
1512
- return [
1513
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1514
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1515
- ];
2573
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1516
2574
  })
1517
2575
  .s("Route53RecoveryReadiness", "CreateResourceSet", {})
1518
2576
  .n("Route53RecoveryReadinessClient", "CreateResourceSetCommand")
1519
- .f(void 0, void 0)
1520
- .ser(se_CreateResourceSetCommand)
1521
- .de(de_CreateResourceSetCommand)
2577
+ .sc(CreateResourceSet)
1522
2578
  .build() {
1523
2579
  }
1524
2580
 
@@ -1526,16 +2582,11 @@ class DeleteCellCommand extends smithyClient.Command
1526
2582
  .classBuilder()
1527
2583
  .ep(commonParams)
1528
2584
  .m(function (Command, cs, config, o) {
1529
- return [
1530
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1531
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1532
- ];
2585
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1533
2586
  })
1534
2587
  .s("Route53RecoveryReadiness", "DeleteCell", {})
1535
2588
  .n("Route53RecoveryReadinessClient", "DeleteCellCommand")
1536
- .f(void 0, void 0)
1537
- .ser(se_DeleteCellCommand)
1538
- .de(de_DeleteCellCommand)
2589
+ .sc(DeleteCell)
1539
2590
  .build() {
1540
2591
  }
1541
2592
 
@@ -1543,16 +2594,11 @@ class DeleteCrossAccountAuthorizationCommand extends smithyClient.Command
1543
2594
  .classBuilder()
1544
2595
  .ep(commonParams)
1545
2596
  .m(function (Command, cs, config, o) {
1546
- return [
1547
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1548
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1549
- ];
2597
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1550
2598
  })
1551
2599
  .s("Route53RecoveryReadiness", "DeleteCrossAccountAuthorization", {})
1552
2600
  .n("Route53RecoveryReadinessClient", "DeleteCrossAccountAuthorizationCommand")
1553
- .f(void 0, void 0)
1554
- .ser(se_DeleteCrossAccountAuthorizationCommand)
1555
- .de(de_DeleteCrossAccountAuthorizationCommand)
2601
+ .sc(DeleteCrossAccountAuthorization)
1556
2602
  .build() {
1557
2603
  }
1558
2604
 
@@ -1560,16 +2606,11 @@ class DeleteReadinessCheckCommand extends smithyClient.Command
1560
2606
  .classBuilder()
1561
2607
  .ep(commonParams)
1562
2608
  .m(function (Command, cs, config, o) {
1563
- return [
1564
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1565
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1566
- ];
2609
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1567
2610
  })
1568
2611
  .s("Route53RecoveryReadiness", "DeleteReadinessCheck", {})
1569
2612
  .n("Route53RecoveryReadinessClient", "DeleteReadinessCheckCommand")
1570
- .f(void 0, void 0)
1571
- .ser(se_DeleteReadinessCheckCommand)
1572
- .de(de_DeleteReadinessCheckCommand)
2613
+ .sc(DeleteReadinessCheck)
1573
2614
  .build() {
1574
2615
  }
1575
2616
 
@@ -1577,16 +2618,11 @@ class DeleteRecoveryGroupCommand extends smithyClient.Command
1577
2618
  .classBuilder()
1578
2619
  .ep(commonParams)
1579
2620
  .m(function (Command, cs, config, o) {
1580
- return [
1581
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1582
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1583
- ];
2621
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1584
2622
  })
1585
2623
  .s("Route53RecoveryReadiness", "DeleteRecoveryGroup", {})
1586
2624
  .n("Route53RecoveryReadinessClient", "DeleteRecoveryGroupCommand")
1587
- .f(void 0, void 0)
1588
- .ser(se_DeleteRecoveryGroupCommand)
1589
- .de(de_DeleteRecoveryGroupCommand)
2625
+ .sc(DeleteRecoveryGroup)
1590
2626
  .build() {
1591
2627
  }
1592
2628
 
@@ -1594,16 +2630,11 @@ class DeleteResourceSetCommand extends smithyClient.Command
1594
2630
  .classBuilder()
1595
2631
  .ep(commonParams)
1596
2632
  .m(function (Command, cs, config, o) {
1597
- return [
1598
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1599
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1600
- ];
2633
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1601
2634
  })
1602
2635
  .s("Route53RecoveryReadiness", "DeleteResourceSet", {})
1603
2636
  .n("Route53RecoveryReadinessClient", "DeleteResourceSetCommand")
1604
- .f(void 0, void 0)
1605
- .ser(se_DeleteResourceSetCommand)
1606
- .de(de_DeleteResourceSetCommand)
2637
+ .sc(DeleteResourceSet)
1607
2638
  .build() {
1608
2639
  }
1609
2640
 
@@ -1611,16 +2642,11 @@ class GetArchitectureRecommendationsCommand extends smithyClient.Command
1611
2642
  .classBuilder()
1612
2643
  .ep(commonParams)
1613
2644
  .m(function (Command, cs, config, o) {
1614
- return [
1615
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1616
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1617
- ];
2645
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1618
2646
  })
1619
2647
  .s("Route53RecoveryReadiness", "GetArchitectureRecommendations", {})
1620
2648
  .n("Route53RecoveryReadinessClient", "GetArchitectureRecommendationsCommand")
1621
- .f(void 0, void 0)
1622
- .ser(se_GetArchitectureRecommendationsCommand)
1623
- .de(de_GetArchitectureRecommendationsCommand)
2649
+ .sc(GetArchitectureRecommendations)
1624
2650
  .build() {
1625
2651
  }
1626
2652
 
@@ -1628,16 +2654,11 @@ class GetCellCommand extends smithyClient.Command
1628
2654
  .classBuilder()
1629
2655
  .ep(commonParams)
1630
2656
  .m(function (Command, cs, config, o) {
1631
- return [
1632
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1633
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1634
- ];
2657
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1635
2658
  })
1636
2659
  .s("Route53RecoveryReadiness", "GetCell", {})
1637
2660
  .n("Route53RecoveryReadinessClient", "GetCellCommand")
1638
- .f(void 0, void 0)
1639
- .ser(se_GetCellCommand)
1640
- .de(de_GetCellCommand)
2661
+ .sc(GetCell)
1641
2662
  .build() {
1642
2663
  }
1643
2664
 
@@ -1645,16 +2666,11 @@ class GetCellReadinessSummaryCommand extends smithyClient.Command
1645
2666
  .classBuilder()
1646
2667
  .ep(commonParams)
1647
2668
  .m(function (Command, cs, config, o) {
1648
- return [
1649
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1650
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1651
- ];
2669
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1652
2670
  })
1653
2671
  .s("Route53RecoveryReadiness", "GetCellReadinessSummary", {})
1654
2672
  .n("Route53RecoveryReadinessClient", "GetCellReadinessSummaryCommand")
1655
- .f(void 0, void 0)
1656
- .ser(se_GetCellReadinessSummaryCommand)
1657
- .de(de_GetCellReadinessSummaryCommand)
2673
+ .sc(GetCellReadinessSummary)
1658
2674
  .build() {
1659
2675
  }
1660
2676
 
@@ -1662,16 +2678,11 @@ class GetReadinessCheckCommand extends smithyClient.Command
1662
2678
  .classBuilder()
1663
2679
  .ep(commonParams)
1664
2680
  .m(function (Command, cs, config, o) {
1665
- return [
1666
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1667
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1668
- ];
2681
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1669
2682
  })
1670
2683
  .s("Route53RecoveryReadiness", "GetReadinessCheck", {})
1671
2684
  .n("Route53RecoveryReadinessClient", "GetReadinessCheckCommand")
1672
- .f(void 0, void 0)
1673
- .ser(se_GetReadinessCheckCommand)
1674
- .de(de_GetReadinessCheckCommand)
2685
+ .sc(GetReadinessCheck)
1675
2686
  .build() {
1676
2687
  }
1677
2688
 
@@ -1679,16 +2690,11 @@ class GetReadinessCheckResourceStatusCommand extends smithyClient.Command
1679
2690
  .classBuilder()
1680
2691
  .ep(commonParams)
1681
2692
  .m(function (Command, cs, config, o) {
1682
- return [
1683
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1684
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1685
- ];
2693
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1686
2694
  })
1687
2695
  .s("Route53RecoveryReadiness", "GetReadinessCheckResourceStatus", {})
1688
2696
  .n("Route53RecoveryReadinessClient", "GetReadinessCheckResourceStatusCommand")
1689
- .f(void 0, void 0)
1690
- .ser(se_GetReadinessCheckResourceStatusCommand)
1691
- .de(de_GetReadinessCheckResourceStatusCommand)
2697
+ .sc(GetReadinessCheckResourceStatus)
1692
2698
  .build() {
1693
2699
  }
1694
2700
 
@@ -1696,16 +2702,11 @@ class GetReadinessCheckStatusCommand extends smithyClient.Command
1696
2702
  .classBuilder()
1697
2703
  .ep(commonParams)
1698
2704
  .m(function (Command, cs, config, o) {
1699
- return [
1700
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1701
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1702
- ];
2705
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1703
2706
  })
1704
2707
  .s("Route53RecoveryReadiness", "GetReadinessCheckStatus", {})
1705
2708
  .n("Route53RecoveryReadinessClient", "GetReadinessCheckStatusCommand")
1706
- .f(void 0, void 0)
1707
- .ser(se_GetReadinessCheckStatusCommand)
1708
- .de(de_GetReadinessCheckStatusCommand)
2709
+ .sc(GetReadinessCheckStatus)
1709
2710
  .build() {
1710
2711
  }
1711
2712
 
@@ -1713,16 +2714,11 @@ class GetRecoveryGroupCommand extends smithyClient.Command
1713
2714
  .classBuilder()
1714
2715
  .ep(commonParams)
1715
2716
  .m(function (Command, cs, config, o) {
1716
- return [
1717
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1718
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1719
- ];
2717
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1720
2718
  })
1721
2719
  .s("Route53RecoveryReadiness", "GetRecoveryGroup", {})
1722
2720
  .n("Route53RecoveryReadinessClient", "GetRecoveryGroupCommand")
1723
- .f(void 0, void 0)
1724
- .ser(se_GetRecoveryGroupCommand)
1725
- .de(de_GetRecoveryGroupCommand)
2721
+ .sc(GetRecoveryGroup)
1726
2722
  .build() {
1727
2723
  }
1728
2724
 
@@ -1730,16 +2726,11 @@ class GetRecoveryGroupReadinessSummaryCommand extends smithyClient.Command
1730
2726
  .classBuilder()
1731
2727
  .ep(commonParams)
1732
2728
  .m(function (Command, cs, config, o) {
1733
- return [
1734
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1735
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1736
- ];
2729
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1737
2730
  })
1738
2731
  .s("Route53RecoveryReadiness", "GetRecoveryGroupReadinessSummary", {})
1739
2732
  .n("Route53RecoveryReadinessClient", "GetRecoveryGroupReadinessSummaryCommand")
1740
- .f(void 0, void 0)
1741
- .ser(se_GetRecoveryGroupReadinessSummaryCommand)
1742
- .de(de_GetRecoveryGroupReadinessSummaryCommand)
2733
+ .sc(GetRecoveryGroupReadinessSummary)
1743
2734
  .build() {
1744
2735
  }
1745
2736
 
@@ -1747,16 +2738,11 @@ class GetResourceSetCommand extends smithyClient.Command
1747
2738
  .classBuilder()
1748
2739
  .ep(commonParams)
1749
2740
  .m(function (Command, cs, config, o) {
1750
- return [
1751
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1752
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1753
- ];
2741
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1754
2742
  })
1755
2743
  .s("Route53RecoveryReadiness", "GetResourceSet", {})
1756
2744
  .n("Route53RecoveryReadinessClient", "GetResourceSetCommand")
1757
- .f(void 0, void 0)
1758
- .ser(se_GetResourceSetCommand)
1759
- .de(de_GetResourceSetCommand)
2745
+ .sc(GetResourceSet)
1760
2746
  .build() {
1761
2747
  }
1762
2748
 
@@ -1764,16 +2750,11 @@ class ListCellsCommand extends smithyClient.Command
1764
2750
  .classBuilder()
1765
2751
  .ep(commonParams)
1766
2752
  .m(function (Command, cs, config, o) {
1767
- return [
1768
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1769
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1770
- ];
2753
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1771
2754
  })
1772
2755
  .s("Route53RecoveryReadiness", "ListCells", {})
1773
2756
  .n("Route53RecoveryReadinessClient", "ListCellsCommand")
1774
- .f(void 0, void 0)
1775
- .ser(se_ListCellsCommand)
1776
- .de(de_ListCellsCommand)
2757
+ .sc(ListCells)
1777
2758
  .build() {
1778
2759
  }
1779
2760
 
@@ -1781,16 +2762,11 @@ class ListCrossAccountAuthorizationsCommand extends smithyClient.Command
1781
2762
  .classBuilder()
1782
2763
  .ep(commonParams)
1783
2764
  .m(function (Command, cs, config, o) {
1784
- return [
1785
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1786
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1787
- ];
2765
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1788
2766
  })
1789
2767
  .s("Route53RecoveryReadiness", "ListCrossAccountAuthorizations", {})
1790
2768
  .n("Route53RecoveryReadinessClient", "ListCrossAccountAuthorizationsCommand")
1791
- .f(void 0, void 0)
1792
- .ser(se_ListCrossAccountAuthorizationsCommand)
1793
- .de(de_ListCrossAccountAuthorizationsCommand)
2769
+ .sc(ListCrossAccountAuthorizations)
1794
2770
  .build() {
1795
2771
  }
1796
2772
 
@@ -1798,16 +2774,11 @@ class ListReadinessChecksCommand extends smithyClient.Command
1798
2774
  .classBuilder()
1799
2775
  .ep(commonParams)
1800
2776
  .m(function (Command, cs, config, o) {
1801
- return [
1802
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1803
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1804
- ];
2777
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1805
2778
  })
1806
2779
  .s("Route53RecoveryReadiness", "ListReadinessChecks", {})
1807
2780
  .n("Route53RecoveryReadinessClient", "ListReadinessChecksCommand")
1808
- .f(void 0, void 0)
1809
- .ser(se_ListReadinessChecksCommand)
1810
- .de(de_ListReadinessChecksCommand)
2781
+ .sc(ListReadinessChecks)
1811
2782
  .build() {
1812
2783
  }
1813
2784
 
@@ -1815,16 +2786,11 @@ class ListRecoveryGroupsCommand extends smithyClient.Command
1815
2786
  .classBuilder()
1816
2787
  .ep(commonParams)
1817
2788
  .m(function (Command, cs, config, o) {
1818
- return [
1819
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1820
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1821
- ];
2789
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1822
2790
  })
1823
2791
  .s("Route53RecoveryReadiness", "ListRecoveryGroups", {})
1824
2792
  .n("Route53RecoveryReadinessClient", "ListRecoveryGroupsCommand")
1825
- .f(void 0, void 0)
1826
- .ser(se_ListRecoveryGroupsCommand)
1827
- .de(de_ListRecoveryGroupsCommand)
2793
+ .sc(ListRecoveryGroups)
1828
2794
  .build() {
1829
2795
  }
1830
2796
 
@@ -1832,16 +2798,11 @@ class ListResourceSetsCommand extends smithyClient.Command
1832
2798
  .classBuilder()
1833
2799
  .ep(commonParams)
1834
2800
  .m(function (Command, cs, config, o) {
1835
- return [
1836
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1837
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1838
- ];
2801
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1839
2802
  })
1840
2803
  .s("Route53RecoveryReadiness", "ListResourceSets", {})
1841
2804
  .n("Route53RecoveryReadinessClient", "ListResourceSetsCommand")
1842
- .f(void 0, void 0)
1843
- .ser(se_ListResourceSetsCommand)
1844
- .de(de_ListResourceSetsCommand)
2805
+ .sc(ListResourceSets)
1845
2806
  .build() {
1846
2807
  }
1847
2808
 
@@ -1849,16 +2810,11 @@ class ListRulesCommand extends smithyClient.Command
1849
2810
  .classBuilder()
1850
2811
  .ep(commonParams)
1851
2812
  .m(function (Command, cs, config, o) {
1852
- return [
1853
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1854
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1855
- ];
2813
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1856
2814
  })
1857
2815
  .s("Route53RecoveryReadiness", "ListRules", {})
1858
2816
  .n("Route53RecoveryReadinessClient", "ListRulesCommand")
1859
- .f(void 0, void 0)
1860
- .ser(se_ListRulesCommand)
1861
- .de(de_ListRulesCommand)
2817
+ .sc(ListRules)
1862
2818
  .build() {
1863
2819
  }
1864
2820
 
@@ -1866,16 +2822,11 @@ class ListTagsForResourcesCommand extends smithyClient.Command
1866
2822
  .classBuilder()
1867
2823
  .ep(commonParams)
1868
2824
  .m(function (Command, cs, config, o) {
1869
- return [
1870
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1871
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1872
- ];
2825
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1873
2826
  })
1874
2827
  .s("Route53RecoveryReadiness", "ListTagsForResources", {})
1875
2828
  .n("Route53RecoveryReadinessClient", "ListTagsForResourcesCommand")
1876
- .f(void 0, void 0)
1877
- .ser(se_ListTagsForResourcesCommand)
1878
- .de(de_ListTagsForResourcesCommand)
2829
+ .sc(ListTagsForResources)
1879
2830
  .build() {
1880
2831
  }
1881
2832
 
@@ -1883,16 +2834,11 @@ class TagResourceCommand extends smithyClient.Command
1883
2834
  .classBuilder()
1884
2835
  .ep(commonParams)
1885
2836
  .m(function (Command, cs, config, o) {
1886
- return [
1887
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1888
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1889
- ];
2837
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1890
2838
  })
1891
2839
  .s("Route53RecoveryReadiness", "TagResource", {})
1892
2840
  .n("Route53RecoveryReadinessClient", "TagResourceCommand")
1893
- .f(void 0, void 0)
1894
- .ser(se_TagResourceCommand)
1895
- .de(de_TagResourceCommand)
2841
+ .sc(TagResource)
1896
2842
  .build() {
1897
2843
  }
1898
2844
 
@@ -1900,16 +2846,11 @@ class UntagResourceCommand extends smithyClient.Command
1900
2846
  .classBuilder()
1901
2847
  .ep(commonParams)
1902
2848
  .m(function (Command, cs, config, o) {
1903
- return [
1904
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1905
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1906
- ];
2849
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1907
2850
  })
1908
2851
  .s("Route53RecoveryReadiness", "UntagResource", {})
1909
2852
  .n("Route53RecoveryReadinessClient", "UntagResourceCommand")
1910
- .f(void 0, void 0)
1911
- .ser(se_UntagResourceCommand)
1912
- .de(de_UntagResourceCommand)
2853
+ .sc(UntagResource)
1913
2854
  .build() {
1914
2855
  }
1915
2856
 
@@ -1917,16 +2858,11 @@ class UpdateCellCommand extends smithyClient.Command
1917
2858
  .classBuilder()
1918
2859
  .ep(commonParams)
1919
2860
  .m(function (Command, cs, config, o) {
1920
- return [
1921
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1922
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1923
- ];
2861
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1924
2862
  })
1925
2863
  .s("Route53RecoveryReadiness", "UpdateCell", {})
1926
2864
  .n("Route53RecoveryReadinessClient", "UpdateCellCommand")
1927
- .f(void 0, void 0)
1928
- .ser(se_UpdateCellCommand)
1929
- .de(de_UpdateCellCommand)
2865
+ .sc(UpdateCell)
1930
2866
  .build() {
1931
2867
  }
1932
2868
 
@@ -1934,16 +2870,11 @@ class UpdateReadinessCheckCommand extends smithyClient.Command
1934
2870
  .classBuilder()
1935
2871
  .ep(commonParams)
1936
2872
  .m(function (Command, cs, config, o) {
1937
- return [
1938
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1939
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1940
- ];
2873
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1941
2874
  })
1942
2875
  .s("Route53RecoveryReadiness", "UpdateReadinessCheck", {})
1943
2876
  .n("Route53RecoveryReadinessClient", "UpdateReadinessCheckCommand")
1944
- .f(void 0, void 0)
1945
- .ser(se_UpdateReadinessCheckCommand)
1946
- .de(de_UpdateReadinessCheckCommand)
2877
+ .sc(UpdateReadinessCheck)
1947
2878
  .build() {
1948
2879
  }
1949
2880
 
@@ -1951,16 +2882,11 @@ class UpdateRecoveryGroupCommand extends smithyClient.Command
1951
2882
  .classBuilder()
1952
2883
  .ep(commonParams)
1953
2884
  .m(function (Command, cs, config, o) {
1954
- return [
1955
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1956
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1957
- ];
2885
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1958
2886
  })
1959
2887
  .s("Route53RecoveryReadiness", "UpdateRecoveryGroup", {})
1960
2888
  .n("Route53RecoveryReadinessClient", "UpdateRecoveryGroupCommand")
1961
- .f(void 0, void 0)
1962
- .ser(se_UpdateRecoveryGroupCommand)
1963
- .de(de_UpdateRecoveryGroupCommand)
2889
+ .sc(UpdateRecoveryGroup)
1964
2890
  .build() {
1965
2891
  }
1966
2892
 
@@ -1968,16 +2894,11 @@ class UpdateResourceSetCommand extends smithyClient.Command
1968
2894
  .classBuilder()
1969
2895
  .ep(commonParams)
1970
2896
  .m(function (Command, cs, config, o) {
1971
- return [
1972
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1973
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1974
- ];
2897
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1975
2898
  })
1976
2899
  .s("Route53RecoveryReadiness", "UpdateResourceSet", {})
1977
2900
  .n("Route53RecoveryReadinessClient", "UpdateResourceSetCommand")
1978
- .f(void 0, void 0)
1979
- .ser(se_UpdateResourceSetCommand)
1980
- .de(de_UpdateResourceSetCommand)
2901
+ .sc(UpdateResourceSet)
1981
2902
  .build() {
1982
2903
  }
1983
2904
 
@@ -2047,8 +2968,8 @@ Object.defineProperty(exports, "__Client", {
2047
2968
  enumerable: true,
2048
2969
  get: function () { return smithyClient.Client; }
2049
2970
  });
2050
- exports.AccessDeniedException = AccessDeniedException;
2051
- exports.ConflictException = ConflictException;
2971
+ exports.AccessDeniedException = AccessDeniedException$1;
2972
+ exports.ConflictException = ConflictException$1;
2052
2973
  exports.CreateCellCommand = CreateCellCommand;
2053
2974
  exports.CreateCrossAccountAuthorizationCommand = CreateCrossAccountAuthorizationCommand;
2054
2975
  exports.CreateReadinessCheckCommand = CreateReadinessCheckCommand;
@@ -2068,7 +2989,7 @@ exports.GetReadinessCheckStatusCommand = GetReadinessCheckStatusCommand;
2068
2989
  exports.GetRecoveryGroupCommand = GetRecoveryGroupCommand;
2069
2990
  exports.GetRecoveryGroupReadinessSummaryCommand = GetRecoveryGroupReadinessSummaryCommand;
2070
2991
  exports.GetResourceSetCommand = GetResourceSetCommand;
2071
- exports.InternalServerException = InternalServerException;
2992
+ exports.InternalServerException = InternalServerException$1;
2072
2993
  exports.ListCellsCommand = ListCellsCommand;
2073
2994
  exports.ListCrossAccountAuthorizationsCommand = ListCrossAccountAuthorizationsCommand;
2074
2995
  exports.ListReadinessChecksCommand = ListReadinessChecksCommand;
@@ -2077,18 +2998,18 @@ exports.ListResourceSetsCommand = ListResourceSetsCommand;
2077
2998
  exports.ListRulesCommand = ListRulesCommand;
2078
2999
  exports.ListTagsForResourcesCommand = ListTagsForResourcesCommand;
2079
3000
  exports.Readiness = Readiness;
2080
- exports.ResourceNotFoundException = ResourceNotFoundException;
3001
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
2081
3002
  exports.Route53RecoveryReadiness = Route53RecoveryReadiness;
2082
3003
  exports.Route53RecoveryReadinessClient = Route53RecoveryReadinessClient;
2083
- exports.Route53RecoveryReadinessServiceException = Route53RecoveryReadinessServiceException;
3004
+ exports.Route53RecoveryReadinessServiceException = Route53RecoveryReadinessServiceException$1;
2084
3005
  exports.TagResourceCommand = TagResourceCommand;
2085
- exports.ThrottlingException = ThrottlingException;
3006
+ exports.ThrottlingException = ThrottlingException$1;
2086
3007
  exports.UntagResourceCommand = UntagResourceCommand;
2087
3008
  exports.UpdateCellCommand = UpdateCellCommand;
2088
3009
  exports.UpdateReadinessCheckCommand = UpdateReadinessCheckCommand;
2089
3010
  exports.UpdateRecoveryGroupCommand = UpdateRecoveryGroupCommand;
2090
3011
  exports.UpdateResourceSetCommand = UpdateResourceSetCommand;
2091
- exports.ValidationException = ValidationException;
3012
+ exports.ValidationException = ValidationException$1;
2092
3013
  exports.paginateGetCellReadinessSummary = paginateGetCellReadinessSummary;
2093
3014
  exports.paginateGetReadinessCheckResourceStatus = paginateGetReadinessCheckResourceStatus;
2094
3015
  exports.paginateGetReadinessCheckStatus = paginateGetReadinessCheckStatus;