Class: OvirtSDK4::PmProxy

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

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



13853
13854
13855
13856
# File 'lib/ovirtsdk4/types.rb', line 13853

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

Instance Method Details

#==(other) ⇒ Object

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



13861
13862
13863
13864
# File 'lib/ovirtsdk4/types.rb', line 13861

def ==(other)
  super &&
  @type == other.type
end

#hashObject

Generates a hash value for this object.



13869
13870
13871
13872
# File 'lib/ovirtsdk4/types.rb', line 13869

def hash
  super +
  @type.hash
end

#typePmProxyType

Returns the value of the type attribute.

Returns:



13830
13831
13832
# File 'lib/ovirtsdk4/types.rb', line 13830

def type
  @type
end

#type=(value) ⇒ Object

Sets the value of the type attribute.

Parameters:



13839
13840
13841
# File 'lib/ovirtsdk4/types.rb', line 13839

def type=(value)
  @type = value
end