Class: OvirtSDK4::GlusterBrickMemoryInfo
- 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.
-
#initialize(opts = {}) ⇒ GlusterBrickMemoryInfo
constructor
Creates a new instance of the GlusterBrickMemoryInfo class.
-
#memory_pools ⇒ Array<GlusterMemoryPool>
Returns the value of the
memory_pools
attribute. -
#memory_pools=(list) ⇒ Object
Sets the value of the
memory_pools
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ GlusterBrickMemoryInfo
Creates a new instance of the OvirtSDK4::GlusterBrickMemoryInfo class.
4132 4133 4134 4135 |
# File 'lib/ovirtsdk4/types.rb', line 4132 def initialize(opts = {}) super(opts) self.memory_pools = opts[:memory_pools] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
4140 4141 4142 4143 |
# File 'lib/ovirtsdk4/types.rb', line 4140 def ==(other) super && @memory_pools == other.memory_pools end |
#hash ⇒ Object
Generates a hash value for this object.
4148 4149 4150 4151 |
# File 'lib/ovirtsdk4/types.rb', line 4148 def hash super + @memory_pools.hash end |
#memory_pools ⇒ Array<GlusterMemoryPool>
Returns the value of the memory_pools
attribute.
4101 4102 4103 |
# File 'lib/ovirtsdk4/types.rb', line 4101 def memory_pools @memory_pools end |
#memory_pools=(list) ⇒ Object
Sets the value of the memory_pools
attribute.
4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 |
# File 'lib/ovirtsdk4/types.rb', line 4110 def memory_pools=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = GlusterMemoryPool.new(value) end end end @memory_pools = list end |