mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
372 B
Ruby
21 lines
372 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/storm_on_demand/models/compute/template'
|
|
|
|
module Fog
|
|
module Compute
|
|
class StormOnDemand
|
|
|
|
class Templates < Fog::Collection
|
|
|
|
model Fog::Compute::StormOnDemand::Template
|
|
|
|
def all
|
|
data = connection.list_templates.body['templates']
|
|
load(data)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|