Class: OvirtSDK4::ExternalHost

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

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

  • :address (String)

    The value of attribute address.

  • :comment (String)

    The value of attribute comment.

  • :description (String)

    The value of attribute description.

  • :external_host_provider (ExternalHostProvider, Hash)

    The value of attribute external_host_provider.

  • :id (String)

    The value of attribute id.

  • :name (String)

    The value of attribute name.



37300
37301
37302
37303
37304
# File 'lib/ovirtsdk4/types.rb', line 37300

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

Instance Method Details

#==(other) ⇒ Object

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



37309
37310
37311
37312
37313
# File 'lib/ovirtsdk4/types.rb', line 37309

def ==(other)
  super &&
  @address == other.address &&
  @external_host_provider == other.external_host_provider
end

#addressString

Returns the value of the address attribute.

Returns:

  • (String)


37170
37171
37172
# File 'lib/ovirtsdk4/types.rb', line 37170

def address
  @address
end

#address=(value) ⇒ Object

Sets the value of the address attribute.

Parameters:

  • value (String)


37179
37180
37181
# File 'lib/ovirtsdk4/types.rb', line 37179

def address=(value)
  @address = value
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


37188
37189
37190
# File 'lib/ovirtsdk4/types.rb', line 37188

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


37197
37198
37199
# File 'lib/ovirtsdk4/types.rb', line 37197

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


37206
37207
37208
# File 'lib/ovirtsdk4/types.rb', line 37206

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


37215
37216
37217
# File 'lib/ovirtsdk4/types.rb', line 37215

def description=(value)
  @description = value
end

#external_host_providerExternalHostProvider

Returns the value of the external_host_provider attribute.



37224
37225
37226
# File 'lib/ovirtsdk4/types.rb', line 37224

def external_host_provider
  @external_host_provider
end

#external_host_provider=(value) ⇒ Object

Sets the value of the external_host_provider attribute.

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



37237
37238
37239
37240
37241
37242
# File 'lib/ovirtsdk4/types.rb', line 37237

def external_host_provider=(value)
  if value.is_a?(Hash)
    value = ExternalHostProvider.new(value)
  end
  @external_host_provider = value
end

#hashObject

Generates a hash value for this object.



37318
37319
37320
37321
37322
# File 'lib/ovirtsdk4/types.rb', line 37318

def hash
  super +
  @address.hash +
  @external_host_provider.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


37249
37250
37251
# File 'lib/ovirtsdk4/types.rb', line 37249

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


37258
37259
37260
# File 'lib/ovirtsdk4/types.rb', line 37258

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


37267
37268
37269
# File 'lib/ovirtsdk4/types.rb', line 37267

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


37276
37277
37278
# File 'lib/ovirtsdk4/types.rb', line 37276

def name=(value)
  @name = value
end