VDS_LUN_PLEX_STATUS enumeration (vds.h)

[Beginning with Windows 8 and Windows Server 2012, the Virtual Disk Service COM interface is superseded by the Windows Storage Management API.]

Defines the set of object status values for a LUN plex.

Syntax

typedef enum _VDS_LUN_PLEX_STATUS {
  VDS_LPS_UNKNOWN = 0,
  VDS_LPS_ONLINE = 1,
  VDS_LPS_NOT_READY = 2,
  VDS_LPS_OFFLINE = 4,
  VDS_LPS_FAILED = 5
} VDS_LUN_PLEX_STATUS;

Constants

 
VDS_LPS_UNKNOWN
Value: 0
This value is reserved.
VDS_LPS_ONLINE
Value: 1
The plex is available.
VDS_LPS_NOT_READY
Value: 2
The plex is busy.
VDS_LPS_OFFLINE
Value: 4
The plex is unavailable.
VDS_LPS_FAILED
Value: 5
The plex has failed.

Remarks

The VDS_LUN_PLEX_PROP structure includes a VDS_LUN_PLEX_STATUS value as a member to indicate the current status of the LUN plex.

Note  Additional constants might be added to the VDS_LUN_PLEX_STATUS enumeration in future Windows versions. For this reason, your application must be designed to gracefully handle an unrecognized VDS_LUN_PLEX_STATUS enumeration constant.
 

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header vds.h

See also

VDS Enumerations

VDS_LUN_PLEX_PROP