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
-
#location ⇒ String
Sensor location.
-
#sensor ⇒ Numeric
The current value of sensor.
-
#slot ⇒ Numeric
Slot/blade identifier.
-
#temperature ⇒ Numeric
Temperature recorded by the sensor (deg C).
Instance Attribute Details
#location ⇒ String
Sensor location
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def location @location end |
#sensor ⇒ Numeric
Returns the current value of sensor.
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def sensor @sensor end |
#slot ⇒ Numeric
Slot/blade identifier
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def slot @slot end |
#temperature ⇒ Numeric
Temperature recorded by the sensor (deg C)
72 73 74 |
# File 'lib/icontrol/system.rb', line 72 def temperature @temperature end |