class Fog::Compute::StormOnDemand::Templates
Public Instance Methods
all(options = {})
click to toggle source
# File lib/fog/compute/storm_on_demand/models/templates.rb, line 7 def all(options = {}) data = service.list_templates(options).body["items"] load(data) end
get(template_id)
click to toggle source
# File lib/fog/compute/storm_on_demand/models/templates.rb, line 12 def get(template_id) tpl = service.get_template_details(:id => template_id).body new(tpl) end