1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

CloudStack: added registerTemplate request

This commit is contained in:
Aliaksei Kliuchnikau 2012-08-09 12:51:52 +03:00
parent 5156e8e4f7
commit 47218e93e3

View file

@ -0,0 +1,35 @@
module Fog
module Compute
class Cloudstack
class Real
# Registers an existing template into the cloud.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/3.0.0/api_3.0.0/user/registerTemplate.html]
def register_template(options={})
options.merge!(
'command' => 'registerTemplate'
)
request(options)
end
end # Real
class Mock
def register_template(options={})
mock_template_id = self.data[:images].keys.first
registered_template = self.data[:images][mock_template_id]
{
'registertemplateresponse' =>
{
'count' => 1,
'template' => [registered_template]
}
}
end
end # Mock
end # Cloudstack
end # Compute
end #Fog