Sha256: 62629d1bb28bf1998caf55655c1ef9ef431d43887fb93d3c685a2ad19c7b8f53

Contents?: true

Size: 512 Bytes

Versions: 1

Compression:

Stored size: 512 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Creates a l2tp/ipsec remote access vpn
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/createRemoteAccessVpn.html]
        def create_remote_access_vpn(publicipid, options={})
          options.merge!(
            'command' => 'createRemoteAccessVpn', 
            'publicipid' => publicipid  
          )
          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/create_remote_access_vpn.rb