VDS_PATH_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 valid status values for a port.

Syntax

typedef enum _VDS_PATH_STATUS {
  VDS_MPS_UNKNOWN = 0,
  VDS_MPS_ONLINE = 1,
  VDS_MPS_FAILED = 5,
  VDS_MPS_STANDBY = 7
} VDS_PATH_STATUS;

Constants

 
VDS_MPS_UNKNOWN
Value: 0
The path status is unknown.
VDS_MPS_ONLINE
Value: 1
The path is active.
VDS_MPS_FAILED
Value: 5
The path is failed.
VDS_MPS_STANDBY
Value: 7
The path is in standby mode.

Remarks

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

Requirements

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

See also

VDS Enumerations