Class: OvirtSDK4::CustomProperty

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

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

  • :name (String)

    The value of attribute name.

  • :regexp (String)

    The value of attribute regexp.

  • :value (String)

    The value of attribute value.



2750
2751
2752
2753
2754
2755
# File 'lib/ovirtsdk4/types.rb', line 2750

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

Instance Method Details

#==(other) ⇒ Object

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



2760
2761
2762
2763
2764
2765
# File 'lib/ovirtsdk4/types.rb', line 2760

def ==(other)
  super &&
  @name == other.name &&
  @regexp == other.regexp &&
  @value == other.value
end

#hashObject

Generates a hash value for this object.



2770
2771
2772
2773
2774
2775
# File 'lib/ovirtsdk4/types.rb', line 2770

def hash
  super +
  @name.hash +
  @regexp.hash +
  @value.hash
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


2687
2688
2689
# File 'lib/ovirtsdk4/types.rb', line 2687

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


2696
2697
2698
# File 'lib/ovirtsdk4/types.rb', line 2696

def name=(value)
  @name = value
end

#regexpString

Returns the value of the regexp attribute.

Returns:

  • (String)


2705
2706
2707
# File 'lib/ovirtsdk4/types.rb', line 2705

def regexp
  @regexp
end

#regexp=(value) ⇒ Object

Sets the value of the regexp attribute.

Parameters:

  • value (String)


2714
2715
2716
# File 'lib/ovirtsdk4/types.rb', line 2714

def regexp=(value)
  @regexp = value
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


2723
2724
2725
# File 'lib/ovirtsdk4/types.rb', line 2723

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


2732
2733
2734
# File 'lib/ovirtsdk4/types.rb', line 2732

def value=(value)
  @value = value
end