Class: OvirtSDK4::ExternalComputeResource

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

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

  • :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.

  • :provider (String)

    The value of attribute provider.

  • :url (String)

    The value of attribute url.

  • :user (String)

    The value of attribute user.



37475
37476
37477
37478
37479
37480
37481
# File 'lib/ovirtsdk4/types.rb', line 37475

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

Instance Method Details

#==(other) ⇒ Object

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



37486
37487
37488
37489
37490
37491
37492
# File 'lib/ovirtsdk4/types.rb', line 37486

def ==(other)
  super &&
  @external_host_provider == other.external_host_provider &&
  @provider == other.provider &&
  @url == other.url &&
  @user == other.user
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


37305
37306
37307
# File 'lib/ovirtsdk4/types.rb', line 37305

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


37314
37315
37316
# File 'lib/ovirtsdk4/types.rb', line 37314

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


37323
37324
37325
# File 'lib/ovirtsdk4/types.rb', line 37323

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


37332
37333
37334
# File 'lib/ovirtsdk4/types.rb', line 37332

def description=(value)
  @description = value
end

#external_host_providerExternalHostProvider

Returns the value of the external_host_provider attribute.



37341
37342
37343
# File 'lib/ovirtsdk4/types.rb', line 37341

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:



37354
37355
37356
37357
37358
37359
# File 'lib/ovirtsdk4/types.rb', line 37354

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.



37497
37498
37499
37500
37501
37502
37503
# File 'lib/ovirtsdk4/types.rb', line 37497

def hash
  super +
  @external_host_provider.hash +
  @provider.hash +
  @url.hash +
  @user.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


37366
37367
37368
# File 'lib/ovirtsdk4/types.rb', line 37366

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


37375
37376
37377
# File 'lib/ovirtsdk4/types.rb', line 37375

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


37384
37385
37386
# File 'lib/ovirtsdk4/types.rb', line 37384

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


37393
37394
37395
# File 'lib/ovirtsdk4/types.rb', line 37393

def name=(value)
  @name = value
end

#providerString

Returns the value of the provider attribute.

Returns:

  • (String)


37402
37403
37404
# File 'lib/ovirtsdk4/types.rb', line 37402

def provider
  @provider
end

#provider=(value) ⇒ Object

Sets the value of the provider attribute.

Parameters:

  • value (String)


37411
37412
37413
# File 'lib/ovirtsdk4/types.rb', line 37411

def provider=(value)
  @provider = value
end

#urlString

Returns the value of the url attribute.

Returns:

  • (String)


37420
37421
37422
# File 'lib/ovirtsdk4/types.rb', line 37420

def url
  @url
end

#url=(value) ⇒ Object

Sets the value of the url attribute.

Parameters:

  • value (String)


37429
37430
37431
# File 'lib/ovirtsdk4/types.rb', line 37429

def url=(value)
  @url = value
end

#userString

Returns the value of the user attribute.

Returns:

  • (String)


37438
37439
37440
# File 'lib/ovirtsdk4/types.rb', line 37438

def user
  @user
end

#user=(value) ⇒ Object

Sets the value of the user attribute.

Parameters:

  • value (String)


37447
37448
37449
# File 'lib/ovirtsdk4/types.rb', line 37447

def user=(value)
  @user = value
end