2011-09-30 17:45:09 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/clodo/models/compute/image'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Clodo
|
|
|
|
class Images < Fog::Collection
|
|
|
|
model Fog::Compute::Clodo::Image
|
|
|
|
|
|
|
|
def all
|
2012-12-22 18:29:06 -05:00
|
|
|
data = service.list_images_detail.body['images']
|
2011-09-30 17:45:09 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(image_id)
|
2012-12-22 18:29:06 -05:00
|
|
|
image = service.get_image_details(image_id).body['image']
|
2011-11-08 06:05:41 -05:00
|
|
|
new(image) if image
|
|
|
|
rescue Fog::Compute::Clodo::NotFound
|
2011-09-30 17:45:09 -04:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|