Sha256: 989f3205702023e41807628b835276ea484fe658298521bce7e9d3987bb751e3

Contents?: true

Size: 597 Bytes

Versions: 104

Compression:

Stored size: 597 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

104 entries across 104 versions & 18 rubygems

Version Path
fog-1.22.0 lib/fog/bin/vsphere.rb
fog-1.21.0 lib/fog/bin/vsphere.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/bin/vsphere.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/bin/vsphere.rb
fog-1.20.0 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/bin/vsphere.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/bin/vsphere.rb
fog-1.19.0 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/bin/vsphere.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/bin/vsphere.rb