class OvirtSDK4::ExternalHostProviderService

Public Class Methods

new(connection, path) click to toggle source

Creates a new implementation of the service.

@param connection [Connection] The connection to be used by this service.

@param path [String] The relative path of this service, for example `vms/123/disks`.

@api private

# File lib/ovirtsdk4/services.rb, line 34658
def initialize(connection, path)
  @connection = connection
  @path = path
end

Public Instance Methods

certificates_service() click to toggle source

Locates the `certificates` service.

@return [ExternalProviderCertificatesService] A reference to `certificates` service.

# File lib/ovirtsdk4/services.rb, line 34809
def certificates_service
  ExternalProviderCertificatesService.new(@connection, "#{@path}/certificates")
end
compute_resources_service() click to toggle source

Locates the `compute_resources` service.

@return [ExternalComputeResourcesService] A reference to `compute_resources` service.

# File lib/ovirtsdk4/services.rb, line 34818
def compute_resources_service
  ExternalComputeResourcesService.new(@connection, "#{@path}/computeresources")
end
discovered_hosts_service() click to toggle source

Locates the `discovered_hosts` service.

@return [ExternalDiscoveredHostsService] A reference to `discovered_hosts` service.

# File lib/ovirtsdk4/services.rb, line 34827
def discovered_hosts_service
  ExternalDiscoveredHostsService.new(@connection, "#{@path}/discoveredhosts")
end
get(opts = {}) click to toggle source

Returns the representation of the object managed by this service.

@param opts [Hash] Additional options.

@return [ExternalHostProvider]

# File lib/ovirtsdk4/services.rb, line 34670
def get(opts = {})
  query = {}
  request = HttpRequest.new(method: :GET, url: @path, query: query)
  response = @connection.send(request)
  case response.code
  when 200
    begin
      reader = XmlReader.new(response.body)
      return ExternalHostProviderReader.read_one(reader)
    ensure
      reader.close
    end
  else
    check_fault(response)
  end
end
host_groups_service() click to toggle source

Locates the `host_groups` service.

@return [ExternalHostGroupsService] A reference to `host_groups` service.

# File lib/ovirtsdk4/services.rb, line 34836
def host_groups_service
  ExternalHostGroupsService.new(@connection, "#{@path}/hostgroups")
end
hosts_service() click to toggle source

Locates the `hosts` service.

@return [ExternalHostsService] A reference to `hosts` service.

# File lib/ovirtsdk4/services.rb, line 34845
def hosts_service
  ExternalHostsService.new(@connection, "#{@path}/hosts")
end
import_certificates(opts = {}) click to toggle source

Executes the `import_certificates` method.

@param opts [Hash] Additional options.

@option opts [Array<Certificate>] :certificates

# File lib/ovirtsdk4/services.rb, line 34694
def import_certificates(opts = {})
  action = Action.new(opts)
  writer = XmlWriter.new(nil, true)
  ActionWriter.write_one(action, writer)
  body = writer.string
  writer.close
  request = HttpRequest.new(
    method: :POST,
    url: "#{@path}/importcertificates",
    body: body
  )
  response = @connection.send(request)
  case response.code
  when 200
    action = check_action(response)
  else
    check_action(response)
  end
end
remove(opts = {}) click to toggle source

Deletes the object managed by this service.

@param opts [Hash] Additional options.

@option opts [Boolean] :async Indicates if the remove should be performed asynchronously.

# File lib/ovirtsdk4/services.rb, line 34720
def remove(opts = {})
  query = {}
  value = opts[:async]
  unless value.nil?
    value = Writer.render_boolean(value)
    query['async'] = value
  end
  request = HttpRequest.new(method: :DELETE, url: @path, query: query)
  response = @connection.send(request)
  unless response.code == 200
    check_fault(response)
  end
end
service(path) click to toggle source

Locates the service corresponding to the given path.

@param path [String] The path of the service.

@return [Service] A reference to the service.

# File lib/ovirtsdk4/services.rb, line 34856
def service(path)
  if path.nil? || path == ''
    return self
  end
  if path == 'certificates'
    return certificates_service
  end
  if path.start_with?('certificates/')
    return certificates_service.service(path[13..-1])
  end
  if path == 'computeresources'
    return compute_resources_service
  end
  if path.start_with?('computeresources/')
    return compute_resources_service.service(path[17..-1])
  end
  if path == 'discoveredhosts'
    return discovered_hosts_service
  end
  if path.start_with?('discoveredhosts/')
    return discovered_hosts_service.service(path[16..-1])
  end
  if path == 'hostgroups'
    return host_groups_service
  end
  if path.start_with?('hostgroups/')
    return host_groups_service.service(path[11..-1])
  end
  if path == 'hosts'
    return hosts_service
  end
  if path.start_with?('hosts/')
    return hosts_service.service(path[6..-1])
  end
  raise Error.new("The path \"#{path}\" doesn't correspond to any service")
end
test_connectivity(opts = {}) click to toggle source

Executes the `test_connectivity` method.

@param opts [Hash] Additional options.

@option opts [Boolean] :async Indicates if the test should be performed asynchronously.

# File lib/ovirtsdk4/services.rb, line 34741
def test_connectivity(opts = {})
  action = Action.new(opts)
  writer = XmlWriter.new(nil, true)
  ActionWriter.write_one(action, writer)
  body = writer.string
  writer.close
  request = HttpRequest.new(
    method: :POST,
    url: "#{@path}/testconnectivity",
    body: body
  )
  response = @connection.send(request)
  case response.code
  when 200
    action = check_action(response)
  else
    check_action(response)
  end
end
to_s() click to toggle source

Returns an string representation of this service.

@return [String]

# File lib/ovirtsdk4/services.rb, line 34898
def to_s
  "#<#{ExternalHostProviderService}:#{@path}>"
end
update(provider, opts = {}) click to toggle source

Updates the `provider`.

@param provider [ExternalHostProvider] The `provider` to update. @param opts [Hash] Additional options.

@option opts [Boolean] :async Indicates if the update should be performed asynchronously.

@return [ExternalHostProvider]

# File lib/ovirtsdk4/services.rb, line 34771
def update(provider, opts = {})
  if provider.is_a?(Hash)
    provider = OvirtSDK4::ExternalHostProvider.new(provider)
  end
  query = {}
  value = opts[:async]
  unless value.nil?
    value = Writer.render_boolean(value)
    query['async'] = value
  end
  request = HttpRequest.new(method: :PUT, url: @path, query: query)
  begin
    writer = XmlWriter.new(nil, true)
    ExternalHostProviderWriter.write_one(provider, writer)
    request.body = writer.string
  ensure
    writer.close
  end
  response = @connection.send(request)
  case response.code
  when 200
    begin
      reader = XmlReader.new(response.body)
      return ExternalHostProviderReader.read_one(reader)
    ensure
      reader.close
    end
    return result
  else
    check_fault(response)
  end
end