Class: OvirtSDK4::CpuType

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 = {}) ⇒ CpuType

Creates a new instance of the OvirtSDK4::CpuType 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):

  • :architecture (Architecture)

    The value of attribute architecture.

  • :level (Integer)

    The value of attribute level.

  • :name (String)

    The value of attribute name.



2651
2652
2653
2654
2655
2656
# File 'lib/ovirtsdk4/types.rb', line 2651

def initialize(opts = {})
  super(opts)
  self.architecture = opts[:architecture]
  self.level = opts[:level]
  self.name = opts[:name]
end

Instance Method Details

#==(other) ⇒ Object

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



2661
2662
2663
2664
2665
2666
# File 'lib/ovirtsdk4/types.rb', line 2661

def ==(other)
  super &&
  @architecture == other.architecture &&
  @level == other.level &&
  @name == other.name
end

#architectureArchitecture

Returns the value of the architecture attribute.

Returns:



2588
2589
2590
# File 'lib/ovirtsdk4/types.rb', line 2588

def architecture
  @architecture
end

#architecture=(value) ⇒ Object

Sets the value of the architecture attribute.

Parameters:



2597
2598
2599
# File 'lib/ovirtsdk4/types.rb', line 2597

def architecture=(value)
  @architecture = value
end

#hashObject

Generates a hash value for this object.



2671
2672
2673
2674
2675
2676
# File 'lib/ovirtsdk4/types.rb', line 2671

def hash
  super +
  @architecture.hash +
  @level.hash +
  @name.hash
end

#levelInteger

Returns the value of the level attribute.

Returns:

  • (Integer)


2606
2607
2608
# File 'lib/ovirtsdk4/types.rb', line 2606

def level
  @level
end

#level=(value) ⇒ Object

Sets the value of the level attribute.

Parameters:

  • value (Integer)


2615
2616
2617
# File 'lib/ovirtsdk4/types.rb', line 2615

def level=(value)
  @level = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


2624
2625
2626
# File 'lib/ovirtsdk4/types.rb', line 2624

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


2633
2634
2635
# File 'lib/ovirtsdk4/types.rb', line 2633

def name=(value)
  @name = value
end