Class: OvirtSDK4::NetworkFilterParameter

Inherits:
Identified 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 = {}) ⇒ NetworkFilterParameter

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

  • :comment (String)

    The value of attribute comment.

  • :description (String)

    The value of attribute description.

  • :id (String)

    The value of attribute id.

  • :name (String)

    The value of attribute name.

  • :nic (Nic, Hash)

    The value of attribute nic.

  • :value (String)

    The value of attribute value.



10813
10814
10815
10816
10817
# File 'lib/ovirtsdk4/types.rb', line 10813

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

Instance Method Details

#==(other) ⇒ Object

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



10822
10823
10824
10825
10826
# File 'lib/ovirtsdk4/types.rb', line 10822

def ==(other)
  super &&
  @nic == other.nic &&
  @value == other.value
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


10683
10684
10685
# File 'lib/ovirtsdk4/types.rb', line 10683

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


10692
10693
10694
# File 'lib/ovirtsdk4/types.rb', line 10692

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


10701
10702
10703
# File 'lib/ovirtsdk4/types.rb', line 10701

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


10710
10711
10712
# File 'lib/ovirtsdk4/types.rb', line 10710

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



10831
10832
10833
10834
10835
# File 'lib/ovirtsdk4/types.rb', line 10831

def hash
  super +
  @nic.hash +
  @value.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


10719
10720
10721
# File 'lib/ovirtsdk4/types.rb', line 10719

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


10728
10729
10730
# File 'lib/ovirtsdk4/types.rb', line 10728

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


10737
10738
10739
# File 'lib/ovirtsdk4/types.rb', line 10737

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


10746
10747
10748
# File 'lib/ovirtsdk4/types.rb', line 10746

def name=(value)
  @name = value
end

#nicNic

Returns the value of the nic attribute.

Returns:



10755
10756
10757
# File 'lib/ovirtsdk4/types.rb', line 10755

def nic
  @nic
end

#nic=(value) ⇒ Object

Sets the value of the nic attribute.

The value parameter can be an instance of OvirtSDK4::Nic or a hash. If it is a hash then a new instance will be created passing the hash as the opts parameter to the constructor.

Parameters:

  • value (Nic, Hash)


10768
10769
10770
10771
10772
10773
# File 'lib/ovirtsdk4/types.rb', line 10768

def nic=(value)
  if value.is_a?(Hash)
    value = Nic.new(value)
  end
  @nic = value
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


10780
10781
10782
# File 'lib/ovirtsdk4/types.rb', line 10780

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


10789
10790
10791
# File 'lib/ovirtsdk4/types.rb', line 10789

def value=(value)
  @value = value
end