2009-11-19 11:19:46 -05:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class Servers
|
|
|
|
|
|
|
|
def images(attributes = {})
|
|
|
|
Fog::Rackspace::Servers::Images.new({
|
|
|
|
:connection => self
|
|
|
|
}.merge!(attributes))
|
|
|
|
end
|
|
|
|
|
|
|
|
class Images < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Rackspace::Servers::Image
|
|
|
|
|
|
|
|
attribute :server
|
|
|
|
|
|
|
|
def all
|
2010-03-06 23:02:10 -05:00
|
|
|
data = connection.list_images_detail.body['images']
|
2010-03-17 02:36:45 -04:00
|
|
|
load(data)
|
2009-11-19 11:19:46 -05:00
|
|
|
if server
|
2010-03-06 23:02:10 -05:00
|
|
|
self.replace(self.select {|image| image.server_id == server.id})
|
2009-11-19 11:19:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(image_id)
|
|
|
|
connection.get_image_details(image_id)
|
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|