Class: OvirtSDK4::NumaNodePin
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
trueifselfandotherhave the same attributes and values. -
#hash ⇒ Object
Generates a hash value for this object.
-
#host_numa_node ⇒ NumaNode
Returns the value of the
host_numa_nodeattribute. -
#host_numa_node=(value) ⇒ Object
Sets the value of the
host_numa_nodeattribute. -
#index ⇒ Integer
Returns the value of the
indexattribute. -
#index=(value) ⇒ Object
Sets the value of the
indexattribute. -
#initialize(opts = {}) ⇒ NumaNodePin
constructor
Creates a new instance of the NumaNodePin class.
-
#pinned ⇒ Boolean
Returns the value of the
pinnedattribute. -
#pinned=(value) ⇒ Object
Sets the value of the
pinnedattribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ NumaNodePin
Creates a new instance of the OvirtSDK4::NumaNodePin class.
12675 12676 12677 12678 12679 12680 |
# File 'lib/ovirtsdk4/types.rb', line 12675 def initialize(opts = {}) super(opts) self.host_numa_node = opts[:host_numa_node] self.index = opts[:index] self.pinned = opts[:pinned] end |
Instance Method Details
#==(other) ⇒ Object
Returns true if self and other have the same attributes and values.
12685 12686 12687 12688 12689 12690 |
# File 'lib/ovirtsdk4/types.rb', line 12685 def ==(other) super && @host_numa_node == other.host_numa_node && @index == other.index && @pinned == other.pinned end |
#hash ⇒ Object
Generates a hash value for this object.
12695 12696 12697 12698 12699 12700 |
# File 'lib/ovirtsdk4/types.rb', line 12695 def hash super + @host_numa_node.hash + @index.hash + @pinned.hash end |
#host_numa_node ⇒ NumaNode
Returns the value of the host_numa_node attribute.
12605 12606 12607 |
# File 'lib/ovirtsdk4/types.rb', line 12605 def host_numa_node @host_numa_node end |
#host_numa_node=(value) ⇒ Object
Sets the value of the host_numa_node attribute.
The value parameter can be an instance of OvirtSDK4::NumaNode or a hash.
If it is a hash then a new instance will be created passing the hash as the
opts parameter to the constructor.
12618 12619 12620 12621 12622 12623 |
# File 'lib/ovirtsdk4/types.rb', line 12618 def host_numa_node=(value) if value.is_a?(Hash) value = NumaNode.new(value) end @host_numa_node = value end |
#index ⇒ Integer
Returns the value of the index attribute.
12630 12631 12632 |
# File 'lib/ovirtsdk4/types.rb', line 12630 def index @index end |
#index=(value) ⇒ Object
Sets the value of the index attribute.
12639 12640 12641 |
# File 'lib/ovirtsdk4/types.rb', line 12639 def index=(value) @index = value end |
#pinned ⇒ Boolean
Returns the value of the pinned attribute.
12648 12649 12650 |
# File 'lib/ovirtsdk4/types.rb', line 12648 def pinned @pinned end |
#pinned=(value) ⇒ Object
Sets the value of the pinned attribute.
12657 12658 12659 |
# File 'lib/ovirtsdk4/types.rb', line 12657 def pinned=(value) @pinned = value end |