class OvirtSDK4::HostedEngine
Public Class Methods
Creates a new instance of the {HostedEngine} class.
@param opts [Hash] A hash containing the attributes of the object. The keys of the hash
should be symbols corresponding to the names of the attributes. The values of the hash should be the values of the attributes.
@option opts [Boolean] :active The value of attribute ‘active`.
@option opts [Boolean] :configured The value of attribute ‘configured`.
@option opts [Boolean] :global_maintenance The value of attribute ‘global_maintenance`.
@option opts [Boolean] :local_maintenance The value of attribute ‘local_maintenance`.
@option opts [Integer] :score The value of attribute ‘score`.
OvirtSDK4::Struct::new
# File lib/ovirtsdk4/types.rb, line 5684 def initialize(opts = {}) super(opts) self.active = opts[:active] self.configured = opts[:configured] self.global_maintenance = opts[:global_maintenance] self.local_maintenance = opts[:local_maintenance] self.score = opts[:score] end
Public Instance Methods
Returns ‘true` if `self` and `other` have the same attributes and values.
OvirtSDK4::Struct#==
# File lib/ovirtsdk4/types.rb, line 5696 def ==(other) super && @active == other.active && @configured == other.configured && @global_maintenance == other.global_maintenance && @local_maintenance == other.local_maintenance && @score == other.score end
Returns the value of the ‘active` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 5581 def active @active end
Sets the value of the ‘active` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 5590 def active=(value) @active = value end
Returns the value of the ‘configured` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 5599 def configured @configured end
Sets the value of the ‘configured` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 5608 def configured=(value) @configured = value end
Returns the value of the ‘global_maintenance` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 5617 def global_maintenance @global_maintenance end
Sets the value of the ‘global_maintenance` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 5626 def global_maintenance=(value) @global_maintenance = value end
Generates a hash value for this object.
OvirtSDK4::Struct#hash
# File lib/ovirtsdk4/types.rb, line 5708 def hash super + @active.hash + @configured.hash + @global_maintenance.hash + @local_maintenance.hash + @score.hash end
Returns the value of the ‘local_maintenance` attribute.
@return [Boolean]
# File lib/ovirtsdk4/types.rb, line 5635 def local_maintenance @local_maintenance end
Sets the value of the ‘local_maintenance` attribute.
@param value [Boolean]
# File lib/ovirtsdk4/types.rb, line 5644 def local_maintenance=(value) @local_maintenance = value end
Returns the value of the ‘score` attribute.
@return [Integer]
# File lib/ovirtsdk4/types.rb, line 5653 def score @score end
Sets the value of the ‘score` attribute.
@param value [Integer]
# File lib/ovirtsdk4/types.rb, line 5662 def score=(value) @score = value end