Sha256: 3b06e656a6c4605aba63433ff268e4e21e4bd3212b226813ffd386e85e22183e
Contents?: true
Size: 654 Bytes
Versions: 28
Compression:
Stored size: 654 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Delete site to site vpn customer gateway # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/deleteVpnCustomerGateway.html] def delete_vpn_customer_gateway(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'deleteVpnCustomerGateway') else options.merge!('command' => 'deleteVpnCustomerGateway', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems