Class: OvirtSDK4::NetworkFilter

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

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

  • :version (Version, Hash)

    The value of attribute version.



10676
10677
10678
10679
# File 'lib/ovirtsdk4/types.rb', line 10676

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

Instance Method Details

#==(other) ⇒ Object

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



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

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

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


10566
10567
10568
# File 'lib/ovirtsdk4/types.rb', line 10566

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


10575
10576
10577
# File 'lib/ovirtsdk4/types.rb', line 10575

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


10584
10585
10586
# File 'lib/ovirtsdk4/types.rb', line 10584

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


10593
10594
10595
# File 'lib/ovirtsdk4/types.rb', line 10593

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



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

def hash
  super +
  @version.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


10602
10603
10604
# File 'lib/ovirtsdk4/types.rb', line 10602

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


10611
10612
10613
# File 'lib/ovirtsdk4/types.rb', line 10611

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


10620
10621
10622
# File 'lib/ovirtsdk4/types.rb', line 10620

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


10629
10630
10631
# File 'lib/ovirtsdk4/types.rb', line 10629

def name=(value)
  @name = value
end

#versionVersion

Returns the value of the version attribute.

Returns:



10638
10639
10640
# File 'lib/ovirtsdk4/types.rb', line 10638

def version
  @version
end

#version=(value) ⇒ Object

Sets the value of the version attribute.

The value parameter can be an instance of Version 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:



10651
10652
10653
10654
10655
10656
# File 'lib/ovirtsdk4/types.rb', line 10651

def version=(value)
  if value.is_a?(Hash)
    value = Version.new(value)
  end
  @version = value
end