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