Module: Fog::VPN
- Extended by:
- ServicesMixin
- Defined in:
- lib/fog/vpn.rb
Class Method Summary collapse
Methods included from ServicesMixin
Class Method Details
.new(orig_attributes) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/fog/vpn.rb', line 5 def self.new(orig_attributes) attributes = orig_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 super(orig_attributes) end end |