Sha256: 5a9aefa3227c4fdd145ae8c78a3cca1728bca68c718811763485ae42a79e9d96

Contents?: true

Size: 1.58 KB

Versions: 43

Compression:

Stored size: 1.58 KB

Contents

module Fog
  module Compute
    class IBM
      class Real
        # Get a location
        #
        # ==== Parameters
        # * location_id<~String> - Id of location
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'name'<~String>: location name
        #     * 'location'<~String>:
        #     * 'capabilities'<~Array>:
        #       * 'oss.storage.format'<~Hash>:
        #         * 'entries'<~Array>: list of supported volume formats
        #         * 'oss.instance.spec.i386'<~Array>: unsure.. returns empty array
        #         * 'oss.instance.spec.x86_64'<~Array>: unsure.. returns empty array
        #         * 'oss.storage.availabilityarea'<~Array>: availability area unsupported
        #     * 'id'<~String>: id of location
        #     * 'description'<~String>: description including geographic location
        #     * 'state'<~String>: state of datacenter
        def get_location(location_id)
          request(
            :method   => 'GET',
            :expects  => 200,
            :path     => "/locations/#{location_id}"
          )
        end
      end

      class Mock
        def get_location(location_id)
          response = Excon::Response.new
          if location_exists? location_id
            response.status = 200
            response.body   = self.data[:locations][location_id]
          else
            response.status = 404
          end
          response
        end

        def location_exists?(location_id)
          self.data[:locations].key? location_id
        end
      end
    end
  end
end

Version data entries

43 entries across 41 versions & 6 rubygems

Version Path
fog-2.3.0 lib/fog/ibm/requests/compute/get_location.rb
fog-ifeel-2.2.0 lib/fog/ibm/requests/compute/get_location.rb
fog-2.2.0 lib/fog/ibm/requests/compute/get_location.rb
fog-2.1.0 lib/fog/ibm/requests/compute/get_location.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/ibm/requests/compute/get_location.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/ibm/requests/compute/get_location.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/ibm/requests/compute/get_location.rb
fog-1.42.1 lib/fog/ibm/requests/compute/get_location.rb
fog-2.0.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.42.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.41.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.40.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.39.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.38.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.37.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.36.0 lib/fog/ibm/requests/compute/get_location.rb
fog-1.35.0 lib/fog/ibm/requests/compute/get_location.rb
fog-2.0.0.pre.0 lib/fog/ibm/requests/compute/get_location.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/ibm/requests/compute/get_location.rb
fog-1.34.0 lib/fog/ibm/requests/compute/get_location.rb