Sha256: 670f70e3490e091ab5b0a1d8bdee6b2cb9b2bffa6fb3ca1c279a0f220c1fead5
Contents?: true
Size: 552 Bytes
Versions: 1
Compression:
Stored size: 552 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Adds a VMware datacenter to specified zone # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/addVmwareDc.html] def add_vmware_dc(zoneid, name, vcenter, options={}) options.merge!( 'command' => 'addVmwareDc', 'zoneid' => zoneid, 'name' => name, 'vcenter' => vcenter ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/add_vmware_dc.rb |