Class: OvirtSDK4::NumaNode
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::NumaNode
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#comment ⇒ String
Returns the value of the
comment
attribute. -
#comment=(value) ⇒ Object
Sets the value of the
comment
attribute. -
#cpu ⇒ Cpu
Returns the value of the
cpu
attribute. -
#cpu=(value) ⇒ Object
Sets the value of the
cpu
attribute. -
#description ⇒ String
Returns the value of the
description
attribute. -
#description=(value) ⇒ Object
Sets the value of the
description
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#host ⇒ Host
Returns the value of the
host
attribute. -
#host=(value) ⇒ Object
Sets the value of the
host
attribute. -
#id ⇒ String
Returns the value of the
id
attribute. -
#id=(value) ⇒ Object
Sets the value of the
id
attribute. -
#index ⇒ Integer
Returns the value of the
index
attribute. -
#index=(value) ⇒ Object
Sets the value of the
index
attribute. -
#initialize(opts = {}) ⇒ NumaNode
constructor
Creates a new instance of the NumaNode class.
-
#memory ⇒ Integer
Returns the value of the
memory
attribute. -
#memory=(value) ⇒ Object
Sets the value of the
memory
attribute. -
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#node_distance ⇒ String
Returns the value of the
node_distance
attribute. -
#node_distance=(value) ⇒ Object
Sets the value of the
node_distance
attribute. -
#statistics ⇒ Array<Statistic>
Returns the value of the
statistics
attribute. -
#statistics=(list) ⇒ Object
Sets the value of the
statistics
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ NumaNode
Creates a new instance of the OvirtSDK4::NumaNode class.
11629 11630 11631 11632 11633 11634 11635 11636 11637 |
# File 'lib/ovirtsdk4/types.rb', line 11629 def initialize(opts = {}) super(opts) self.cpu = opts[:cpu] self.host = opts[:host] self.index = opts[:index] self.memory = opts[:memory] self.node_distance = opts[:node_distance] self.statistics = opts[:statistics] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
11642 11643 11644 11645 11646 11647 11648 11649 11650 |
# File 'lib/ovirtsdk4/types.rb', line 11642 def ==(other) super && @cpu == other.cpu && @host == other.host && @index == other.index && @memory == other.memory && @node_distance == other.node_distance && @statistics == other.statistics end |
#comment ⇒ String
Returns the value of the comment
attribute.
11404 11405 11406 |
# File 'lib/ovirtsdk4/types.rb', line 11404 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
11413 11414 11415 |
# File 'lib/ovirtsdk4/types.rb', line 11413 def comment=(value) @comment = value end |
#cpu ⇒ Cpu
Returns the value of the cpu
attribute.
11422 11423 11424 |
# File 'lib/ovirtsdk4/types.rb', line 11422 def cpu @cpu end |
#cpu=(value) ⇒ Object
Sets the value of the cpu
attribute.
The value
parameter can be an instance of Cpu 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.
11435 11436 11437 11438 11439 11440 |
# File 'lib/ovirtsdk4/types.rb', line 11435 def cpu=(value) if value.is_a?(Hash) value = Cpu.new(value) end @cpu = value end |
#description ⇒ String
Returns the value of the description
attribute.
11447 11448 11449 |
# File 'lib/ovirtsdk4/types.rb', line 11447 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
11456 11457 11458 |
# File 'lib/ovirtsdk4/types.rb', line 11456 def description=(value) @description = value end |
#hash ⇒ Object
Generates a hash value for this object.
11655 11656 11657 11658 11659 11660 11661 11662 11663 |
# File 'lib/ovirtsdk4/types.rb', line 11655 def hash super + @cpu.hash + @host.hash + @index.hash + @memory.hash + @node_distance.hash + @statistics.hash end |
#host ⇒ Host
Returns the value of the host
attribute.
11465 11466 11467 |
# File 'lib/ovirtsdk4/types.rb', line 11465 def host @host end |
#host=(value) ⇒ Object
Sets the value of the host
attribute.
The value
parameter can be an instance of Host 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.
11478 11479 11480 11481 11482 11483 |
# File 'lib/ovirtsdk4/types.rb', line 11478 def host=(value) if value.is_a?(Hash) value = Host.new(value) end @host = value end |
#id ⇒ String
Returns the value of the id
attribute.
11490 11491 11492 |
# File 'lib/ovirtsdk4/types.rb', line 11490 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
11499 11500 11501 |
# File 'lib/ovirtsdk4/types.rb', line 11499 def id=(value) @id = value end |
#index ⇒ Integer
Returns the value of the index
attribute.
11508 11509 11510 |
# File 'lib/ovirtsdk4/types.rb', line 11508 def index @index end |
#index=(value) ⇒ Object
Sets the value of the index
attribute.
11517 11518 11519 |
# File 'lib/ovirtsdk4/types.rb', line 11517 def index=(value) @index = value end |
#memory ⇒ Integer
Returns the value of the memory
attribute.
11526 11527 11528 |
# File 'lib/ovirtsdk4/types.rb', line 11526 def memory @memory end |
#memory=(value) ⇒ Object
Sets the value of the memory
attribute.
11535 11536 11537 |
# File 'lib/ovirtsdk4/types.rb', line 11535 def memory=(value) @memory = value end |
#name ⇒ String
Returns the value of the name
attribute.
11544 11545 11546 |
# File 'lib/ovirtsdk4/types.rb', line 11544 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
11553 11554 11555 |
# File 'lib/ovirtsdk4/types.rb', line 11553 def name=(value) @name = value end |
#node_distance ⇒ String
Returns the value of the node_distance
attribute.
11562 11563 11564 |
# File 'lib/ovirtsdk4/types.rb', line 11562 def node_distance @node_distance end |
#node_distance=(value) ⇒ Object
Sets the value of the node_distance
attribute.
11571 11572 11573 |
# File 'lib/ovirtsdk4/types.rb', line 11571 def node_distance=(value) @node_distance = value end |
#statistics ⇒ Array<Statistic>
Returns the value of the statistics
attribute.
11580 11581 11582 |
# File 'lib/ovirtsdk4/types.rb', line 11580 def statistics @statistics end |
#statistics=(list) ⇒ Object
Sets the value of the statistics
attribute.
11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 |
# File 'lib/ovirtsdk4/types.rb', line 11589 def statistics=(list) if list.class == Array list = List.new(list) list.each_with_index do |value, index| if value.is_a?(Hash) list[index] = Statistic.new(value) end end end @statistics = list end |