Class: OvirtSDK4::Hook

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

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

  • :event_name (String)

    The value of attribute event_name.

  • :host (Host, Hash)

    The value of attribute host.

  • :id (String)

    The value of attribute id.

  • :md5 (String)

    The value of attribute md5.

  • :name (String)

    The value of attribute name.



40803
40804
40805
40806
40807
40808
# File 'lib/ovirtsdk4/types.rb', line 40803

def initialize(opts = {})
  super(opts)
  self.event_name = opts[:event_name]
  self.host = opts[:host]
  self.md5 = opts[:md5]
end

Instance Method Details

#==(other) ⇒ Object

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



40813
40814
40815
40816
40817
40818
# File 'lib/ovirtsdk4/types.rb', line 40813

def ==(other)
  super &&
  @event_name == other.event_name &&
  @host == other.host &&
  @md5 == other.md5
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


40653
40654
40655
# File 'lib/ovirtsdk4/types.rb', line 40653

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


40662
40663
40664
# File 'lib/ovirtsdk4/types.rb', line 40662

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


40671
40672
40673
# File 'lib/ovirtsdk4/types.rb', line 40671

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


40680
40681
40682
# File 'lib/ovirtsdk4/types.rb', line 40680

def description=(value)
  @description = value
end

#event_nameString

Returns the value of the event_name attribute.

Returns:

  • (String)


40689
40690
40691
# File 'lib/ovirtsdk4/types.rb', line 40689

def event_name
  @event_name
end

#event_name=(value) ⇒ Object

Sets the value of the event_name attribute.

Parameters:

  • value (String)


40698
40699
40700
# File 'lib/ovirtsdk4/types.rb', line 40698

def event_name=(value)
  @event_name = value
end

#hashObject

Generates a hash value for this object.



40823
40824
40825
40826
40827
40828
# File 'lib/ovirtsdk4/types.rb', line 40823

def hash
  super +
  @event_name.hash +
  @host.hash +
  @md5.hash
end

#hostHost

Returns the value of the host attribute.

Returns:



40707
40708
40709
# File 'lib/ovirtsdk4/types.rb', line 40707

def host
  @host
end

#host=(value) ⇒ Object

Sets the value of the host attribute.

The value parameter can be an instance of OvirtSDK4::Host 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 (Host, Hash)


40720
40721
40722
40723
40724
40725
# File 'lib/ovirtsdk4/types.rb', line 40720

def host=(value)
  if value.is_a?(Hash)
    value = Host.new(value)
  end
  @host = value
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


40732
40733
40734
# File 'lib/ovirtsdk4/types.rb', line 40732

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


40741
40742
40743
# File 'lib/ovirtsdk4/types.rb', line 40741

def id=(value)
  @id = value
end

#md5String

Returns the value of the md5 attribute.

Returns:

  • (String)


40750
40751
40752
# File 'lib/ovirtsdk4/types.rb', line 40750

def md5
  @md5
end

#md5=(value) ⇒ Object

Sets the value of the md5 attribute.

Parameters:

  • value (String)


40759
40760
40761
# File 'lib/ovirtsdk4/types.rb', line 40759

def md5=(value)
  @md5 = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


40768
40769
40770
# File 'lib/ovirtsdk4/types.rb', line 40768

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


40777
40778
40779
# File 'lib/ovirtsdk4/types.rb', line 40777

def name=(value)
  @name = value
end