Sha256: 793c92d12c1dc8092ac0464ab33c6a8982db129f511ece7097428c5bc11b5c0b

Contents?: true

Size: 606 Bytes

Versions: 3

Compression:

Stored size: 606 Bytes

Contents

module Fog
  module Orchestration
    def self.[](provider)
      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 providers.include?(provider)
        require "fog/#{provider}/network"
        return Fog::Orchestration.const_get(Fog.providers[provider]).new(attributes)
      end

      raise ArgumentError, "#{provider} has no orchestration service"
    end

    def self.providers
      Fog.services[:orchestration]
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fog-core-1.27.1 lib/fog/orchestration.rb
fog-core-1.27.0 lib/fog/orchestration.rb
fog-core-1.25.0 lib/fog/orchestration.rb