fog/fog-storm_on_demand

View on GitHub
lib/fog/vpn/storm_on_demand/requests/get_vpn.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module VPN
    class StormOnDemand
      class Real
        def get_vpn(options = {})
          request(
            :path => "/VPN/details",
            :body => Fog::JSON.encode(:params => options)
          )
        end
      end
    end
  end
end