fog--fog/lib/fog/aws/bin.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

class AWS < Fog::Bin
class << self
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :compute
Fog::AWS::Compute.new
when :ec2
location = caller.first
warning = "[yellow][WARN] AWS[:ec2] is deprecated, use AWS[:compute] instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::AWS::Compute.new
when :elb
Fog::AWS::ELB.new
2010-09-23 17:48:52 +00:00
when :eu_storage
Fog::AWS::Storage.new(:region => 'eu-west-1')
when :sdb
Fog::AWS::SimpleDB.new
when :s3
location = caller.first
warning = "[yellow][WARN] AWS[:s3] is deprecated, use AWS[:storage] instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::AWS::Storage.new
when :storage
Fog::AWS::Storage.new
end
end
@@connections[service]
end
def services
2010-09-23 23:35:30 +00:00
[:compute, :elb, :sdb, :storage]
end
end
end