1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/models/compute/hosts.rb
2013-01-07 21:01:18 +00:00

32 lines
626 B
Ruby

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
data = service.list_hosts.body['hosts']
load(data)
end
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
end
end
end
end