Class: OvirtSDK4::Sso
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#hash ⇒ Object
Generates a hash value for this object.
-
#initialize(opts = {}) ⇒ Sso
constructor
Creates a new instance of the Sso class.
-
#methods ⇒ Array<Method>
Returns the value of the
methods
attribute. -
#methods=(list) ⇒ Object
Sets the value of the
methods
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ Sso
Creates a new instance of the OvirtSDK4::Sso class.
19799 19800 19801 19802 |
# File 'lib/ovirtsdk4/types.rb', line 19799 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.
19807 19808 19809 19810 |
# File 'lib/ovirtsdk4/types.rb', line 19807 def ==(other) super && @methods == other.methods end |
#hash ⇒ Object
Generates a hash value for this object.
19815 19816 19817 19818 |
# File 'lib/ovirtsdk4/types.rb', line 19815 def hash super + @methods.hash end |
#methods ⇒ Array<Method>
Returns the value of the methods
attribute.
19768 19769 19770 |
# File 'lib/ovirtsdk4/types.rb', line 19768 def methods @methods end |
#methods=(list) ⇒ Object
Sets the value of the methods
attribute.
19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 |
# File 'lib/ovirtsdk4/types.rb', line 19777 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 |