Class: HP

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

Class Method Summary collapse

Methods inherited from Fog::Bin

available?, collections

Class Method Details

.[](service) ⇒ Object



27
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
# File 'lib/fog/bin/hp.rb', line 27

def [](service)
  @@connections ||= Hash.new do |hash, key|
    hash[key] = case key
    when :block_storage
      Fog::Logger.deprecation "HP Cloud Block Storage V1 service will be soon deprecated. Please use `Fog::HP::BlockStorageV2` provider to use latest HP Cloud Block Storage service."
      Fog::HP::BlockStorage.new
    when :block_storage_v2
      Fog::HP::BlockStorageV2.new
    when :cdn
      Fog::Logger.warning("HP[:cdn] is deprecated, use CDN[:hp] instead")
      Fog::CDN.new(:provider => 'HP')
    when :compute
      Fog::Logger.warning("HP[:compute] is deprecated, use Compute[:hp] instead")
      Fog::Compute.new(:provider => 'HP')
    when :dns
      Fog::HP::DNS.new
    when :lb
      Fog::HP::LB.new
    when :network
      Fog::HP::Network.new
    when :storage
      Fog::Logger.warning("HP[:storage] is deprecated, use Storage[:hp] instead")
      Fog::Storage.new(:provider => 'HP')
    else
      raise ArgumentError, "Unrecognized service: #{key.inspect}"
    end
  end
  @@connections[service]
end

.class_for(key) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/fog/bin/hp.rb', line 4

def class_for(key)
  case key
  when :block_storage
    Fog::HP::BlockStorage
  when :block_storage_v2
    Fog::HP::BlockStorageV2
  when :cdn
    Fog::CDN::HP
  when :compute
    Fog::Compute::HP
  when :dns
    Fog::HP::DNS
  when :lb
    Fog::HP::LB
  when :network
    Fog::HP::Network
  when :storage
    Fog::Storage::HP
  else
    raise ArgumentError, "Unrecognized service: #{key}"
  end
end

.servicesObject



57
58
59
# File 'lib/fog/bin/hp.rb', line 57

def services
  Fog::HP.services
end