Skip to content

deleteRecoveryPlansV2

Deletes recovery plans.

Arguments

Argument Type Description
input (required) DeleteRecoveryPlansV2Input! Delete recovery plans request parameters.

Returns

DeleteRecoveryPlansV2Reply!

Sample

mutation DeleteRecoveryPlansV2($input: DeleteRecoveryPlansV2Input!) {
  deleteRecoveryPlansV2(input: $input)
}
{
  "input": {
    "recoveryPlanIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "deleteRecoveryPlansV2": {
      "batchDeleteResponse": [
        {
          "isDeletedSuccessfully": true,
          "recoveryPlanId": "00000000-0000-0000-0000-000000000000"
        }
      ]
    }
  }
}