Methods

Class/Module Index [+]

Quicksearch

Fog::Compute::OpenStack::Hosts

Public Instance Methods

all() click to toggle source
# File lib/fog/openstack/models/compute/hosts.rb, line 12
def all
  data = service.list_hosts.body['hosts']
  load(data)
end
get(host_name) click to toggle source
# File lib/fog/openstack/models/compute/hosts.rb, line 17
def get(host_name)
  if host = service.get_host_details(host_name).body['host']
    new({
      'host_name' => host_name,
      'details' => host}
    )
  end
rescue Fog::Compute::OpenStack::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.