fog--fog/lib/fog/cloudstack/requests/compute/update_vpn_gateway.rb

26 lines
619 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Updates site to site vpn local gateway
#
# {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateVpnGateway.html]
def update_vpn_gateway(*args)
options = {}
if args[0].is_a? Hash
options = args[0]
options.merge!('command' => 'updateVpnGateway')
else
options.merge!('command' => 'updateVpnGateway',
'id' => args[0])
end
request(options)
end
end
end
end
end