fog--fog/lib/fog/cloudstack/requests/compute/copy_template.rb

27 lines
645 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Copies a template from one zone to another.
#
# {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/copyTemplate.html]
def copy_template(*args)
options = {}
if args[0].is_a? Hash
options = args[0]
options.merge!('command' => 'copyTemplate')
else
options.merge!('command' => 'copyTemplate',
'id' => args[0],
'destzoneid' => args[1])
end
request(options)
end
end
end
end
end