Module: Fog::VPN

Defined in:
lib/fog/vpn.rb

Class Method Summary collapse

Class Method Details

.[](provider) ⇒ Object



3
4
5
# File 'lib/fog/vpn.rb', line 3

def self.[](provider)
  new(:provider => provider)
end

.new(attributes) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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)
  elsif providers.include?(provider)
    require "fog/#{provider}/vpn"
    begin
      Fog::VPN.const_get(Fog.providers[provider])
    rescue
      Fog.const_get(Fog.providers[provider])::VPN
    end.new(attributes)
  else
    raise ArgumentError, "#{provider} has no vpn service"
  end
end

.providersObject



26
27
28
# File 'lib/fog/vpn.rb', line 26

def self.providers
  Fog.services[:vpn]
end