Class: OvirtSDK4::VmMediatedDevicesService

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(device, opts = {}) ⇒ VmMediatedDevice

Add a new mediated device to the virtual machine.

Parameters:

  • device (VmMediatedDevice)

    The device to add.

  • opts (Hash) (defaults to: {})

    Additional options.

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.

Returns:



34003
34004
34005
# File 'lib/ovirtsdk4/services.rb', line 34003

def add(device, opts = {})
  internal_add(device, VmMediatedDevice, ADD, opts)
end

#device_service(id) ⇒ VmMediatedDeviceService

Returns a reference to the service that manages a mediated device of a virtual machine.

Parameters:

  • id (String)

    The identifier of the device.

Returns:



34049
34050
34051
# File 'lib/ovirtsdk4/services.rb', line 34049

def device_service(id)
  VmMediatedDeviceService.new(self, id)
end

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

Lists all the configured mediated devices of the virtual machine.

The order of the returned list of mediated devices is not guaranteed.

Parameters:

  • opts (Hash) (defaults to: {})

    Additional options.

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 mediated devices to return. If not specified all the mediated devices 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.

Returns:



34038
34039
34040
# File 'lib/ovirtsdk4/services.rb', line 34038

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

#service(path) ⇒ Service

Locates the service corresponding to the given path.

Parameters:

  • path (String)

    The path of the service.

Returns:

  • (Service)

    A reference to the service.



34060
34061
34062
34063
34064
34065
34066
34067
34068
34069
# File 'lib/ovirtsdk4/services.rb', line 34060

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