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/aws/models/ec2/images.rb
2010-03-06 20:02:10 -08:00

37 lines
694 B
Ruby

module Fog
module AWS
class EC2
def images
Fog::AWS::EC2::Images.new(:connection => self)
end
class Images < Fog::Collection
attribute :image_id
model Fog::AWS::EC2::Image
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
load(data['imagesSet'])
end
def get(image_id)
if image_id
all(image_id).first
end
rescue Excon::Errors::BadRequest
nil
end
end
end
end
end