# File lib/fog/storm_on_demand/models/compute/templates.rb, line 12 def all(options={}) data = service.list_templates(options).body['items'] load(data) end
# File lib/fog/storm_on_demand/models/compute/templates.rb, line 17 def get(template_id) tpl = service.get_template_details(:id => template_id).body new(tpl) end