mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
622 B
Ruby
26 lines
622 B
Ruby
|
module Fog
|
||
|
module Orchestration
|
||
|
|
||
|
def self.[](provider)
|
||
|
self.new(:provider => provider)
|
||
|
end
|
||
|
|
||
|
def self.new(attributes)
|
||
|
attributes = attributes.dup # Prevent delete from having side effects
|
||
|
provider = attributes.delete(:provider).to_s.downcase.to_sym
|
||
|
|
||
|
if self.providers.include?(provider)
|
||
|
require "fog/#{provider}/network"
|
||
|
return Fog::Orchestration.const_get(Fog.providers[provider]).new(attributes)
|
||
|
end
|
||
|
|
||
|
raise ArgumentError.new("#{provider} has no orchestration service")
|
||
|
end
|
||
|
|
||
|
def self.providers
|
||
|
Fog.services[:orchestration]
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|