Class: AWS

Inherits:
Fog::Bin show all
Defined in:
lib/fog/aws/bin.rb

Class Method Summary collapse

Methods inherited from Fog::Bin

available?, collections

Class Method Details

.[](service) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/fog/aws/bin.rb', line 4

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
    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

.servicesObject



34
35
36
# File 'lib/fog/aws/bin.rb', line 34

def services
  [:compute, :elb, :sdb, :storage]
end