VDS_VOLUME_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 volume plex.

Syntax

typedef enum _VDS_VOLUME_PLEX_STATUS {
  VDS_VPS_UNKNOWN = 0,
  VDS_VPS_ONLINE = 1,
  VDS_VPS_NO_MEDIA = 3,
  VDS_VPS_FAILED = 5
} VDS_VOLUME_PLEX_STATUS;

Constants

 
VDS_VPS_UNKNOWN
Value: 0
This value is reserved.
VDS_VPS_ONLINE
Value: 1
The volume plex is available.
VDS_VPS_NO_MEDIA
Value: 3
The volume plex has no media.
VDS_VPS_FAILED
Value: 5
The volume plex is unavailable.

Remarks

The VDS_VOLUME_PLEX_PROP structure includes a VDS_VOLUME_PLEX_STATUS value as a member to indicate the status of a volume plex.

Note  Additional constants might be added to the VDS_VOLUME_PLEX_STATUS enumeration in future Windows versions. For this reason, your application must be designed to gracefully handle an unrecognized VDS_VOLUME_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_VOLUME_PLEX_PROP