2010-09-21 11:11:15 -07:00
|
|
|
class Slicehost < Fog::Bin
|
2010-02-11 21:41:37 -08:00
|
|
|
class << self
|
|
|
|
|
2010-12-06 19:49:58 -08:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
2011-02-16 15:07:42 -08:00
|
|
|
when :compute
|
2011-06-16 16:28:54 -07:00
|
|
|
Fog::Compute::Slicehost
|
2010-12-21 15:24:14 -08:00
|
|
|
when :dns
|
2011-06-15 17:25:01 -07:00
|
|
|
Fog::DNS::Slicehost
|
2010-12-06 19:49:58 -08:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-21 11:11:15 -07:00
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
2011-01-14 10:41:12 -08:00
|
|
|
hash[key] = case key
|
2011-02-16 15:07:42 -08:00
|
|
|
when :compute
|
2011-10-19 14:49:34 -05:00
|
|
|
Fog::Logger.warning("Slicehost[:compute] is not recommended, use Compute[:slicehost] for portability")
|
2011-01-12 17:55:24 -08:00
|
|
|
Fog::Compute.new(:provider => 'Slicehost')
|
|
|
|
when :dns
|
2011-09-02 12:30:10 -05:00
|
|
|
Fog::Logger.warning("Slicehost[:dns] is deprecated, use Storage[:slicehost] instead")
|
2011-01-12 17:55:24 -08:00
|
|
|
Fog::DNS.new(:provider => 'Slicehost')
|
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2011-01-12 17:55:24 -08:00
|
|
|
end
|
2010-02-11 21:41:37 -08:00
|
|
|
end
|
2010-09-21 11:11:15 -07:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-02-11 21:41:37 -08:00
|
|
|
|
2010-09-21 11:11:15 -07:00
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::Slicehost.services
|
2010-02-11 21:41:37 -08:00
|
|
|
end
|
2010-09-21 11:11:15 -07:00
|
|
|
|
2010-02-11 21:41:37 -08:00
|
|
|
end
|
|
|
|
end
|