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

37 lines
680 B
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
require 'fog/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
load(data['imagesSet'])
2010-01-10 16:35:20 -05:00
end
def get(image_id)
if image_id
all(image_id).first
end
rescue Fog::Errors::NotFound
2010-01-10 16:35:20 -05:00
nil
end
end
end
end
end