2010-09-21 14:11:15 -04:00
|
|
|
class Bluebox < Fog::Bin
|
2010-05-24 13:29:01 -04:00
|
|
|
class << self
|
2010-05-24 14:03:52 -04:00
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
2011-02-16 18:07:42 -05:00
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute::Bluebox
|
2011-02-17 01:43:38 -05:00
|
|
|
when :dns
|
2011-06-15 20:25:01 -04:00
|
|
|
Fog::DNS::Bluebox
|
2013-02-17 18:14:48 -05:00
|
|
|
when :blb
|
|
|
|
Fog::Bluebox::BLB
|
2011-02-17 01:43:38 -05:00
|
|
|
else
|
2010-12-06 22:49:58 -05:00
|
|
|
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
2010-05-24 13:29:01 -04:00
|
|
|
end
|
2010-12-06 22:49:58 -05:00
|
|
|
end
|
2010-05-24 13:29:01 -04:00
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
2011-01-14 13:41:12 -05:00
|
|
|
hash[key] = case key
|
2011-01-12 20:55:24 -05:00
|
|
|
when :compute
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Bluebox[:compute] is not recommended, use Compute[:bluebox] for portability")
|
2011-01-14 13:51:41 -05:00
|
|
|
Fog::Compute.new(:provider => 'Bluebox')
|
2011-02-17 01:43:38 -05:00
|
|
|
when :dns
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Bluebox[:dns] is not recommended, use DNS[:bluebox] for portability")
|
2011-02-17 01:43:38 -05:00
|
|
|
Fog::DNS.new(:provider => 'Bluebox')
|
2011-01-12 20:55:24 -05:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{service}"
|
2010-12-06 22:49:58 -05:00
|
|
|
end
|
2010-09-03 18:32:30 -04:00
|
|
|
end
|
2010-12-06 22:49:58 -05:00
|
|
|
@@connections[service]
|
|
|
|
end
|
|
|
|
|
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::Bluebox.services
|
2010-12-06 22:49:58 -05:00
|
|
|
end
|
2010-09-03 18:32:30 -04:00
|
|
|
|
2010-05-24 13:29:01 -04:00
|
|
|
end
|
|
|
|
end
|