mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
626 B
Ruby
25 lines
626 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/server_appliance'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
class ServerAppliances < Fog::Collection
|
|
model Fog::Compute::XenServer::ServerAppliance
|
|
|
|
def all(options={})
|
|
data = service.get_records 'VM_appliance'
|
|
load(data)
|
|
end
|
|
|
|
def get( server_appliance_ref )
|
|
if server_appliance_ref && server_appliance = service.get_record( server_appliance_ref, 'VM_appliance' )
|
|
new(server_appliance)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|