2011-04-30 15:29:05 -04:00
|
|
|
class StormOnDemand < Fog::Bin
|
2011-04-27 21:49:56 -04:00
|
|
|
class << self
|
|
|
|
|
|
|
|
def class_for(key)
|
|
|
|
case key
|
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute::StormOnDemand
|
2011-04-27 21:49:56 -04:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = case key
|
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Formatador.display_line("[yellow][WARN] StormOnDemand[:compute] is deprecated, use Compute[:stormondemand] instead[/]")
|
2011-04-30 15:29:05 -04:00
|
|
|
Fog::Compute.new(:provider => 'StormOnDemand')
|
2011-04-27 21:49:56 -04:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
@@connections[service]
|
|
|
|
end
|
|
|
|
|
|
|
|
def services
|
2011-04-30 15:29:05 -04:00
|
|
|
Fog::StormOnDemand.services
|
2011-04-27 21:49:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|