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

32 lines
632 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 = connection.list_hosts.body['hosts']
load(data)
end
def get(host_name)
if host = connection.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