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/bluebox/models/compute/images.rb
2010-10-04 14:02:08 -07:00

28 lines
519 B
Ruby

require 'fog/core/collection'
require 'fog/bluebox/models/compute/image'
module Fog
module Bluebox
class Compute
class Images < Fog::Collection
model Fog::Bluebox::Compute::Image
def all
data = connection.get_templates.body
load(data)
end
def get(template_id)
response = connection.get_template(template_id)
new(response.body)
rescue Fog::Bluebox::Compute::NotFound
nil
end
end
end
end
end