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:
parent
5156e8e4f7
commit
47218e93e3
1 changed files with 35 additions and 0 deletions
35
lib/fog/cloudstack/requests/compute/register_template.rb
Normal file
35
lib/fog/cloudstack/requests/compute/register_template.rb
Normal 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
|
Loading…
Reference in a new issue