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)
|
|
|
|
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
|
|
|
|
raise ArgumentError.new("#{provider} is not a recognized storage provider")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|