28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/fog/bin/aws.rb', line 28
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :cdn
Fog::CDN.new(:provider => 'AWS')
when :compute
Fog::Compute.new(:provider => 'AWS')
when :dns
Fog::DNS.new(:provider => 'AWS')
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::Compute.new(:provider => 'AWS')
when :elb
Fog::AWS::ELB.new
when :iam
Fog::AWS::IAM.new
when :eu_storage
Fog::Storage.new(:provider => 'AWS', :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::Storage.new(:provider => 'AWS')
when :storage
Fog::Storage.new(:provider => 'AWS')
else
raise ArgumentError, "Unrecognized service: #{service}"
end
end
@@connections[service]
end
|