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/servers/images.rb

36 lines
704 B
Ruby
Raw Normal View History

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
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)
connection.get_image_details(image_id)
rescue Excon::Errors::NotFound
nil
end
end
end
end
end