Class: OvirtSDK4::NetworkAttachmentsService

Inherits:
Service
  • Object
show all
Defined in:
lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb

Instance Method Summary collapse

Methods inherited from Service

#inspect, #to_s

Instance Method Details

#add(attachment, opts = {}) ⇒ NetworkAttachment

Add a new network attachment to the network interface.

Options Hash (opts):

  • :headers (Hash) — default: {}

    Additional HTTP headers.

  • :query (Hash) — default: {}

    Additional URL query parameters.

  • :timeout (Integer) — default: nil

    The timeout for this request, in seconds. If no value is explicitly given then the timeout set globally for the connection will be used.

  • :wait (Boolean) — default: true

    If true wait for the response.



16000
16001
16002
# File 'lib/ovirtsdk4/services.rb', line 16000

def add(attachment, opts = {})
  internal_add(attachment, NetworkAttachment, ADD, opts)
end

#attachment_service(id) ⇒ NetworkAttachmentService

Locates the attachment service.



16045
16046
16047
# File 'lib/ovirtsdk4/services.rb', line 16045

def attachment_service(id)
  NetworkAttachmentService.new(self, id)
end

#list(opts = {}) ⇒ Array<NetworkAttachment>

Returns the list of network attachments of the host or host NIC.

The order of the returned list of network attachments isn’t guaranteed.

Options Hash (opts):

  • :follow (String)

    Indicates which inner links should be followed. The objects referenced by these links will be fetched as part of the current request. See here for details.

  • :max (Integer)

    Sets the maximum number of attachments to return. If not specified all the attachments are returned.

  • :headers (Hash) — default: {}

    Additional HTTP headers.

  • :query (Hash) — default: {}

    Additional URL query parameters.

  • :timeout (Integer) — default: nil

    The timeout for this request, in seconds. If no value is explicitly given then the timeout set globally for the connection will be used.

  • :wait (Boolean) — default: true

    If true wait for the response.



16034
16035
16036
# File 'lib/ovirtsdk4/services.rb', line 16034

def list(opts = {})
  internal_get(LIST, opts)
end

#service(path) ⇒ Service

Locates the service corresponding to the given path.



16056
16057
16058
16059
16060
16061
16062
16063
16064
16065
# File 'lib/ovirtsdk4/services.rb', line 16056

def service(path)
  if path.nil? || path == ''
    return self
  end
  index = path.index('/')
  if index.nil?
    return attachment_service(path)
  end
  return attachment_service(path[0..(index - 1)]).service(path[(index + 1)..-1])
end