2012-03-01 21:54:49 -05:00
|
|
|
class BareMetalCloud < Fog::Bin
|
2010-06-23 16:22:20 -04:00
|
|
|
class << self
|
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
2011-02-16 18:07:42 -05:00
|
|
|
when :compute
|
2012-03-01 21:54:49 -05:00
|
|
|
Fog::Compute::BareMetalCloud
|
2014-02-19 07:30:59 -05:00
|
|
|
else
|
2010-12-06 22:49:58 -05:00
|
|
|
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-21 14:11:15 -04: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
|
2012-03-01 21:54:49 -05:00
|
|
|
Fog::Logger.warning("BareMetalCloud[:compute] is not recommended, use Compute[:baremetalcloud] for portability")
|
|
|
|
Fog::Compute.new(:provider => 'BareMetalCloud')
|
2011-01-12 20:55:24 -05:00
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2010-06-23 16:22:20 -04:00
|
|
|
end
|
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-06-23 16:22:20 -04:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def services
|
2012-03-01 21:54:49 -05:00
|
|
|
Fog::BareMetalCloud.services
|
2010-06-23 16:22:20 -04:00
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
|
2010-06-23 16:22:20 -04:00
|
|
|
end
|
|
|
|
end
|