Class: Ecloud

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

Class Method Summary collapse

Methods inherited from Fog::Bin

collections

Class Method Details

.[](service) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/bin/ecloud.rb', line 17

def [](service)
  @@connections ||= Hash.new do |hash, key|
    hash[key] = case key
    when :compute
      Fog::Logger.warning("Ecloud[:compute] is not recommended, use Compute[:ecloud] for portability")
      Fog::Compute.new(:provider => 'Ecloud')
    else
      raise ArgumentError, "Unrecognized service: #{key.inspect}"
    end
  end
  @@connections[service]
end

.available?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/fog/bin/ecloud.rb', line 4

def available?
  Fog::Ecloud::ECLOUD_OPTIONS.all? {|requirement| Fog.credentials.include?(requirement)}
end

.class_for(key) ⇒ Object



8
9
10
11
12
13
14
15
# File 'lib/fog/bin/ecloud.rb', line 8

def class_for(key)
  case key
  when :compute
    Fog::Compute::Ecloud
  else 
    raise ArgumentError, "Unrecognized service: #{key}"
  end
end

.servicesObject



30
31
32
# File 'lib/fog/bin/ecloud.rb', line 30

def services
  Fog::Ecloud.services
end