module Fog::VPN

Public Class Methods

[](provider) click to toggle source
# File lib/fog/vpn.rb, line 3
def self.[](provider)
  new(:provider => provider)
end
new(attributes) click to toggle source
# File lib/fog/vpn.rb, line 7
def self.new(attributes)
  attributes = attributes.dup
  provider = attributes.delete(:provider).to_s.downcase.to_sym

  if provider == :stormondemand
    require "fog/vpn/storm_on_demand"
    Fog::VPN::StormOnDemand.new(attributes)
  else
    raise ArgumentError, "#{provider} has no vpn service"
  end
end
providers() click to toggle source
# File lib/fog/vpn.rb, line 19
def self.providers
  Fog.services[:vpn]
end