mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
b917ffc5db
* Added missing exceptions NotFound and RequestFailed * connection.request now raises exception if request failed * refactored most get_* request into get_record and get_records * Compute.default_template more robust * Base parser now replaces OpaqueRef:NULL with nil * create_server request fixes
29 lines
570 B
Ruby
29 lines
570 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/host'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
|
|
class Hosts < Fog::Collection
|
|
|
|
model Fog::Compute::XenServer::Host
|
|
|
|
def all(options={})
|
|
data = connection.get_records 'host'
|
|
load(data)
|
|
end
|
|
|
|
def get( host_ref )
|
|
if host_ref && host = connection.get_record( host_ref, 'host' )
|
|
new(host)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|