2011-12-02 10:27:44 -08:00
|
|
|
class IBM < Fog::Bin
|
|
|
|
class << self
|
|
|
|
|
|
|
|
def class_for(key)
|
|
|
|
case key
|
|
|
|
when :compute
|
|
|
|
Fog::Compute::IBM
|
2012-02-01 15:58:27 -06:00
|
|
|
when :storage
|
|
|
|
Fog::Storage::IBM
|
2011-12-02 10:27:44 -08:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = case key
|
|
|
|
when :compute
|
|
|
|
Fog::Compute.new(:provider => 'IBM')
|
2012-02-01 15:58:27 -06:00
|
|
|
when :storage
|
|
|
|
Fog::Storage.new(:provider => 'Storage')
|
2011-12-02 10:27:44 -08:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{service}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
@@connections[service]
|
|
|
|
end
|
|
|
|
|
|
|
|
def services
|
|
|
|
Fog::IBM.services
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|