2011-01-04 19:49:35 -05:00
|
|
|
module Fog
|
|
|
|
class DNS
|
|
|
|
|
|
|
|
def self.new(attributes)
|
|
|
|
attributes = attributes.dup # prevent delete from having side effects
|
2011-01-07 21:14:39 -05:00
|
|
|
case provider = attributes[:provider] # attributes.delete(:provider)
|
2011-01-04 19:49:35 -05:00
|
|
|
when 'AWS'
|
2011-01-07 21:12:05 -05:00
|
|
|
require 'fog/dns/aws'
|
2011-01-04 19:49:35 -05:00
|
|
|
Fog::AWS::DNS.new(attributes)
|
2011-01-24 20:30:57 -05:00
|
|
|
when 'Bluebox'
|
|
|
|
require 'fog/dns/bluebox'
|
|
|
|
Fog::Bluebox::DNS.new(attributes)
|
2011-03-09 20:03:15 -05:00
|
|
|
when 'DNSimple'
|
|
|
|
require 'fog/dns/dnsimple'
|
|
|
|
Fog::DNSimple::DNS.new(attributes)
|
2011-01-04 19:49:35 -05:00
|
|
|
when 'Linode'
|
2011-01-07 21:12:05 -05:00
|
|
|
require 'fog/dns/linode'
|
2011-01-04 19:49:35 -05:00
|
|
|
Fog::Linode::DNS.new(attributes)
|
|
|
|
when 'Slicehost'
|
2011-01-07 21:12:05 -05:00
|
|
|
require 'fog/dns/slicehost'
|
2011-01-04 19:49:35 -05:00
|
|
|
Fog::Slicehost::DNS.new(attributes)
|
|
|
|
when 'Zerigo'
|
2011-01-07 21:12:05 -05:00
|
|
|
require 'fog/dns/zerigo'
|
2011-01-04 19:49:35 -05:00
|
|
|
Fog::Zerigo::DNS.new(attributes)
|
|
|
|
else
|
2011-01-27 04:29:52 -05:00
|
|
|
raise ArgumentError.new("#{provider} is not a recognized dns provider")
|
2011-01-04 19:49:35 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|