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

28 lines
864 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Creates a template of a virtual machine. The virtual machine must be in a STOPPED state. A template created from this command is automatically designated as a private template visible to the account that created it.
#
# {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/createTemplate.html]
def create_template(*args)
options = {}
if args[0].is_a? Hash
options = args[0]
options.merge!('command' => 'createTemplate')
else
options.merge!('command' => 'createTemplate',
'ostypeid' => args[0],
'name' => args[1],
'displaytext' => args[2])
end
request(options)
end
end
end
end
end