Sha256: 5dda9c7d31fab2b8dd8216dc7b571ffc21e43bde3a853de6b3eaf55d62e54edd

Contents?: true

Size: 595 Bytes

Versions: 28

Compression:

Stored size: 595 Bytes

Contents

class Vsphere < Fog::Bin
  class << self
    def class_for(key)
      case key
      when :compute
        Fog::Compute::Vsphere
      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

Version data entries

28 entries across 28 versions & 4 rubygems

Version Path
fog-1.36.0 lib/fog/bin/vsphere.rb
fog-1.35.0 lib/fog/bin/vsphere.rb
fog-2.0.0.pre.0 lib/fog/bin/vsphere.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/bin/vsphere.rb
fog-1.34.0 lib/fog/bin/vsphere.rb
fog-1.33.0 lib/fog/bin/vsphere.rb
fog-1.32.0 lib/fog/bin/vsphere.rb
fog-1.31.0 lib/fog/bin/vsphere.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/bin/vsphere.rb
fog-1.30.0 lib/fog/bin/vsphere.rb
fog-1.29.0 lib/fog/bin/vsphere.rb
fog-1.28.0 lib/fog/bin/vsphere.rb
fog-1.27.0 lib/fog/bin/vsphere.rb
fog-1.26.0 lib/fog/bin/vsphere.rb
fog-1.25.0 lib/fog/bin/vsphere.rb
nsidc-fog-1.24.1 lib/fog/bin/vsphere.rb
fog-1.24.0 lib/fog/bin/vsphere.rb
ns-fog-1.22.11 lib/fog/bin/vsphere.rb
ns-fog-1.22.10 lib/fog/bin/vsphere.rb
ns-fog-1.22.9 lib/fog/bin/vsphere.rb