Class: SakuraCloud

Inherits:
Fog::Bin
  • Object
show all
Defined in:
lib/fog/bin/sakuracloud.rb

Class Method Summary collapse

Class Method Details

.[](service) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/fog/bin/sakuracloud.rb', line 16

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

.class_for(key) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/fog/bin/sakuracloud.rb', line 3

def class_for(key)
  case key
  when :compute
    Fog::Compute::SakuraCloud
  when :volume
    Fog::Volume::SakuraCloud
  when :network
    Fog::Network::SakuraCloud
  else
    raise ArgumentError, "Unrecognized service: #{key}"
  end
end

.servicesObject



35
36
37
# File 'lib/fog/bin/sakuracloud.rb', line 35

def services
  Fog::SakuraCloud.services
end