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

- old
+ new

@@ -3,16 +3,19 @@ class Cloudstack class Real # Updates a VPC # - # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/updateVPC.html] - def update_vpc(id, name, options={}) - options.merge!( - 'command' => 'updateVPC', - 'id' => id, - 'name' => name - ) + # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateVPC.html] + def update_vpc(*args) + options = {} + if args[0].is_a? Hash + options = args[0] + options.merge!('command' => 'updateVPC') + else + options.merge!('command' => 'updateVPC', + 'id' => args[0]) + end request(options) end end end