Sha256: 21ac07e8ff2eeaef4530add54aae76d5ffa322259f78027948e1f353e78e0916
Contents?: true
Size: 864 Bytes
Versions: 28
Compression:
Stored size: 864 Bytes
Contents
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
Version data entries
28 entries across 26 versions & 4 rubygems