Sha256: 47d13506574a08b476ae1773ff639efd6b2d6892303f207a94529f4bca701dcd
Contents?: true
Size: 699 Bytes
Versions: 29
Compression:
Stored size: 699 Bytes
Contents
module Fog module Compute class Cloudstack class Real # create a profile of template and associate to a blade # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/instantiateUcsTemplateAndAssocaciateToBlade.html] def instantiate_ucs_template_and_assocaciate_to_blade(bladeid, templatedn, ucsmanagerid, options={}) options.merge!( 'command' => 'instantiateUcsTemplateAndAssocaciateToBlade', 'bladeid' => bladeid, 'templatedn' => templatedn, 'ucsmanagerid' => ucsmanagerid ) request(options) end end end end end
Version data entries
29 entries across 27 versions & 4 rubygems