Class: OvirtSDK4::VolumeGroup
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#hash ⇒ Object
Generates a hash value for this object.
-
#id ⇒ String
Returns the value of the
id
attribute. -
#id=(value) ⇒ Object
Sets the value of the
id
attribute. -
#initialize(opts = {}) ⇒ VolumeGroup
constructor
Creates a new instance of the VolumeGroup class.
-
#logical_units ⇒ Array<LogicalUnit>
Returns the value of the
logical_units
attribute. -
#logical_units=(list) ⇒ Object
Sets the value of the
logical_units
attribute. -
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ VolumeGroup
Creates a new instance of the OvirtSDK4::VolumeGroup class.
27614 27615 27616 27617 27618 27619 |
# File 'lib/ovirtsdk4/types.rb', line 27614 def initialize(opts = {}) super(opts) self.id = opts[:id] self.logical_units = opts[:logical_units] self.name = opts[:name] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
27624 27625 27626 27627 27628 27629 |
# File 'lib/ovirtsdk4/types.rb', line 27624 def ==(other) super && @id == other.id && @logical_units == other.logical_units && @name == other.name end |
#hash ⇒ Object
Generates a hash value for this object.
27634 27635 27636 27637 27638 27639 |
# File 'lib/ovirtsdk4/types.rb', line 27634 def hash super + @id.hash + @logical_units.hash + @name.hash end |
#id ⇒ String
Returns the value of the id
attribute.
27543 27544 27545 |
# File 'lib/ovirtsdk4/types.rb', line 27543 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
27552 27553 27554 |
# File 'lib/ovirtsdk4/types.rb', line 27552 def id=(value) @id = value end |
#logical_units ⇒ Array<LogicalUnit>
Returns the value of the logical_units
attribute.
27561 27562 27563 |
# File 'lib/ovirtsdk4/types.rb', line 27561 def logical_units @logical_units end |
#logical_units=(list) ⇒ Object
Sets the value of the logical_units
attribute.
27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 |
# File 'lib/ovirtsdk4/types.rb', line 27570 def logical_units=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = LogicalUnit.new(value) end end end @logical_units = list end |
#name ⇒ String
Returns the value of the name
attribute.
27587 27588 27589 |
# File 'lib/ovirtsdk4/types.rb', line 27587 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
27596 27597 27598 |
# File 'lib/ovirtsdk4/types.rb', line 27596 def name=(value) @name = value end |