RaidMakeHotSpare

Trigger this action to create a hot spare for a RAID volume.

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

This action makes any connected disk that it not part of the RAID volume into a hot spare. A hot spare is the replacement for a failed disk in the RAID volume. Use this command after you replace a failed disk with a new disk.

Example

To make a hot spare, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "RaidMakeHotSpare": {
    "VolumeName": "raid0"
    }
}