# File lib/fog/bluebox/models/compute/images.rb, line 12 def all data = connection.get_templates.body load(data) end
# File lib/fog/bluebox/models/compute/images.rb, line 17 def get(template_id) response = connection.get_template(template_id) new(response.body) rescue Fog::Compute::Bluebox::NotFound nil end