mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
549 B
Ruby
30 lines
549 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/xenserver/models/compute/vdi'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class XenServer
|
||
|
|
||
|
class Vdis < Fog::Collection
|
||
|
|
||
|
model Fog::Compute::XenServer::VDI
|
||
|
|
||
|
def all(options = {})
|
||
|
data = connection.get_records 'VDI'
|
||
|
load(data)
|
||
|
end
|
||
|
|
||
|
def get( vdi_ref )
|
||
|
if vdi_ref && vdi = connection.get_record( vdi_ref, 'VDI' )
|
||
|
new(vdi)
|
||
|
end
|
||
|
rescue Fog::XenServer::NotFound
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|