lib/fog/cloudstack/requests/compute/remove_vmware_dc.rb in fog-1.23.0 vs lib/fog/cloudstack/requests/compute/remove_vmware_dc.rb in fog-1.24.0

- old
+ new

@@ -3,15 +3,19 @@ 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 - ) + # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/removeVmwareDc.html] + def remove_vmware_dc(*args) + options = {} + if args[0].is_a? Hash + options = args[0] + options.merge!('command' => 'removeVmwareDc') + else + options.merge!('command' => 'removeVmwareDc', + 'zoneid' => args[0]) + end request(options) end end end