mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[ibm] add bin helpers for storage
This commit is contained in:
parent
632eae53b2
commit
920e992ea0
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,8 @@ class IBM < Fog::Bin
|
|||
case key
|
||||
when :compute
|
||||
Fog::Compute::IBM
|
||||
when :storage
|
||||
Fog::Storage::IBM
|
||||
else
|
||||
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
||||
end
|
||||
|
@ -15,6 +17,8 @@ class IBM < Fog::Bin
|
|||
hash[key] = case key
|
||||
when :compute
|
||||
Fog::Compute.new(:provider => 'IBM')
|
||||
when :storage
|
||||
Fog::Storage.new(:provider => 'Storage')
|
||||
else
|
||||
raise ArgumentError, "Unrecognized service: #{service}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue