Sha256: b9d1259a80626838972bd86a54f9e4827d70bf448762dcd6d84f66ce23a0ca3a

Contents?: true

Size: 838 Bytes

Versions: 26

Compression:

Stored size: 838 Bytes

Contents

class Brightbox < Fog::Bin
  class << self
    def class_for(key)
      case key
      when :compute
        Fog::Compute::Brightbox
      when :storage
        Fog::Storage::Brightbox
      else
        raise ArgumentError, "Unsupported #{self} service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Fog::Logger.warning("Brightbox[:compute] is not recommended, use Compute[:brightbox] for portability")
          Fog::Compute.new(:provider => 'Brightbox')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def account
      @@connections[:compute].account
    end

    def services
      Fog::Brightbox.services
    end
  end
end

Version data entries

26 entries across 24 versions & 4 rubygems

Version Path
fog-1.29.0 lib/fog/bin/brightbox.rb
fog-1.28.0 lib/fog/bin/brightbox.rb
fog-1.27.0 lib/fog/bin/brightbox.rb
fog-1.26.0 lib/fog/bin/brightbox.rb
fog-1.25.0 lib/fog/bin/brightbox.rb
nsidc-fog-1.24.1 lib/fog/bin/brightbox.rb