HP 3PAR CIM API Programming Reference (OS 3.1.2 MU2) (QL226-97015, June 2013)

ValueMap {"0", "1", "2", "3", "4"},
Values {"Unknown", "Stopped", "Low", "Medium", "Hi"} ]
uint16 Speed;
[Description ("HP 3PAR specific operational state for the Fan"),
ValueMap {"0", "1", "2", "4", "5", "6", "7" },
Values {"Unknown", "OK", "Error", "Critical", "Non Critical",
"Not Installed", "Not Available"} ]
uint16 OtherOperationalStatus;
[Description ("Fan LED status. This is ONLY available for system fans."),
ValueMap {"0", "1", "2", "3", "4", "5", "6", "7"},
Values {"Unknown", "Off", "Green", "Green Blinking", "Amber", "Amber Blinking",
"Blue", "Blue Blinking"} ]
uint16 SystemFanLED;
[Description ("Service LED status. Only available on V-class systems. "),
ValueMap {"0", "1", "2", "3", "4", "5", "6", "7"},
Values {"Unknown", "Off", "Green", "Green Blinking", "Amber", "Amber Blinking",
"Blue", "Blue Blinking"} ]
uint16 ServiceLED;
};
// ===================================================================
// PowerSupply Cooling
// ===================================================================
[Association, Description (
"Many Devices, such as processors or power supplies, require "
"their own cooling devices. This association indicates where "
"fans or other CoolingDevices are specific to a Device, versus "
"providing enclosure or cabinet cooling.")]
class TPD_PowerSupplyCooling : CIM_AssociatedCooling {
[Override ( "Antecedent" ), Description (
"The Fan.")]
TPD_Fan REF Antecedent;
[Override ( "Dependent" ), Description (
"The PowerSupply being cooled.")]
TPD_PowerSupply REF Dependent;
};
// ===================================================================
// Node Cooling
// ===================================================================
[Association, Description (
"Describes association between SystemFan and "
"the Node Package it is cooling.")]
class TPD_NodePkgCooling : CIM_PackageDependency {
[Override ( "Antecedent" ), Description (
"The System Fan.")]
TPD_Fan REF Antecedent;
[Override ( "Dependent" ), Description (
"The Node being cooled.")]
TPD_NodePackage REF Dependent;
};
// ==================================================================
// TPD Battery
// ==================================================================
[Description (
"HP 3PAR Battery connected to the PowerSupply in Node.")]
class TPD_Battery : CIM_Battery
3PAR_TPDEnv.mof 265