Class: OvirtSDK4::Identified

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

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



5585
5586
5587
5588
5589
5590
5591
# File 'lib/ovirtsdk4/types.rb', line 5585

def initialize(opts = {})
  super(opts)
  self.comment = opts[:comment]
  self.description = opts[:description]
  self.id = opts[:id]
  self.name = opts[:name]
end

Instance Method Details

#==(other) ⇒ Object

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



5596
5597
5598
5599
5600
5601
5602
# File 'lib/ovirtsdk4/types.rb', line 5596

def ==(other)
  super &&
  @comment == other.comment &&
  @description == other.description &&
  @id == other.id &&
  @name == other.name
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


5502
5503
5504
# File 'lib/ovirtsdk4/types.rb', line 5502

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


5511
5512
5513
# File 'lib/ovirtsdk4/types.rb', line 5511

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


5520
5521
5522
# File 'lib/ovirtsdk4/types.rb', line 5520

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


5529
5530
5531
# File 'lib/ovirtsdk4/types.rb', line 5529

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



5607
5608
5609
5610
5611
5612
5613
# File 'lib/ovirtsdk4/types.rb', line 5607

def hash
  super +
  @comment.hash +
  @description.hash +
  @id.hash +
  @name.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


5538
5539
5540
# File 'lib/ovirtsdk4/types.rb', line 5538

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


5547
5548
5549
# File 'lib/ovirtsdk4/types.rb', line 5547

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


5556
5557
5558
# File 'lib/ovirtsdk4/types.rb', line 5556

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


5565
5566
5567
# File 'lib/ovirtsdk4/types.rb', line 5565

def name=(value)
  @name = value
end