Skip to content

updateRecoveryScheduleV2

Updates a recovery schedule for a recovery plan.

Arguments

Argument Type Description
input (required) UpdateRecoveryScheduleV2Input! Updates the recovery schedule information linked to the recovery plan.

Returns

Void

Sample

mutation UpdateRecoveryScheduleV2($input: UpdateRecoveryScheduleV2Input!) {
  updateRecoveryScheduleV2(input: $input)
}
{
  "input": {
    "recoveryPlanId": "00000000-0000-0000-0000-000000000000",
    "scheduleInfo": {
      "frequency": "DAILY"
    }
  }
}
{
  "data": {
    "updateRecoveryScheduleV2": "example-string"
  }
}