Class: IControl::System::BladeTemperature
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::System::BladeTemperature
- Defined in:
- lib/icontrol/system.rb,
lib/icontrol/system.rb
Overview
Blade temperature information structure The blades hold a number of temperature sensors, keyed by their slot (i.e., blade) and sensor identifiers.
Instance Attribute Summary (collapse)
-
- (String) location
Sensor location.
-
- (Numeric) sensor
The current value of sensor.
-
- (Numeric) slot
Slot/blade identifier.
-
- (Numeric) temperature
Temperature recorded by the sensor (deg C).
Method Summary
Methods inherited from Base::Struct
from_soap, icontrol_attribute, #to_soap
Instance Attribute Details
- (String) location
Sensor location
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def location @location end |
- (Numeric) sensor
The current value of sensor
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def sensor @sensor end |
- (Numeric) slot
Slot/blade identifier
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def slot @slot end |
- (Numeric) temperature
Temperature recorded by the sensor (deg C)
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def temperature @temperature end |