Class: OvirtSDK4::Sso

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

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

  • :methods (Array<Method>, Array<Hash>)

    The values of attribute methods.



19371
19372
19373
19374
# File 'lib/ovirtsdk4/types.rb', line 19371

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

Instance Method Details

#==(other) ⇒ Object

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



19379
19380
19381
19382
# File 'lib/ovirtsdk4/types.rb', line 19379

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

#hashObject

Generates a hash value for this object.



19387
19388
19389
19390
# File 'lib/ovirtsdk4/types.rb', line 19387

def hash
  super +
  @methods.hash
end

#methodsArray<Method>

Returns the value of the methods attribute.

Returns:



19340
19341
19342
# File 'lib/ovirtsdk4/types.rb', line 19340

def methods
  @methods
end

#methods=(list) ⇒ Object

Sets the value of the methods attribute.

Parameters:



19349
19350
19351
19352
19353
19354
19355
19356
19357
19358
19359
# File 'lib/ovirtsdk4/types.rb', line 19349

def methods=(list)
  if list.class == Array
    list = List.new(list)
    list.each_with_index do |value, index|
      if value.is_a?(Hash)
        list[index] = Method.new(value)
      end
    end
  end
  @methods = list
end