Class: OvirtSDK4::VcpuPin

Inherits:
Struct
  • Object
show all
Defined in:
lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb

Instance Method Summary collapse

Methods included from Type

#dig, #href, #href=

Constructor Details

#initialize(opts = {}) ⇒ VcpuPin

Creates a new instance of the OvirtSDK4::VcpuPin class.

Parameters:

  • opts (Hash) (defaults to: {})

    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.

Options Hash (opts):

  • :cpu_set (String)

    The value of attribute cpu_set.

  • :vcpu (Integer)

    The value of attribute vcpu.



23613
23614
23615
23616
23617
# File 'lib/ovirtsdk4/types.rb', line 23613

def initialize(opts = {})
  super(opts)
  self.cpu_set = opts[:cpu_set]
  self.vcpu = opts[:vcpu]
end

Instance Method Details

#==(other) ⇒ Object

Returns true if self and other have the same attributes and values.



23622
23623
23624
23625
23626
# File 'lib/ovirtsdk4/types.rb', line 23622

def ==(other)
  super &&
  @cpu_set == other.cpu_set &&
  @vcpu == other.vcpu
end

#cpu_setString

Returns the value of the cpu_set attribute.

Returns:

  • (String)


23570
23571
23572
# File 'lib/ovirtsdk4/types.rb', line 23570

def cpu_set
  @cpu_set
end

#cpu_set=(value) ⇒ Object

Sets the value of the cpu_set attribute.

Parameters:

  • value (String)


23579
23580
23581
# File 'lib/ovirtsdk4/types.rb', line 23579

def cpu_set=(value)
  @cpu_set = value
end

#hashObject

Generates a hash value for this object.



23631
23632
23633
23634
23635
# File 'lib/ovirtsdk4/types.rb', line 23631

def hash
  super +
  @cpu_set.hash +
  @vcpu.hash
end

#vcpuInteger

Returns the value of the vcpu attribute.

Returns:

  • (Integer)


23588
23589
23590
# File 'lib/ovirtsdk4/types.rb', line 23588

def vcpu
  @vcpu
end

#vcpu=(value) ⇒ Object

Sets the value of the vcpu attribute.

Parameters:

  • value (Integer)


23597
23598
23599
# File 'lib/ovirtsdk4/types.rb', line 23597

def vcpu=(value)
  @vcpu = value
end