Administrator Guide

/**************************************************************
* DPO_HardwareInfoToLogical_Processor
* This class associates DPO_Logical_Processor instance(s) with an
* instance of DPO_HardwareInfo.
**************************************************************/
[Association : ToInstance,
Description("This class associates DPO_Logical_Processor " " instance(s) with an instance of
DPO_HardwareInfo"),
dynamic:ToInstance,
PROVIDER("DPOProv"):ToInstance
]
class DPO_HardwareInfoToLogical_Processor
{
[key] DPO_HardwareInfo REF Antecedent;
[key] DPO_Logical_Processor REF Dependent;
};
/**************************************************************
* DPO_Disk
* This has the physical disk information from a summary log. There
* may be multiple instances of this class for each summary file.
**************************************************************/ [Description("Information for
each physical disk found on the system."), Dynamic,Provider("DPOProv") ]
class DPO_Disk
{
[
Description("Unique ID from the summary file."),
Key
]
string HardwareInfoGUID;
[
Description("Index of the physical disk starting from 0."),
Key
]
sint16 Index;
[Description("Name of the disk.")]
string Name;
[Description("Disk model number.")]
string Make_Model;
[Description("Total disk size in MBs.")]
sint32 Size_MB;
[Description("Disk ePPID.")]
string ePPID;
[Description("Unique ID assigned to this disk instance.")]
string DiskGUID;
[Description("Percentage of time the disk was busy in read operations.")]
sint16 Read_Time_Pct;
[Description("Percentage of time the disk was busy in write operations.")]
sint16 Write_Time_Pct;
[Description("Percentage of time the disk was idle.")]
sint16 Idle_Time_Pct;
[Description("Total data read from the disk in MB.")]
sint32 Bytes_Read_MB;
[Description("Total data written to the disk in MB.")]
sint32 Bytes_Write_MB;
};
/**************************************************************
* DPO_HardwareInfoToDisk
* This class associates DPO_Disk instance(s) with an
* instance of DPO_HardwareInfo.
**************************************************************/
40 附录 B - WMI 类定义文件