E_RAIDStatus

TYPE E_RAIDStatus :
(
eRAID_SET_STATUS_OK          := 0,
eRAID_SET_STATUS_DEGRADED    := 1,
eRAID_SET_STATUS_REBUILDING  := 2,
eRAID_SET_STATUS_FAILED      := 3
);
END_TYPE

0 = eRAID_SET_STATUS_OK, indicates the RAID set is operational.

1 = e RAID_SET_STATUS_DEGRADED, indicates the RAID set is no longer functioning in a fault tolerant mode.

2 = eRAID_SET_STATUS_REBUILDING, indicates the RAID set is rebuilding. This implies a degraded operation. Once the rebuild completes successfully, the status will change to eRAID_SET_STATUS_OK. If the rebuilding process fails, the status will be updated appropriately.

3 =eRAID_SET_STATUS_FAILED, indicates the RAID set has failed. There is no guarantee on the operational behavior of the RAID set and data loss has occurred or is imminent.