1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/clodo/models/compute/images.rb

25 lines
527 B
Ruby
Raw Normal View History

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']
new(image) if image
rescue Fog::Compute::Clodo::NotFound
2011-09-30 17:45:09 -04:00
nil
end
end
end
end
end