mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
796 B
Ruby
35 lines
796 B
Ruby
module Fog
|
|
module Compute
|
|
class Cloudstack
|
|
class Real
|
|
|
|
# List all public, private, and privileged templates.
|
|
#
|
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listTemplates.html]
|
|
def list_templates(options={})
|
|
options.merge!(
|
|
'command' => 'listTemplates'
|
|
)
|
|
|
|
request(options)
|
|
end
|
|
|
|
end # Real
|
|
|
|
class Mock
|
|
|
|
def list_templates(options={})
|
|
templates = self.data[:images].values
|
|
|
|
{
|
|
"listtemplatesresponse" =>
|
|
{
|
|
"count" => templates.size,
|
|
"template"=> templates
|
|
}
|
|
}
|
|
end
|
|
end # Mock
|
|
end # Cloudstack
|
|
end # Compute
|
|
end # Fog
|