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