2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/collection'
|
2011-08-24 21:32:51 -04:00
|
|
|
require 'fog/bluebox/models/compute/image'
|
2010-09-07 19:26:01 -04:00
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Bluebox
|
2010-09-07 19:26:01 -04:00
|
|
|
|
|
|
|
class Images < Fog::Collection
|
|
|
|
|
2011-06-16 19:28:54 -04:00
|
|
|
model Fog::Compute::Bluebox::Image
|
2010-09-07 19:26:01 -04:00
|
|
|
|
|
|
|
def all
|
|
|
|
data = connection.get_templates.body
|
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(template_id)
|
|
|
|
response = connection.get_template(template_id)
|
|
|
|
new(response.body)
|
2011-06-16 19:28:54 -04:00
|
|
|
rescue Fog::Compute::Bluebox::NotFound
|
2010-09-07 19:26:01 -04:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|