mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Add a HP provider class for the fog binary.
This commit is contained in:
parent
6dd5b9d511
commit
daef1b341a
1 changed files with 40 additions and 0 deletions
40
lib/fog/bin/hp.rb
Normal file
40
lib/fog/bin/hp.rb
Normal file
|
@ -0,0 +1,40 @@
|
|||
class HP < Fog::Bin
|
||||
class << self
|
||||
|
||||
def class_for(key)
|
||||
case key
|
||||
when :cdn
|
||||
Fog::HP::CDN
|
||||
when :compute
|
||||
Fog::HP::Compute
|
||||
when :storage
|
||||
Fog::HP::Storage
|
||||
else
|
||||
raise ArgumentError, "Unrecognized service: #{key}"
|
||||
end
|
||||
end
|
||||
|
||||
def [](service)
|
||||
@@connections ||= Hash.new do |hash, key|
|
||||
hash[key] = case key
|
||||
when :cdn
|
||||
Fog::CDN.new(:provider => 'HP')
|
||||
when :compute
|
||||
Fog::Compute.new(:provider => 'HP')
|
||||
when :dns
|
||||
Fog::DNS.new(:provider => 'HP')
|
||||
when :storage
|
||||
Fog::Storage.new(:provider => 'HP')
|
||||
else
|
||||
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
||||
end
|
||||
end
|
||||
@@connections[service]
|
||||
end
|
||||
|
||||
def services
|
||||
Fog::HP.services
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue