@aws-sdk/client-drs 3.1111.0 → 3.1112.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 (94) hide show
  1. package/README.md +147 -7
  2. package/dist-cjs/index.js +715 -5
  3. package/dist-es/Drs.js +48 -0
  4. package/dist-es/commands/CancelRecoveryPlanExecutionCommand.js +4 -0
  5. package/dist-es/commands/CreateRecoveryPlanCommand.js +4 -0
  6. package/dist-es/commands/CreateRecoveryPlanStepCommand.js +4 -0
  7. package/dist-es/commands/DeleteRecoveryPlanCommand.js +4 -0
  8. package/dist-es/commands/DeleteRecoveryPlanExecutionCommand.js +4 -0
  9. package/dist-es/commands/DeleteRecoveryPlanStepCommand.js +4 -0
  10. package/dist-es/commands/GetRecoveryPlanCommand.js +4 -0
  11. package/dist-es/commands/GetRecoveryPlanExecutionCommand.js +4 -0
  12. package/dist-es/commands/GetRecoveryPlanExecutionStepCommand.js +4 -0
  13. package/dist-es/commands/GetRecoveryPlanStepCommand.js +4 -0
  14. package/dist-es/commands/ListRecoveryPlanExecutionStepsCommand.js +4 -0
  15. package/dist-es/commands/ListRecoveryPlanExecutionsCommand.js +4 -0
  16. package/dist-es/commands/ListRecoveryPlanStepsCommand.js +4 -0
  17. package/dist-es/commands/ListRecoveryPlansCommand.js +4 -0
  18. package/dist-es/commands/ReorderRecoveryPlanStepsCommand.js +4 -0
  19. package/dist-es/commands/RetryRecoveryPlanExecutionStepCommand.js +4 -0
  20. package/dist-es/commands/StartRecoveryPlanExecutionCommand.js +4 -0
  21. package/dist-es/commands/UpdateRecoveryPlanCommand.js +4 -0
  22. package/dist-es/commands/UpdateRecoveryPlanExecutionStepCommand.js +4 -0
  23. package/dist-es/commands/UpdateRecoveryPlanStepCommand.js +4 -0
  24. package/dist-es/commands/index.js +20 -0
  25. package/dist-es/models/enums.js +29 -0
  26. package/dist-es/pagination/ListRecoveryPlanExecutionStepsPaginator.js +4 -0
  27. package/dist-es/pagination/ListRecoveryPlanExecutionsPaginator.js +4 -0
  28. package/dist-es/pagination/ListRecoveryPlanStepsPaginator.js +4 -0
  29. package/dist-es/pagination/ListRecoveryPlansPaginator.js +4 -0
  30. package/dist-es/pagination/index.js +4 -0
  31. package/dist-es/schemas/schemas_0.js +488 -4
  32. package/dist-types/Drs.d.ts +170 -0
  33. package/dist-types/DrsClient.d.ts +22 -2
  34. package/dist-types/commands/CancelRecoveryPlanExecutionCommand.d.ts +106 -0
  35. package/dist-types/commands/CreateRecoveryPlanCommand.d.ts +107 -0
  36. package/dist-types/commands/CreateRecoveryPlanStepCommand.d.ts +130 -0
  37. package/dist-types/commands/DeleteRecoveryPlanCommand.d.ts +92 -0
  38. package/dist-types/commands/DeleteRecoveryPlanExecutionCommand.d.ts +92 -0
  39. package/dist-types/commands/DeleteRecoveryPlanStepCommand.d.ts +92 -0
  40. package/dist-types/commands/GetRecoveryPlanCommand.d.ts +99 -0
  41. package/dist-types/commands/GetRecoveryPlanExecutionCommand.d.ts +103 -0
  42. package/dist-types/commands/GetRecoveryPlanExecutionStepCommand.d.ts +115 -0
  43. package/dist-types/commands/GetRecoveryPlanStepCommand.d.ts +108 -0
  44. package/dist-types/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +120 -0
  45. package/dist-types/commands/ListRecoveryPlanExecutionsCommand.d.ts +102 -0
  46. package/dist-types/commands/ListRecoveryPlanStepsCommand.d.ts +113 -0
  47. package/dist-types/commands/ListRecoveryPlansCommand.d.ts +96 -0
  48. package/dist-types/commands/ReorderRecoveryPlanStepsCommand.d.ts +116 -0
  49. package/dist-types/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +118 -0
  50. package/dist-types/commands/StartRecoveryPlanExecutionCommand.d.ts +120 -0
  51. package/dist-types/commands/UpdateRecoveryPlanCommand.d.ts +104 -0
  52. package/dist-types/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +126 -0
  53. package/dist-types/commands/UpdateRecoveryPlanStepCommand.d.ts +125 -0
  54. package/dist-types/commands/index.d.ts +20 -0
  55. package/dist-types/models/enums.d.ts +69 -0
  56. package/dist-types/models/models_0.d.ts +1049 -2
  57. package/dist-types/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/ListRecoveryPlanStepsPaginator.d.ts +7 -0
  60. package/dist-types/pagination/ListRecoveryPlansPaginator.d.ts +7 -0
  61. package/dist-types/pagination/index.d.ts +4 -0
  62. package/dist-types/schemas/schemas_0.d.ts +77 -0
  63. package/dist-types/ts3.4/Drs.d.ts +370 -0
  64. package/dist-types/ts3.4/DrsClient.d.ts +120 -0
  65. package/dist-types/ts3.4/commands/CancelRecoveryPlanExecutionCommand.d.ts +42 -0
  66. package/dist-types/ts3.4/commands/CreateRecoveryPlanCommand.d.ts +39 -0
  67. package/dist-types/ts3.4/commands/CreateRecoveryPlanStepCommand.d.ts +39 -0
  68. package/dist-types/ts3.4/commands/DeleteRecoveryPlanCommand.d.ts +39 -0
  69. package/dist-types/ts3.4/commands/DeleteRecoveryPlanExecutionCommand.d.ts +42 -0
  70. package/dist-types/ts3.4/commands/DeleteRecoveryPlanStepCommand.d.ts +39 -0
  71. package/dist-types/ts3.4/commands/GetRecoveryPlanCommand.d.ts +38 -0
  72. package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionCommand.d.ts +42 -0
  73. package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionStepCommand.d.ts +42 -0
  74. package/dist-types/ts3.4/commands/GetRecoveryPlanStepCommand.d.ts +39 -0
  75. package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +42 -0
  76. package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionsCommand.d.ts +42 -0
  77. package/dist-types/ts3.4/commands/ListRecoveryPlanStepsCommand.d.ts +39 -0
  78. package/dist-types/ts3.4/commands/ListRecoveryPlansCommand.d.ts +39 -0
  79. package/dist-types/ts3.4/commands/ReorderRecoveryPlanStepsCommand.d.ts +42 -0
  80. package/dist-types/ts3.4/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +42 -0
  81. package/dist-types/ts3.4/commands/StartRecoveryPlanExecutionCommand.d.ts +42 -0
  82. package/dist-types/ts3.4/commands/UpdateRecoveryPlanCommand.d.ts +39 -0
  83. package/dist-types/ts3.4/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +42 -0
  84. package/dist-types/ts3.4/commands/UpdateRecoveryPlanStepCommand.d.ts +39 -0
  85. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  86. package/dist-types/ts3.4/models/enums.d.ts +38 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +299 -0
  88. package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +11 -0
  90. package/dist-types/ts3.4/pagination/ListRecoveryPlanStepsPaginator.d.ts +11 -0
  91. package/dist-types/ts3.4/pagination/ListRecoveryPlansPaginator.d.ts +11 -0
  92. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  93. package/dist-types/ts3.4/schemas/schemas_0.d.ts +77 -0
  94. package/package.json +1 -1
@@ -16,6 +16,15 @@ const _CP = "ConversionProperties";
16
16
  const _CPU = "CPU";
17
17
  const _CRCT = "CreateReplicationConfigurationTemplate";
18
18
  const _CRCTR = "CreateReplicationConfigurationTemplateRequest";
19
+ const _CRP = "CreateRecoveryPlan";
20
+ const _CRPE = "CancelRecoveryPlanExecution";
21
+ const _CRPER = "CancelRecoveryPlanExecutionRequest";
22
+ const _CRPERa = "CancelRecoveryPlanExecutionResponse";
23
+ const _CRPR = "CreateRecoveryPlanRequest";
24
+ const _CRPRr = "CreateRecoveryPlanResponse";
25
+ const _CRPS = "CreateRecoveryPlanStep";
26
+ const _CRPSR = "CreateRecoveryPlanStepRequest";
27
+ const _CRPSRr = "CreateRecoveryPlanStepResponse";
19
28
  const _CSN = "CfnStackName";
20
29
  const _CSNR = "CreateSourceNetworkRequest";
21
30
  const _CSNRr = "CreateSourceNetworkResponse";
@@ -62,6 +71,15 @@ const _DRIa = "DataReplicationInitiation";
62
71
  const _DRIe = "DeleteRecoveryInstance";
63
72
  const _DRIes = "DescribeRecoveryInstances";
64
73
  const _DRIi = "DisconnectRecoveryInstance";
74
+ const _DRP = "DeleteRecoveryPlan";
75
+ const _DRPE = "DeleteRecoveryPlanExecution";
76
+ const _DRPER = "DeleteRecoveryPlanExecutionRequest";
77
+ const _DRPERe = "DeleteRecoveryPlanExecutionResponse";
78
+ const _DRPR = "DeleteRecoveryPlanRequest";
79
+ const _DRPRe = "DeleteRecoveryPlanResponse";
80
+ const _DRPS = "DeleteRecoveryPlanStep";
81
+ const _DRPSR = "DeleteRecoveryPlanStepRequest";
82
+ const _DRPSRe = "DeleteRecoveryPlanStepResponse";
65
83
  const _DRS = "DescribeRecoverySnapshots";
66
84
  const _DRSR = "DescribeRecoverySnapshotsRequest";
67
85
  const _DRSRF = "DescribeRecoverySnapshotsRequestFilters";
@@ -83,10 +101,12 @@ const _DSSRi = "DisconnectSourceServerRequest";
83
101
  const _DSSe = "DescribeSourceServers";
84
102
  const _DSSi = "DisconnectSourceServer";
85
103
  const _Di = "Disks";
104
+ const _ED = "ErrorDetail";
86
105
  const _ERD = "EventResourceData";
87
106
  const _ESNCT = "ExportSourceNetworkCfnTemplate";
88
107
  const _ESNCTR = "ExportSourceNetworkCfnTemplateRequest";
89
108
  const _ESNCTRx = "ExportSourceNetworkCfnTemplateResponse";
109
+ const _ESSC = "ExecutionServerStepConfiguration";
90
110
  const _GFRC = "GetFailbackReplicationConfiguration";
91
111
  const _GFRCR = "GetFailbackReplicationConfigurationRequest";
92
112
  const _GFRCRe = "GetFailbackReplicationConfigurationResponse";
@@ -94,6 +114,18 @@ const _GLC = "GetLaunchConfiguration";
94
114
  const _GLCR = "GetLaunchConfigurationRequest";
95
115
  const _GRC = "GetReplicationConfiguration";
96
116
  const _GRCR = "GetReplicationConfigurationRequest";
117
+ const _GRP = "GetRecoveryPlan";
118
+ const _GRPE = "GetRecoveryPlanExecution";
119
+ const _GRPER = "GetRecoveryPlanExecutionRequest";
120
+ const _GRPERe = "GetRecoveryPlanExecutionResponse";
121
+ const _GRPES = "GetRecoveryPlanExecutionStep";
122
+ const _GRPESR = "GetRecoveryPlanExecutionStepRequest";
123
+ const _GRPESRe = "GetRecoveryPlanExecutionStepResponse";
124
+ const _GRPR = "GetRecoveryPlanRequest";
125
+ const _GRPRe = "GetRecoveryPlanResponse";
126
+ const _GRPS = "GetRecoveryPlanStep";
127
+ const _GRPSR = "GetRecoveryPlanStepRequest";
128
+ const _GRPSRe = "GetRecoveryPlanStepResponse";
97
129
  const _IH = "IdentificationHints";
98
130
  const _IS = "InitializeService";
99
131
  const _ISE = "InternalServerException";
@@ -126,6 +158,19 @@ const _LIIP = "LaunchIntoInstanceProperties";
126
158
  const _LLA = "ListLaunchActions";
127
159
  const _LLAR = "ListLaunchActionsRequest";
128
160
  const _LLARi = "ListLaunchActionsResponse";
161
+ const _LRP = "ListRecoveryPlans";
162
+ const _LRPE = "ListRecoveryPlanExecutions";
163
+ const _LRPER = "ListRecoveryPlanExecutionsRequest";
164
+ const _LRPERi = "ListRecoveryPlanExecutionsResponse";
165
+ const _LRPES = "ListRecoveryPlanExecutionSteps";
166
+ const _LRPESF = "ListRecoveryPlanExecutionStepsFilter";
167
+ const _LRPESR = "ListRecoveryPlanExecutionStepsRequest";
168
+ const _LRPESRi = "ListRecoveryPlanExecutionStepsResponse";
169
+ const _LRPR = "ListRecoveryPlansRequest";
170
+ const _LRPRi = "ListRecoveryPlansResponse";
171
+ const _LRPS = "ListRecoveryPlanSteps";
172
+ const _LRPSR = "ListRecoveryPlanStepsRequest";
173
+ const _LRPSRi = "ListRecoveryPlanStepsResponse";
129
174
  const _LSA = "ListStagingAccounts";
130
175
  const _LSAR = "ListStagingAccountsRequest";
131
176
  const _LSARi = "ListStagingAccountsResponse";
@@ -169,7 +214,32 @@ const _RIF = "RecoveryInstanceFailback";
169
214
  const _RIP = "RecoveryInstanceProperties";
170
215
  const _RLC = "RecoveryLifeCycle";
171
216
  const _RNFE = "ResourceNotFoundException";
217
+ const _RP = "RecoveryPlan";
218
+ const _RPE = "RecoveryPlanExecution";
219
+ const _RPES = "RecoveryPlanExecutionServer";
220
+ const _RPESC = "RecoveryPlanExecutionStepConfiguration";
221
+ const _RPESL = "RecoveryPlanExecutionSummaryList";
222
+ const _RPESS = "RecoveryPlanExecutionSourceServer";
223
+ const _RPESSL = "RecoveryPlanExecutionSourceServerList";
224
+ const _RPESSLe = "RecoveryPlanExecutionStepSummaryList";
225
+ const _RPESSe = "RecoveryPlanExecutionStepSummary";
226
+ const _RPESe = "RecoveryPlanExecutionStep";
227
+ const _RPESec = "RecoveryPlanExecutionSummary";
228
+ const _RPESeco = "RecoveryPlanExecutionServers";
229
+ const _RPS = "RecoveryPlanServer";
230
+ const _RPSC = "RecoveryPlanStepConfiguration";
231
+ const _RPSL = "RecoveryPlanStepList";
232
+ const _RPSLe = "RecoveryPlanSummaryList";
233
+ const _RPSe = "RecoveryPlanStep";
234
+ const _RPSec = "RecoveryPlanSummary";
235
+ const _RPSeco = "RecoveryPlanServers";
172
236
  const _RR = "ReverseReplication";
237
+ const _RRPES = "RetryRecoveryPlanExecutionStep";
238
+ const _RRPESR = "RetryRecoveryPlanExecutionStepRequest";
239
+ const _RRPESRe = "RetryRecoveryPlanExecutionStepResponse";
240
+ const _RRPS = "ReorderRecoveryPlanSteps";
241
+ const _RRPSR = "ReorderRecoveryPlanStepsRequest";
242
+ const _RRPSRe = "ReorderRecoveryPlanStepsResponse";
173
243
  const _RRR = "ReverseReplicationRequest";
174
244
  const _RRRe = "ReverseReplicationResponse";
175
245
  const _RS = "RecoverySnapshot";
@@ -188,6 +258,9 @@ const _SNL = "SourceNetworksList";
188
258
  const _SP = "SourceProperties";
189
259
  const _SQEE = "ServiceQuotaExceededException";
190
260
  const _SR = "StartRecovery";
261
+ const _SRPE = "StartRecoveryPlanExecution";
262
+ const _SRPER = "StartRecoveryPlanExecutionRequest";
263
+ const _SRPERt = "StartRecoveryPlanExecutionResponse";
191
264
  const _SRR = "StartRecoveryRequest";
192
265
  const _SRRSS = "StartRecoveryRequestSourceServer";
193
266
  const _SRRSSt = "StartRecoveryRequestSourceServers";
@@ -199,6 +272,7 @@ const _SRRtop = "StopReplicationResponse";
199
272
  const _SRt = "StartReplication";
200
273
  const _SRto = "StopReplication";
201
274
  const _SS = "SourceServer";
275
+ const _SSC = "ServerStepConfiguration";
202
276
  const _SSL = "SourceServersList";
203
277
  const _SSNR = "StartSourceNetworkRecovery";
204
278
  const _SSNRR = "StartSourceNetworkRecoveryRequest";
@@ -234,12 +308,22 @@ const _URC = "UpdateReplicationConfiguration";
234
308
  const _URCR = "UpdateReplicationConfigurationRequest";
235
309
  const _URCT = "UpdateReplicationConfigurationTemplate";
236
310
  const _URCTR = "UpdateReplicationConfigurationTemplateRequest";
311
+ const _URP = "UpdateRecoveryPlan";
312
+ const _URPES = "UpdateRecoveryPlanExecutionStep";
313
+ const _URPESR = "UpdateRecoveryPlanExecutionStepRequest";
314
+ const _URPESRp = "UpdateRecoveryPlanExecutionStepResponse";
315
+ const _URPR = "UpdateRecoveryPlanRequest";
316
+ const _URPRp = "UpdateRecoveryPlanResponse";
317
+ const _URPS = "UpdateRecoveryPlanStep";
318
+ const _URPSR = "UpdateRecoveryPlanStepRequest";
319
+ const _URPSRp = "UpdateRecoveryPlanStepResponse";
237
320
  const _URR = "UntagResourceRequest";
238
321
  const _VE = "ValidationException";
239
322
  const _VEF = "ValidationExceptionField";
240
323
  const _VEFL = "ValidationExceptionFieldList";
241
324
  const _VTCM = "VolumeToConversionMap";
242
325
  const _VTPC = "VolumeToProductCodes";
326
+ const _WSC = "WaitStepConfiguration";
243
327
  const _a = "arn";
244
328
  const _aC = "attemptCount";
245
329
  const _aCDT = "apiCallDateTime";
@@ -257,10 +341,13 @@ const _aVg = "agentVersion";
257
341
  const _ac = "active";
258
342
  const _acc = "accounts";
259
343
  const _act = "action";
344
+ const _at = "attempt";
260
345
  const _b = "bytes";
261
346
  const _bSB = "backloggedStorageBytes";
262
347
  const _bT = "bandwidthThrottling";
263
348
  const _c = "client";
349
+ const _cA = "createdAt";
350
+ const _cAo = "completedAt";
264
351
  const _cDT = "creationDateTime";
265
352
  const _cP = "conversionProperties";
266
353
  const _cPI = "copyPrivateIp";
@@ -268,8 +355,10 @@ const _cPIP = "createPublicIP";
268
355
  const _cSID = "conversionServerID";
269
356
  const _cSN = "cfnStackName";
270
357
  const _cT = "copyTags";
358
+ const _cTl = "clientToken";
271
359
  const _ca = "category";
272
360
  const _co = "code";
361
+ const _con = "configuration";
273
362
  const _cor = "cores";
274
363
  const _cp = "cpus";
275
364
  const _d = "description";
@@ -288,6 +377,7 @@ const _eBA = "exportBucketArn";
288
377
  const _eD = "eventData";
289
378
  const _eDT = "etaDateTime";
290
379
  const _eDTn = "endDateTime";
380
+ const _eDr = "errorDetail";
291
381
  const _eE = "ebsEncryption";
292
382
  const _eEKA = "ebsEncryptionKeyArn";
293
383
  const _eIID = "ec2InstanceID";
@@ -297,6 +387,7 @@ const _eM = "errorMessage";
297
387
  const _eRD = "eventResourceData";
298
388
  const _eRDl = "elapsedReplicationDuration";
299
389
  const _eS = "ebsSnapshots";
390
+ const _eSSC = "executionServerStepConfiguration";
300
391
  const _eT = "expectedTimestamp";
301
392
  const _eVID = "ebsVolumeID";
302
393
  const _en = "enabled";
@@ -316,6 +407,7 @@ const _fS = "fullString";
316
407
  const _fTOS = "failbackToOriginalServer";
317
408
  const _fU = "forceUefi";
318
409
  const _fa = "failback";
410
+ const _fi = "filter";
319
411
  const _fq = "fqdn";
320
412
  const _h = "hostname";
321
413
  const _hE = "httpError";
@@ -329,6 +421,7 @@ const _iBD = "isBootDisk";
329
421
  const _iD = "isDrill";
330
422
  const _iDN = "internalDeviceName";
331
423
  const _iH = "identificationHints";
424
+ const _iL = "impactLevel";
332
425
  const _iP = "internetProtocol";
333
426
  const _iPs = "isPrimary";
334
427
  const _in = "initiated";
@@ -363,6 +456,7 @@ const _mA = "macAddress";
363
456
  const _mAC = "maxAttemptsCount";
364
457
  const _mN = "modelName";
365
458
  const _mR = "maxResults";
459
+ const _mo = "mode";
366
460
  const _n = "name";
367
461
  const _nADT = "nextAttemptDateTime";
368
462
  const _nI = "networkInterfaces";
@@ -373,6 +467,7 @@ const _oAZ = "originAvailabilityZone";
373
467
  const _oB = "osByol";
374
468
  const _oE = "originEnvironment";
375
469
  const _oR = "originRegion";
470
+ const _oSA = "orderedStepArns";
376
471
  const _oSDT = "optimizedStagingDiskType";
377
472
  const _op = "optional";
378
473
  const _os = "os";
@@ -406,6 +501,18 @@ const _rIP = "recoveryInstanceProperties";
406
501
  const _rIT = "recommendedInstanceType";
407
502
  const _rIu = "runId";
408
503
  const _rM = "recoveryMode";
504
+ const _rP = "recoveryPlan";
505
+ const _rPA = "recoveryPlanArn";
506
+ const _rPE = "recoveryPlanExecution";
507
+ const _rPEA = "recoveryPlanExecutionArn";
508
+ const _rPES = "recoveryPlanExecutionStep";
509
+ const _rPESA = "recoveryPlanExecutionStepArn";
510
+ const _rPESe = "recoveryPlanExecutionSteps";
511
+ const _rPEe = "recoveryPlanExecutions";
512
+ const _rPS = "recoveryPlanStep";
513
+ const _rPSA = "recoveryPlanStepArn";
514
+ const _rPSe = "recoveryPlanSteps";
515
+ const _rPe = "recoveryPlans";
409
516
  const _rS = "replicationStatus";
410
517
  const _rSB = "replicatedStorageBytes";
411
518
  const _rSBe = "rescannedStorageBytes";
@@ -417,7 +524,7 @@ const _rT = "resourceType";
417
524
  const _rVN = "rootVolumeName";
418
525
  const _ru = "runs";
419
526
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.drs";
420
- const _sA = "stagingArea";
527
+ const _sA = "startedAt";
421
528
  const _sADD = "ssmAgentDiscoveryDatetime";
422
529
  const _sAID = "stagingAccountIDs";
423
530
  const _sAIDo = "sourceAccountID";
@@ -425,25 +532,31 @@ const _sAIDt = "stagingAccountID";
425
532
  const _sASI = "stagingAreaSubnetId";
426
533
  const _sAT = "stagingAreaTags";
427
534
  const _sAZ = "stagingAvailabilityZone";
535
+ const _sAe = "serverArn";
536
+ const _sAt = "stagingArea";
428
537
  const _sC = "serviceCode";
429
538
  const _sCP = "sourceCloudProperties";
430
539
  const _sDT = "startDateTime";
431
540
  const _sDTt = "stagingDiskType";
432
541
  const _sDU = "s3DestinationUrl";
542
+ const _sI = "stepIndex";
433
543
  const _sID = "snapshotID";
434
- const _sN = "stackName";
544
+ const _sN = "stepName";
435
545
  const _sND = "sourceNetworkData";
436
546
  const _sNI = "supportsNitroInstances";
437
547
  const _sNID = "sourceNetworkID";
438
548
  const _sNIDo = "sourceNetworkIDs";
439
549
  const _sNo = "sourceNetworks";
440
550
  const _sNou = "sourceNetwork";
551
+ const _sNt = "stackName";
552
+ const _sO = "stepOrder";
441
553
  const _sOA = "stagingOutpostArn";
442
554
  const _sOAo = "sourceOutpostArn";
443
555
  const _sP = "sourceProperties";
444
556
  const _sR = "sourceRegion";
445
557
  const _sS = "sourceServer";
446
558
  const _sSA = "sourceServerArn";
559
+ const _sSC = "serverStepConfiguration";
447
560
  const _sSID = "sourceServerID";
448
561
  const _sSIDo = "sourceServerIDs";
449
562
  const _sSSA = "stagingSourceServerArn";
@@ -451,6 +564,7 @@ const _sSo = "sourceServers";
451
564
  const _sV = "sourceVpc";
452
565
  const _sVID = "sourceVpcID";
453
566
  const _se = "server";
567
+ const _ser = "servers";
454
568
  const _st = "steps";
455
569
  const _sta = "status";
456
570
  const _stat = "state";
@@ -466,6 +580,7 @@ const _th = "throughput";
466
580
  const _ti = "timestamp";
467
581
  const _ty = "type";
468
582
  const _u = "units";
583
+ const _uA = "updatedAt";
469
584
  const _uDRS = "useDedicatedReplicationServer";
470
585
  const _uPIP = "usePrivateIP";
471
586
  const _v = "value";
@@ -475,6 +590,8 @@ const _vTCM = "volumeToConversionMap";
475
590
  const _vTPC = "volumeToProductCodes";
476
591
  const _vTVS = "volumeToVolumeSize";
477
592
  const _vWU = "vmWareUuid";
593
+ const _wDM = "waitDurationMinutes";
594
+ const _wSC = "waitStepConfiguration";
478
595
  const n0 = "com.amazonaws.drs";
479
596
  import { TypeRegistry } from "@smithy/core/schema";
480
597
  import { DrsServiceException } from "../models/DrsServiceException";
@@ -552,6 +669,16 @@ export var AssociateSourceNetworkStackResponse$ = [3, n0, _ASNSRs,
552
669
  [_j],
553
670
  [[() => Job$, 0]]
554
671
  ];
672
+ export var CancelRecoveryPlanExecutionRequest$ = [3, n0, _CRPER,
673
+ 0,
674
+ [_rPEA],
675
+ [0], 1
676
+ ];
677
+ export var CancelRecoveryPlanExecutionResponse$ = [3, n0, _CRPERa,
678
+ 0,
679
+ [_rPE],
680
+ [[() => RecoveryPlanExecution$, 0]], 1
681
+ ];
555
682
  export var ConversionProperties$ = [3, n0, _CP,
556
683
  0,
557
684
  [_vTCM, _rVN, _fU, _dT, _vTVS, _vTPC],
@@ -582,6 +709,26 @@ export var CreateLaunchConfigurationTemplateResponse$ = [3, n0, _CLCTRr,
582
709
  [_lCT],
583
710
  [[() => LaunchConfigurationTemplate$, 0]]
584
711
  ];
712
+ export var CreateRecoveryPlanRequest$ = [3, n0, _CRPR,
713
+ 0,
714
+ [_n, _d, _cTl, _t],
715
+ [0, 0, [0, 4], [() => TagsMap, 0]], 1
716
+ ];
717
+ export var CreateRecoveryPlanResponse$ = [3, n0, _CRPRr,
718
+ 0,
719
+ [_rP],
720
+ [[() => RecoveryPlan$, 0]], 1
721
+ ];
722
+ export var CreateRecoveryPlanStepRequest$ = [3, n0, _CRPSR,
723
+ 0,
724
+ [_rPA, _sN, _con, _sO, _cTl],
725
+ [0, 0, () => RecoveryPlanStepConfiguration$, 1, [0, 4]], 3
726
+ ];
727
+ export var CreateRecoveryPlanStepResponse$ = [3, n0, _CRPSRr,
728
+ 0,
729
+ [_rPS],
730
+ [() => RecoveryPlanStep$], 1
731
+ ];
585
732
  export var CreateReplicationConfigurationTemplateRequest$ = [3, n0, _CRCTR,
586
733
  0,
587
734
  [_sASI, _rSSGID, _eE, _bT, _sAT, _pP, _aDSG, _rSIT, _uDRS, _dLSDT, _eEKA, _dPR, _cPIP, _t, _aRND, _iP],
@@ -657,6 +804,36 @@ export var DeleteRecoveryInstanceRequest$ = [3, n0, _DRIR,
657
804
  [_rIID],
658
805
  [0], 1
659
806
  ];
807
+ export var DeleteRecoveryPlanExecutionRequest$ = [3, n0, _DRPER,
808
+ 0,
809
+ [_rPEA],
810
+ [0], 1
811
+ ];
812
+ export var DeleteRecoveryPlanExecutionResponse$ = [3, n0, _DRPERe,
813
+ 0,
814
+ [_rPEA],
815
+ [0], 1
816
+ ];
817
+ export var DeleteRecoveryPlanRequest$ = [3, n0, _DRPR,
818
+ 0,
819
+ [_rPA],
820
+ [0], 1
821
+ ];
822
+ export var DeleteRecoveryPlanResponse$ = [3, n0, _DRPRe,
823
+ 0,
824
+ [_rPA],
825
+ [0], 1
826
+ ];
827
+ export var DeleteRecoveryPlanStepRequest$ = [3, n0, _DRPSR,
828
+ 0,
829
+ [_rPSA],
830
+ [0], 1
831
+ ];
832
+ export var DeleteRecoveryPlanStepResponse$ = [3, n0, _DRPSRe,
833
+ 0,
834
+ [_rPSA],
835
+ [0], 1
836
+ ];
660
837
  export var DeleteReplicationConfigurationTemplateRequest$ = [3, n0, _DRCTR,
661
838
  0,
662
839
  [_rCTID],
@@ -807,6 +984,16 @@ export var Disk$ = [3, n0, _D,
807
984
  [_dN, _b],
808
985
  [0, 1]
809
986
  ];
987
+ export var ErrorDetail$ = [3, n0, _ED,
988
+ 0,
989
+ [_m, _co],
990
+ [0, 0], 2
991
+ ];
992
+ export var ExecutionServerStepConfiguration$ = [3, n0, _ESSC,
993
+ 0,
994
+ [_ser],
995
+ [() => RecoveryPlanExecutionServers], 1
996
+ ];
810
997
  export var ExportSourceNetworkCfnTemplateRequest$ = [3, n0, _ESNCTR,
811
998
  0,
812
999
  [_sNID],
@@ -832,6 +1019,46 @@ export var GetLaunchConfigurationRequest$ = [3, n0, _GLCR,
832
1019
  [_sSID],
833
1020
  [0], 1
834
1021
  ];
1022
+ export var GetRecoveryPlanExecutionRequest$ = [3, n0, _GRPER,
1023
+ 0,
1024
+ [_rPEA],
1025
+ [0], 1
1026
+ ];
1027
+ export var GetRecoveryPlanExecutionResponse$ = [3, n0, _GRPERe,
1028
+ 0,
1029
+ [_rPE],
1030
+ [[() => RecoveryPlanExecution$, 0]], 1
1031
+ ];
1032
+ export var GetRecoveryPlanExecutionStepRequest$ = [3, n0, _GRPESR,
1033
+ 0,
1034
+ [_rPESA],
1035
+ [0], 1
1036
+ ];
1037
+ export var GetRecoveryPlanExecutionStepResponse$ = [3, n0, _GRPESRe,
1038
+ 0,
1039
+ [_rPES],
1040
+ [() => RecoveryPlanExecutionStep$], 1
1041
+ ];
1042
+ export var GetRecoveryPlanRequest$ = [3, n0, _GRPR,
1043
+ 0,
1044
+ [_rPA],
1045
+ [0], 1
1046
+ ];
1047
+ export var GetRecoveryPlanResponse$ = [3, n0, _GRPRe,
1048
+ 0,
1049
+ [_rP],
1050
+ [[() => RecoveryPlan$, 0]], 1
1051
+ ];
1052
+ export var GetRecoveryPlanStepRequest$ = [3, n0, _GRPSR,
1053
+ 0,
1054
+ [_rPSA],
1055
+ [0], 1
1056
+ ];
1057
+ export var GetRecoveryPlanStepResponse$ = [3, n0, _GRPSRe,
1058
+ 0,
1059
+ [_rPS],
1060
+ [() => RecoveryPlanStep$], 1
1061
+ ];
835
1062
  export var GetReplicationConfigurationRequest$ = [3, n0, _GRCR,
836
1063
  0,
837
1064
  [_sSID],
@@ -947,6 +1174,51 @@ export var ListLaunchActionsResponse$ = [3, n0, _LLARi,
947
1174
  [_i, _nT],
948
1175
  [() => LaunchActions, 0]
949
1176
  ];
1177
+ export var ListRecoveryPlanExecutionsRequest$ = [3, n0, _LRPER,
1178
+ 0,
1179
+ [_rPA, _sta, _mR, _nT],
1180
+ [0, 0, 1, 0]
1181
+ ];
1182
+ export var ListRecoveryPlanExecutionsResponse$ = [3, n0, _LRPERi,
1183
+ 0,
1184
+ [_rPEe, _nT],
1185
+ [() => RecoveryPlanExecutionSummaryList, 0], 1
1186
+ ];
1187
+ export var ListRecoveryPlanExecutionStepsFilter$ = [3, n0, _LRPESF,
1188
+ 0,
1189
+ [_sta],
1190
+ [0]
1191
+ ];
1192
+ export var ListRecoveryPlanExecutionStepsRequest$ = [3, n0, _LRPESR,
1193
+ 0,
1194
+ [_rPEA, _fi, _mR, _nT],
1195
+ [0, () => ListRecoveryPlanExecutionStepsFilter$, 1, 0], 1
1196
+ ];
1197
+ export var ListRecoveryPlanExecutionStepsResponse$ = [3, n0, _LRPESRi,
1198
+ 0,
1199
+ [_rPESe, _nT],
1200
+ [() => RecoveryPlanExecutionStepSummaryList, 0], 1
1201
+ ];
1202
+ export var ListRecoveryPlansRequest$ = [3, n0, _LRPR,
1203
+ 0,
1204
+ [_mR, _nT],
1205
+ [1, 0]
1206
+ ];
1207
+ export var ListRecoveryPlansResponse$ = [3, n0, _LRPRi,
1208
+ 0,
1209
+ [_rPe, _nT],
1210
+ [() => RecoveryPlanSummaryList, 0], 1
1211
+ ];
1212
+ export var ListRecoveryPlanStepsRequest$ = [3, n0, _LRPSR,
1213
+ 0,
1214
+ [_rPA, _mR, _nT],
1215
+ [0, 1, 0], 1
1216
+ ];
1217
+ export var ListRecoveryPlanStepsResponse$ = [3, n0, _LRPSRi,
1218
+ 0,
1219
+ [_rPSe, _nT],
1220
+ [() => RecoveryPlanStepList, 0], 1
1221
+ ];
950
1222
  export var ListStagingAccountsRequest$ = [3, n0, _LSAR,
951
1223
  0,
952
1224
  [_mR, _nT],
@@ -1057,11 +1329,71 @@ export var RecoveryLifeCycle$ = [3, n0, _RLC,
1057
1329
  [_aCDT, _jID, _lRR],
1058
1330
  [5, 0, 0]
1059
1331
  ];
1332
+ export var RecoveryPlan$ = [3, n0, _RP,
1333
+ 0,
1334
+ [_rPA, _n, _sta, _cA, _uA, _d, _t],
1335
+ [0, 0, 0, 0, 0, 0, [() => TagsMap, 0]], 5
1336
+ ];
1337
+ export var RecoveryPlanExecution$ = [3, n0, _RPE,
1338
+ 0,
1339
+ [_rPEA, _rPA, _mo, _sta, _sA, _cAo, _eDr, _t],
1340
+ [0, 0, 0, 0, 0, 0, () => ErrorDetail$, [() => TagsMap, 0]], 5
1341
+ ];
1342
+ export var RecoveryPlanExecutionServer$ = [3, n0, _RPES,
1343
+ 0,
1344
+ [_sAe, _iL, _jID],
1345
+ [0, 0, 0], 1
1346
+ ];
1347
+ export var RecoveryPlanExecutionSourceServer$ = [3, n0, _RPESS,
1348
+ 0,
1349
+ [_sSID, _rSID],
1350
+ [0, 0], 2
1351
+ ];
1352
+ export var RecoveryPlanExecutionStep$ = [3, n0, _RPESe,
1353
+ 0,
1354
+ [_rPESA, _sI, _sta, _sN, _con, _at, _cA, _uA, _eDr],
1355
+ [0, 1, 0, 0, () => RecoveryPlanExecutionStepConfiguration$, 1, 0, 0, () => ErrorDetail$], 8
1356
+ ];
1357
+ export var RecoveryPlanExecutionStepSummary$ = [3, n0, _RPESSe,
1358
+ 0,
1359
+ [_rPESA, _sN, _sI, _sta, _con, _eDr],
1360
+ [0, 0, 1, 0, () => RecoveryPlanExecutionStepConfiguration$, () => ErrorDetail$], 5
1361
+ ];
1362
+ export var RecoveryPlanExecutionSummary$ = [3, n0, _RPESec,
1363
+ 0,
1364
+ [_rPEA, _rPA, _mo, _sta, _sA, _eDr],
1365
+ [0, 0, 0, 0, 0, () => ErrorDetail$], 5
1366
+ ];
1367
+ export var RecoveryPlanServer$ = [3, n0, _RPS,
1368
+ 0,
1369
+ [_sAe, _iL],
1370
+ [0, 0], 1
1371
+ ];
1372
+ export var RecoveryPlanStep$ = [3, n0, _RPSe,
1373
+ 0,
1374
+ [_rPSA, _sO, _sN, _con, _cA, _uA],
1375
+ [0, 1, 0, () => RecoveryPlanStepConfiguration$, 0, 0], 6
1376
+ ];
1377
+ export var RecoveryPlanSummary$ = [3, n0, _RPSec,
1378
+ 0,
1379
+ [_rPA, _n, _sta, _cA, _uA],
1380
+ [0, 0, 0, 0, 0], 5
1381
+ ];
1060
1382
  export var RecoverySnapshot$ = [3, n0, _RS,
1061
1383
  0,
1062
1384
  [_sID, _sSID, _eT, _ti, _eS],
1063
1385
  [0, 0, 0, 0, 64 | 0], 3
1064
1386
  ];
1387
+ export var ReorderRecoveryPlanStepsRequest$ = [3, n0, _RRPSR,
1388
+ 0,
1389
+ [_rPA, _oSA],
1390
+ [0, 64 | 0], 2
1391
+ ];
1392
+ export var ReorderRecoveryPlanStepsResponse$ = [3, n0, _RRPSRe,
1393
+ 0,
1394
+ [_rPSe],
1395
+ [() => RecoveryPlanStepList], 1
1396
+ ];
1065
1397
  export var ReplicationConfiguration$ = [3, n0, _RC,
1066
1398
  0,
1067
1399
  [_sSID, _n, _sASI, _aDSG, _rSSGID, _rSIT, _uDRS, _dLSDT, _rD, _eE, _eEKA, _bT, _dPR, _cPIP, _sAT, _pP, _aRND, _iP],
@@ -1082,6 +1414,16 @@ export var RetryDataReplicationRequest$ = [3, n0, _RDRR,
1082
1414
  [_sSID],
1083
1415
  [0], 1
1084
1416
  ];
1417
+ export var RetryRecoveryPlanExecutionStepRequest$ = [3, n0, _RRPESR,
1418
+ 0,
1419
+ [_rPESA],
1420
+ [0], 1
1421
+ ];
1422
+ export var RetryRecoveryPlanExecutionStepResponse$ = [3, n0, _RRPESRe,
1423
+ 0,
1424
+ [_rPES],
1425
+ [() => RecoveryPlanExecutionStep$], 1
1426
+ ];
1085
1427
  export var ReverseReplicationRequest$ = [3, n0, _RRR,
1086
1428
  0,
1087
1429
  [_rIID],
@@ -1092,6 +1434,11 @@ export var ReverseReplicationResponse$ = [3, n0, _RRRe,
1092
1434
  [_rDSSA],
1093
1435
  [0]
1094
1436
  ];
1437
+ export var ServerStepConfiguration$ = [3, n0, _SSC,
1438
+ 0,
1439
+ [_ser],
1440
+ [() => RecoveryPlanServers], 1
1441
+ ];
1095
1442
  export var SourceCloudProperties$ = [3, n0, _SCP,
1096
1443
  0,
1097
1444
  [_oAID, _oR, _oAZ, _sOAo],
@@ -1104,7 +1451,7 @@ export var SourceNetwork$ = [3, n0, _SN,
1104
1451
  ];
1105
1452
  export var SourceNetworkData$ = [3, n0, _SND,
1106
1453
  0,
1107
- [_sNID, _sV, _tV, _sN],
1454
+ [_sNID, _sV, _tV, _sNt],
1108
1455
  [0, 0, 0, 0]
1109
1456
  ];
1110
1457
  export var SourceProperties$ = [3, n0, _SP,
@@ -1114,7 +1461,7 @@ export var SourceProperties$ = [3, n0, _SP,
1114
1461
  ];
1115
1462
  export var SourceServer$ = [3, n0, _SS,
1116
1463
  0,
1117
- [_sSID, _a, _t, _rII, _lLR, _dRIa, _lC, _sP, _sA, _sCP, _rDep, _rDSSA, _sNID, _aVg],
1464
+ [_sSID, _a, _t, _rII, _lLR, _dRIa, _lC, _sP, _sAt, _sCP, _rDep, _rDSSA, _sNID, _aVg],
1118
1465
  [0, 0, [() => TagsMap, 0], 0, 0, () => DataReplicationInfo$, () => LifeCycle$, () => SourceProperties$, () => StagingArea$, () => SourceCloudProperties$, 0, 0, 0, 0]
1119
1466
  ];
1120
1467
  export var StagingArea$ = [3, n0, _SA,
@@ -1137,6 +1484,16 @@ export var StartFailbackLaunchResponse$ = [3, n0, _SFLRt,
1137
1484
  [_j],
1138
1485
  [[() => Job$, 0]]
1139
1486
  ];
1487
+ export var StartRecoveryPlanExecutionRequest$ = [3, n0, _SRPER,
1488
+ 0,
1489
+ [_rPA, _mo, _cTl, _sSo, _t],
1490
+ [0, 0, [0, 4], () => RecoveryPlanExecutionSourceServerList, [() => TagsMap, 0]], 2
1491
+ ];
1492
+ export var StartRecoveryPlanExecutionResponse$ = [3, n0, _SRPERt,
1493
+ 0,
1494
+ [_rPE],
1495
+ [[() => RecoveryPlanExecution$, 0]], 1
1496
+ ];
1140
1497
  export var StartRecoveryRequest$ = [3, n0, _SRR,
1141
1498
  0,
1142
1499
  [_sSo, _iD, _t],
@@ -1252,6 +1609,36 @@ export var UpdateLaunchConfigurationTemplateResponse$ = [3, n0, _ULCTRp,
1252
1609
  [_lCT],
1253
1610
  [[() => LaunchConfigurationTemplate$, 0]]
1254
1611
  ];
1612
+ export var UpdateRecoveryPlanExecutionStepRequest$ = [3, n0, _URPESR,
1613
+ 0,
1614
+ [_rPESA, _sta, _ser, _wDM],
1615
+ [0, 0, () => RecoveryPlanServers, 1], 1
1616
+ ];
1617
+ export var UpdateRecoveryPlanExecutionStepResponse$ = [3, n0, _URPESRp,
1618
+ 0,
1619
+ [_rPES],
1620
+ [() => RecoveryPlanExecutionStep$], 1
1621
+ ];
1622
+ export var UpdateRecoveryPlanRequest$ = [3, n0, _URPR,
1623
+ 0,
1624
+ [_rPA, _n, _d],
1625
+ [0, 0, 0], 1
1626
+ ];
1627
+ export var UpdateRecoveryPlanResponse$ = [3, n0, _URPRp,
1628
+ 0,
1629
+ [_rP],
1630
+ [[() => RecoveryPlan$, 0]], 1
1631
+ ];
1632
+ export var UpdateRecoveryPlanStepRequest$ = [3, n0, _URPSR,
1633
+ 0,
1634
+ [_rPSA, _sN, _con],
1635
+ [0, 0, () => RecoveryPlanStepConfiguration$], 1
1636
+ ];
1637
+ export var UpdateRecoveryPlanStepResponse$ = [3, n0, _URPSRp,
1638
+ 0,
1639
+ [_rPS],
1640
+ [() => RecoveryPlanStep$], 1
1641
+ ];
1255
1642
  export var UpdateReplicationConfigurationRequest$ = [3, n0, _URCR,
1256
1643
  0,
1257
1644
  [_sSID, _n, _sASI, _aDSG, _rSSGID, _rSIT, _uDRS, _dLSDT, _rD, _eE, _eEKA, _bT, _dPR, _cPIP, _sAT, _pP, _aRND, _iP],
@@ -1267,6 +1654,11 @@ export var ValidationExceptionField$ = [3, n0, _VEF,
1267
1654
  [_n, _m],
1268
1655
  [0, 0]
1269
1656
  ];
1657
+ export var WaitStepConfiguration$ = [3, n0, _WSC,
1658
+ 0,
1659
+ [_wDM],
1660
+ [1], 1
1661
+ ];
1270
1662
  var __Unit = "unit";
1271
1663
  var AccountIDs = 64 | 0;
1272
1664
  var Accounts = [1, n0, _Ac,
@@ -1338,6 +1730,28 @@ var RecoveryInstanceDisks = [1, n0, _RIDe,
1338
1730
  ];
1339
1731
  var RecoveryInstanceIDs = 64 | 0;
1340
1732
  var RecoveryInstancesForTerminationRequest = 64 | 0;
1733
+ var RecoveryPlanExecutionServers = [1, n0, _RPESeco,
1734
+ 0, () => RecoveryPlanExecutionServer$
1735
+ ];
1736
+ var RecoveryPlanExecutionSourceServerList = [1, n0, _RPESSL,
1737
+ 0, () => RecoveryPlanExecutionSourceServer$
1738
+ ];
1739
+ var RecoveryPlanExecutionStepSummaryList = [1, n0, _RPESSLe,
1740
+ 0, () => RecoveryPlanExecutionStepSummary$
1741
+ ];
1742
+ var RecoveryPlanExecutionSummaryList = [1, n0, _RPESL,
1743
+ 0, () => RecoveryPlanExecutionSummary$
1744
+ ];
1745
+ var RecoveryPlanServers = [1, n0, _RPSeco,
1746
+ 0, () => RecoveryPlanServer$
1747
+ ];
1748
+ var RecoveryPlanStepArnList = 64 | 0;
1749
+ var RecoveryPlanStepList = [1, n0, _RPSL,
1750
+ 0, () => RecoveryPlanStep$
1751
+ ];
1752
+ var RecoveryPlanSummaryList = [1, n0, _RPSLe,
1753
+ 0, () => RecoveryPlanSummary$
1754
+ ];
1341
1755
  var RecoverySnapshotsList = [1, n0, _RSL,
1342
1756
  0, () => RecoverySnapshot$
1343
1757
  ];
@@ -1401,15 +1815,34 @@ export var ParticipatingResourceID$ = [4, n0, _PRID,
1401
1815
  [_sNID],
1402
1816
  [0]
1403
1817
  ];
1818
+ export var RecoveryPlanExecutionStepConfiguration$ = [4, n0, _RPESC,
1819
+ 0,
1820
+ [_eSSC, _wSC],
1821
+ [() => ExecutionServerStepConfiguration$, () => WaitStepConfiguration$]
1822
+ ];
1823
+ export var RecoveryPlanStepConfiguration$ = [4, n0, _RPSC,
1824
+ 0,
1825
+ [_sSC, _wSC],
1826
+ [() => ServerStepConfiguration$, () => WaitStepConfiguration$]
1827
+ ];
1404
1828
  export var AssociateSourceNetworkStack$ = [9, n0, _ASNS,
1405
1829
  { [_ht]: ["POST", "/AssociateSourceNetworkStack", 202] }, () => AssociateSourceNetworkStackRequest$, () => AssociateSourceNetworkStackResponse$
1406
1830
  ];
1831
+ export var CancelRecoveryPlanExecution$ = [9, n0, _CRPE,
1832
+ { [_ht]: ["POST", "/CancelRecoveryPlanExecution", 200] }, () => CancelRecoveryPlanExecutionRequest$, () => CancelRecoveryPlanExecutionResponse$
1833
+ ];
1407
1834
  export var CreateExtendedSourceServer$ = [9, n0, _CESS,
1408
1835
  { [_ht]: ["POST", "/CreateExtendedSourceServer", 201] }, () => CreateExtendedSourceServerRequest$, () => CreateExtendedSourceServerResponse$
1409
1836
  ];
1410
1837
  export var CreateLaunchConfigurationTemplate$ = [9, n0, _CLCT,
1411
1838
  { [_ht]: ["POST", "/CreateLaunchConfigurationTemplate", 201] }, () => CreateLaunchConfigurationTemplateRequest$, () => CreateLaunchConfigurationTemplateResponse$
1412
1839
  ];
1840
+ export var CreateRecoveryPlan$ = [9, n0, _CRP,
1841
+ { [_ht]: ["POST", "/CreateRecoveryPlan", 201] }, () => CreateRecoveryPlanRequest$, () => CreateRecoveryPlanResponse$
1842
+ ];
1843
+ export var CreateRecoveryPlanStep$ = [9, n0, _CRPS,
1844
+ { [_ht]: ["POST", "/CreateRecoveryPlanStep", 201] }, () => CreateRecoveryPlanStepRequest$, () => CreateRecoveryPlanStepResponse$
1845
+ ];
1413
1846
  export var CreateReplicationConfigurationTemplate$ = [9, n0, _CRCT,
1414
1847
  { [_ht]: ["POST", "/CreateReplicationConfigurationTemplate", 201] }, () => CreateReplicationConfigurationTemplateRequest$, () => ReplicationConfigurationTemplate$
1415
1848
  ];
@@ -1428,6 +1861,15 @@ export var DeleteLaunchConfigurationTemplate$ = [9, n0, _DLCT,
1428
1861
  export var DeleteRecoveryInstance$ = [9, n0, _DRIe,
1429
1862
  { [_ht]: ["POST", "/DeleteRecoveryInstance", 200] }, () => DeleteRecoveryInstanceRequest$, () => __Unit
1430
1863
  ];
1864
+ export var DeleteRecoveryPlan$ = [9, n0, _DRP,
1865
+ { [_ht]: ["POST", "/DeleteRecoveryPlan", 200] }, () => DeleteRecoveryPlanRequest$, () => DeleteRecoveryPlanResponse$
1866
+ ];
1867
+ export var DeleteRecoveryPlanExecution$ = [9, n0, _DRPE,
1868
+ { [_ht]: ["POST", "/DeleteRecoveryPlanExecution", 200] }, () => DeleteRecoveryPlanExecutionRequest$, () => DeleteRecoveryPlanExecutionResponse$
1869
+ ];
1870
+ export var DeleteRecoveryPlanStep$ = [9, n0, _DRPS,
1871
+ { [_ht]: ["POST", "/DeleteRecoveryPlanStep", 200] }, () => DeleteRecoveryPlanStepRequest$, () => DeleteRecoveryPlanStepResponse$
1872
+ ];
1431
1873
  export var DeleteReplicationConfigurationTemplate$ = [9, n0, _DRCT,
1432
1874
  { [_ht]: ["POST", "/DeleteReplicationConfigurationTemplate", 204] }, () => DeleteReplicationConfigurationTemplateRequest$, () => DeleteReplicationConfigurationTemplateResponse$
1433
1875
  ];
@@ -1476,6 +1918,18 @@ export var GetFailbackReplicationConfiguration$ = [9, n0, _GFRC,
1476
1918
  export var GetLaunchConfiguration$ = [9, n0, _GLC,
1477
1919
  { [_ht]: ["POST", "/GetLaunchConfiguration", 200] }, () => GetLaunchConfigurationRequest$, () => LaunchConfiguration$
1478
1920
  ];
1921
+ export var GetRecoveryPlan$ = [9, n0, _GRP,
1922
+ { [_ht]: ["POST", "/GetRecoveryPlan", 200] }, () => GetRecoveryPlanRequest$, () => GetRecoveryPlanResponse$
1923
+ ];
1924
+ export var GetRecoveryPlanExecution$ = [9, n0, _GRPE,
1925
+ { [_ht]: ["POST", "/GetRecoveryPlanExecution", 200] }, () => GetRecoveryPlanExecutionRequest$, () => GetRecoveryPlanExecutionResponse$
1926
+ ];
1927
+ export var GetRecoveryPlanExecutionStep$ = [9, n0, _GRPES,
1928
+ { [_ht]: ["POST", "/GetRecoveryPlanExecutionStep", 200] }, () => GetRecoveryPlanExecutionStepRequest$, () => GetRecoveryPlanExecutionStepResponse$
1929
+ ];
1930
+ export var GetRecoveryPlanStep$ = [9, n0, _GRPS,
1931
+ { [_ht]: ["POST", "/GetRecoveryPlanStep", 200] }, () => GetRecoveryPlanStepRequest$, () => GetRecoveryPlanStepResponse$
1932
+ ];
1479
1933
  export var GetReplicationConfiguration$ = [9, n0, _GRC,
1480
1934
  { [_ht]: ["POST", "/GetReplicationConfiguration", 200] }, () => GetReplicationConfigurationRequest$, () => ReplicationConfiguration$
1481
1935
  ];
@@ -1488,6 +1942,18 @@ export var ListExtensibleSourceServers$ = [9, n0, _LESS,
1488
1942
  export var ListLaunchActions$ = [9, n0, _LLA,
1489
1943
  { [_ht]: ["POST", "/ListLaunchActions", 200] }, () => ListLaunchActionsRequest$, () => ListLaunchActionsResponse$
1490
1944
  ];
1945
+ export var ListRecoveryPlanExecutions$ = [9, n0, _LRPE,
1946
+ { [_ht]: ["POST", "/ListRecoveryPlanExecutions", 200] }, () => ListRecoveryPlanExecutionsRequest$, () => ListRecoveryPlanExecutionsResponse$
1947
+ ];
1948
+ export var ListRecoveryPlanExecutionSteps$ = [9, n0, _LRPES,
1949
+ { [_ht]: ["POST", "/ListRecoveryPlanExecutionSteps", 200] }, () => ListRecoveryPlanExecutionStepsRequest$, () => ListRecoveryPlanExecutionStepsResponse$
1950
+ ];
1951
+ export var ListRecoveryPlans$ = [9, n0, _LRP,
1952
+ { [_ht]: ["POST", "/ListRecoveryPlans", 200] }, () => ListRecoveryPlansRequest$, () => ListRecoveryPlansResponse$
1953
+ ];
1954
+ export var ListRecoveryPlanSteps$ = [9, n0, _LRPS,
1955
+ { [_ht]: ["POST", "/ListRecoveryPlanSteps", 200] }, () => ListRecoveryPlanStepsRequest$, () => ListRecoveryPlanStepsResponse$
1956
+ ];
1491
1957
  export var ListStagingAccounts$ = [9, n0, _LSA,
1492
1958
  { [_ht]: ["GET", "/ListStagingAccounts", 200] }, () => ListStagingAccountsRequest$, () => ListStagingAccountsResponse$
1493
1959
  ];
@@ -1497,9 +1963,15 @@ export var ListTagsForResource$ = [9, n0, _LTFR,
1497
1963
  export var PutLaunchAction$ = [9, n0, _PLA,
1498
1964
  { [_ht]: ["POST", "/PutLaunchAction", 200] }, () => PutLaunchActionRequest$, () => PutLaunchActionResponse$
1499
1965
  ];
1966
+ export var ReorderRecoveryPlanSteps$ = [9, n0, _RRPS,
1967
+ { [_ht]: ["POST", "/ReorderRecoveryPlanSteps", 200] }, () => ReorderRecoveryPlanStepsRequest$, () => ReorderRecoveryPlanStepsResponse$
1968
+ ];
1500
1969
  export var RetryDataReplication$ = [9, n0, _RDR,
1501
1970
  { [_ht]: ["POST", "/RetryDataReplication", 200] }, () => RetryDataReplicationRequest$, () => SourceServer$
1502
1971
  ];
1972
+ export var RetryRecoveryPlanExecutionStep$ = [9, n0, _RRPES,
1973
+ { [_ht]: ["POST", "/RetryRecoveryPlanExecutionStep", 200] }, () => RetryRecoveryPlanExecutionStepRequest$, () => RetryRecoveryPlanExecutionStepResponse$
1974
+ ];
1503
1975
  export var ReverseReplication$ = [9, n0, _RR,
1504
1976
  { [_ht]: ["POST", "/ReverseReplication", 200] }, () => ReverseReplicationRequest$, () => ReverseReplicationResponse$
1505
1977
  ];
@@ -1509,6 +1981,9 @@ export var StartFailbackLaunch$ = [9, n0, _SFL,
1509
1981
  export var StartRecovery$ = [9, n0, _SR,
1510
1982
  { [_ht]: ["POST", "/StartRecovery", 202] }, () => StartRecoveryRequest$, () => StartRecoveryResponse$
1511
1983
  ];
1984
+ export var StartRecoveryPlanExecution$ = [9, n0, _SRPE,
1985
+ { [_ht]: ["POST", "/StartRecoveryPlanExecution", 201] }, () => StartRecoveryPlanExecutionRequest$, () => StartRecoveryPlanExecutionResponse$
1986
+ ];
1512
1987
  export var StartReplication$ = [9, n0, _SRt,
1513
1988
  { [_ht]: ["POST", "/StartReplication", 200] }, () => StartReplicationRequest$, () => StartReplicationResponse$
1514
1989
  ];
@@ -1545,6 +2020,15 @@ export var UpdateLaunchConfiguration$ = [9, n0, _ULC,
1545
2020
  export var UpdateLaunchConfigurationTemplate$ = [9, n0, _ULCT,
1546
2021
  { [_ht]: ["POST", "/UpdateLaunchConfigurationTemplate", 200] }, () => UpdateLaunchConfigurationTemplateRequest$, () => UpdateLaunchConfigurationTemplateResponse$
1547
2022
  ];
2023
+ export var UpdateRecoveryPlan$ = [9, n0, _URP,
2024
+ { [_ht]: ["POST", "/UpdateRecoveryPlan", 200] }, () => UpdateRecoveryPlanRequest$, () => UpdateRecoveryPlanResponse$
2025
+ ];
2026
+ export var UpdateRecoveryPlanExecutionStep$ = [9, n0, _URPES,
2027
+ { [_ht]: ["POST", "/UpdateRecoveryPlanExecutionStep", 200] }, () => UpdateRecoveryPlanExecutionStepRequest$, () => UpdateRecoveryPlanExecutionStepResponse$
2028
+ ];
2029
+ export var UpdateRecoveryPlanStep$ = [9, n0, _URPS,
2030
+ { [_ht]: ["POST", "/UpdateRecoveryPlanStep", 200] }, () => UpdateRecoveryPlanStepRequest$, () => UpdateRecoveryPlanStepResponse$
2031
+ ];
1548
2032
  export var UpdateReplicationConfiguration$ = [9, n0, _URC,
1549
2033
  { [_ht]: ["POST", "/UpdateReplicationConfiguration", 200] }, () => UpdateReplicationConfigurationRequest$, () => ReplicationConfiguration$
1550
2034
  ];