mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
537 B
Ruby
30 lines
537 B
Ruby
module Bluebox
|
|
|
|
def self.[](service)
|
|
@@connections ||= Hash.new do |hash, key|
|
|
credentials = Fog.credentials.reject do |k,v|
|
|
![:bluebox_api_key, :bluebox_customer_id].include?(k)
|
|
end
|
|
hash[key] = case key
|
|
when :compute
|
|
Fog::Bluebox::Compute.new(credentials)
|
|
end
|
|
end
|
|
@@connections[service]
|
|
end
|
|
|
|
module Compute
|
|
|
|
module Formats
|
|
|
|
PRODUCT = {
|
|
'cost' => Float,
|
|
'description' => String,
|
|
'id' => String
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|