fog/fog-vsphere

View on GitHub
lib/fog/bin/vsphere.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Vsphere < Fog::Bin
  class << self
    def class_for(key)
      case key
      when :compute
        Fog::Vsphere::Compute
      else
        raise ArgumentError, "Unrecognized service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
                    when :compute
                      Fog::Compute.new(provider: 'Vsphere')
                    else
                      raise ArgumentError, "Unrecognized service: #{key.inspect}"
                    end
      end
      @@connections[service]
    end

    def services
      Fog::Vsphere.services
    end
  end
end