2012-04-26 06:14:53 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/openstack/models/compute/host'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class OpenStack
|
|
|
|
|
|
|
|
class Hosts < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Compute::OpenStack::Host
|
|
|
|
|
|
|
|
def all
|
2012-12-22 18:24:36 -05:00
|
|
|
data = service.list_hosts.body['hosts']
|
2012-04-26 06:14:53 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(host_name)
|
2012-12-22 18:24:36 -05:00
|
|
|
if host = service.get_host_details(host_name).body['host']
|
2012-04-26 06:14:53 -04:00
|
|
|
new({
|
|
|
|
'host_name' => host_name,
|
|
|
|
'details' => host}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
rescue Fog::Compute::OpenStack::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|