Sha256: 740026ced3119ab16f097c7a80f09eade989bef1b16462476bff2a794cda8adc

Contents?: true

Size: 479 Bytes

Versions: 1

Compression:

Stored size: 479 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Remove a VMware datacenter from a zone.
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/removeVmwareDc.html]
        def remove_vmware_dc(zoneid, options={})
          options.merge!(
            'command' => 'removeVmwareDc', 
            'zoneid' => zoneid  
          )
          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/remove_vmware_dc.rb