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/rackspace/models/compute/images.rb

34 lines
680 B
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
require 'fog/rackspace/models/compute/image'
module Fog
module Rackspace
class Compute
class Images < Fog::Collection
model Fog::Rackspace::Compute::Image
attribute :server
def all
data = connection.list_images_detail.body['images']
load(data)
if server
self.replace(self.select {|image| image.server_id == server.id})
end
end
def get(image_id)
data = connection.get_image_details(image_id).body['image']
new(data)
rescue Fog::Rackspace::Compute::NotFound
nil
end
end
end
end
end