Sha256: a788ccf6b9bf36d602fb5a3887fb44fcf0682053b5888444bf19754d0a380756

Contents?: true

Size: 1.13 KB

Versions: 24

Compression:

Stored size: 1.13 KB

Contents

class HP < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :block_storage
        Fog::HP::BlockStorage
      when :cdn
        Fog::CDN::HP
      when :compute
        Fog::Compute::HP
      when :storage
        Fog::Storage::HP
      else
        raise ArgumentError, "Unrecognized service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :block_storage
          Fog::HP::BlockStorage.new
        when :cdn
          Fog::Logger.warning("HP[:cdn] is deprecated, use CDN[:hp] instead")
          Fog::CDN.new(:provider => 'HP')
        when :compute
          Fog::Logger.warning("HP[:compute] is deprecated, use Compute[:hp] instead")
          Fog::Compute.new(:provider => 'HP')
        when :storage
          Fog::Logger.warning("HP[:storage] is deprecated, use Storage[:hp] instead")
          Fog::Storage.new(:provider => 'HP')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::HP.services
    end

  end
end

Version data entries

24 entries across 24 versions & 6 rubygems

Version Path
gapinc-fog-1.12.1.2.1 lib/fog/bin/hp.rb
fog-1.17.0 lib/fog/bin/hp.rb
fog-1.16.0 lib/fog/bin/hp.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/bin/hp.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/bin/hp.rb
fog-1.15.0 lib/fog/bin/hp.rb
gapinc-fog-1.14.0 lib/fog/bin/hp.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/bin/hp.rb
fog-1.14.0 lib/fog/bin/hp.rb
fog-1.13.0 lib/fog/bin/hp.rb
gapinc-fog-1.12.1.2 lib/fog/bin/hp.rb
gapinc-fog-1.12.1.1 lib/fog/bin/hp.rb
gapinc-fog-1.12.1a lib/fog/bin/hp.rb
gapinc-fog-1.12.1 lib/fog/bin/hp.rb
fog-1.12.1 lib/fog/bin/hp.rb
fog-1.12.0 lib/fog/bin/hp.rb
hpfog-0.0.20 lib/fog/bin/hp.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/bin/hp.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/bin/hp.rb
fog-1.11.1 lib/fog/bin/hp.rb