2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/collection'
|
2010-09-08 17:40:02 -04:00
|
|
|
require 'fog/aws/models/compute/image'
|
2010-03-16 18:46:21 -04:00
|
|
|
|
2010-01-10 16:35:20 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Compute
|
2010-01-10 16:35:20 -05:00
|
|
|
|
|
|
|
class Images < Fog::Collection
|
|
|
|
|
|
|
|
attribute :image_id
|
|
|
|
|
2010-09-08 17:40:02 -04:00
|
|
|
model Fog::AWS::Compute::Image
|
2010-01-10 16:35:20 -05:00
|
|
|
|
|
|
|
def initialize(attributes)
|
|
|
|
@image_id ||= []
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def all(image_id = @image_id)
|
|
|
|
@image_id = image_id
|
|
|
|
data = connection.describe_images('ImageId' => image_id).body
|
2010-03-06 23:02:10 -05:00
|
|
|
load(data['imagesSet'])
|
2010-01-10 16:35:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def get(image_id)
|
|
|
|
if image_id
|
2010-10-01 14:14:26 -04:00
|
|
|
self.class.new(:connection => connection).all(image_id).first
|
2010-01-10 16:35:20 -05:00
|
|
|
end
|
2010-05-26 20:27:17 -04:00
|
|
|
rescue Fog::Errors::NotFound
|
2010-01-10 16:35:20 -05:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|