Skip to content

updateRecoveryPlanV2

Updates an existing recovery plan.

Arguments

Argument Type Description
input (required) UpdateRecoveryPlanV2Input! Request containing the recovery plan to update.

Returns

UpdateRecoveryPlanV2Reply!

Sample

mutation UpdateRecoveryPlanV2($input: UpdateRecoveryPlanV2Input!) {
  updateRecoveryPlanV2(input: $input)
}
{
  "input": {
    "recoveryPlan": {},
    "recoverySpecMaps": [
      {}
    ]
  }
}
{
  "data": {
    "updateRecoveryPlanV2": {
      "recoveryPlan": {
        "id": "00000000-0000-0000-0000-000000000000",
        "isHidden": true,
        "isHydrationEnabled": true,
        "name": "example-string",
        "recoveryPlanStatus": "CONFIGURED",
        "recoveryPlanType": "CYBER_RECOVERY"
      }
    }
  }
}