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

44 lines
886 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
2010-01-05 01:03:24 -05:00
if @loaded
clear
end
@loaded = true
data = connection.list_images_detail.body
2010-01-05 01:03:24 -05:00
images = []
for image in data['images']
2010-01-05 01:03:24 -05:00
images << new(image)
end
if server
images = images.select {|image| image.server_id == server.id}
end
2010-01-05 01:03:24 -05:00
self.replace(images)
end
def get(image_id)
connection.get_image_details(image_id)
rescue Excon::Errors::NotFound
nil
end
end
end
end
end