RaidRebuild

Trigger this action to force a rebuild of a RAID volume.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "RaidRebuild": {
    "VolumeName": "name"
    }
}
VolumeName
String
Specify the name of the RAID volume that you want to rebuild. The name is always raid0.

This action forces a rebuild of a RAID volume. The contents of the primary disk are copied to the secondary disk.

Example

To rebuild the RAID volume, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "RaidRebuild": {
    "VolumeName": "raid0"
    }
}