2010-09-21 14:11:15 -04:00
|
|
|
class Rackspace < Fog::Bin
|
2010-02-12 00:41:37 -05:00
|
|
|
class << self
|
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
2013-08-06 17:32:04 -04:00
|
|
|
when :auto_scale
|
|
|
|
Fog::Rackspace::AutoScale
|
2012-08-21 15:21:25 -04:00
|
|
|
when :block_storage
|
2012-08-22 17:51:35 -04:00
|
|
|
Fog::Rackspace::BlockStorage
|
2010-12-06 22:49:58 -05:00
|
|
|
when :cdn
|
2011-06-15 20:32:15 -04:00
|
|
|
Fog::CDN::Rackspace
|
2011-02-16 18:07:42 -05:00
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute::Rackspace
|
2012-07-30 16:01:23 -04:00
|
|
|
when :compute_v2
|
|
|
|
Fog::Compute::RackspaceV2
|
2011-02-16 18:07:42 -05:00
|
|
|
when :storage
|
2011-06-15 17:26:43 -04:00
|
|
|
Fog::Storage::Rackspace
|
2011-08-04 17:21:22 -04:00
|
|
|
when :load_balancers
|
|
|
|
Fog::Rackspace::LoadBalancers
|
2011-08-15 22:22:35 -04:00
|
|
|
when :dns
|
|
|
|
Fog::DNS::Rackspace
|
2012-06-23 14:56:51 -04:00
|
|
|
when :identity
|
|
|
|
Fog::Rackspace::Identity
|
2012-06-21 22:55:56 -04:00
|
|
|
when :databases
|
|
|
|
Fog::Rackspace::Databases
|
2013-07-11 18:30:37 -04:00
|
|
|
when :monitoring
|
|
|
|
Fog::Rackspace::Monitoring
|
2013-07-19 21:38:31 -04:00
|
|
|
when :queues
|
|
|
|
Fog::Rackspace::Queues
|
2011-08-15 22:22:35 -04:00
|
|
|
else
|
2010-12-06 22:49:58 -05:00
|
|
|
raise ArgumentError, "Unrecognized 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
|
2013-08-06 17:32:04 -04:00
|
|
|
when :auto_scale
|
|
|
|
Fog::Rackspace::AutoScale.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :cdn
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Rackspace[:cdn] is not recommended, use CDN[:rackspace] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::CDN.new(:provider => 'Rackspace')
|
|
|
|
when :compute
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Rackspace[:compute] is not recommended, use Compute[:rackspace] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Compute.new(:provider => 'Rackspace')
|
2012-07-30 16:01:23 -04:00
|
|
|
when :compute_v2
|
|
|
|
Fog::Logger.warning("Rackspace[:compute] is not recommended, use Compute[:rackspace] for portability")
|
|
|
|
Fog::Compute.new(:provider => 'Rackspace', :version => 'v2')
|
2011-01-12 20:55:24 -05:00
|
|
|
when :dns
|
|
|
|
Fog::DNS.new(:provider => 'Rackspace')
|
2011-08-04 17:21:22 -04:00
|
|
|
when :load_balancers
|
|
|
|
Fog::Rackspace::LoadBalancers.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :storage
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("Rackspace[:storage] is not recommended, use Storage[:rackspace] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Storage.new(:provider => 'Rackspace')
|
2013-01-15 11:19:40 -05:00
|
|
|
when :identity
|
|
|
|
Fog::Logger.warning("Rackspace[:identity] is not recommended, use Identity[:rackspace] for portability")
|
|
|
|
Fog::Identity.new(:provider => 'Rackspace')
|
|
|
|
when :databases
|
|
|
|
Fog::Rackspace::Databases.new
|
|
|
|
when :block_storage
|
|
|
|
Fog::Rackspace::BlockStorage.new
|
2013-07-11 18:30:37 -04:00
|
|
|
when :monitoring
|
|
|
|
Fog::Rackspace::Monitoring.new
|
2013-07-19 21:38:31 -04:00
|
|
|
when :queues
|
|
|
|
Fog::Rackspace::Queues.new
|
2010-12-06 22:49:58 -05:00
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-02-12 00:41:37 -05:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::Rackspace.services
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
2010-09-08 16:50:23 -04:00
|
|
|
end
|