Sha256: f0436f0e5c12c3dab9dba1a85f3cee4d84281ce68f5e7395eb6440eb9502f4f6

Contents?: true

Size: 1.36 KB

Versions: 37

Compression:

Stored size: 1.36 KB

Contents

module Fog
  module Compute
    class HPV2
      class Real

        # Get details about an existing floating IP address
        #
        # Note: This method will proxy the call to the Network (Quantum) service,
        # to get details about an existing floating IP address.
        #
        # ==== Parameters
        # * 'address_id'<~String> - UUId of floating IP address get details for
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'floating_ip'<~Hash> -
        #       * 'id'<~String> - UUId of the Floating IP address
        #       * 'ip'<~String> - Floating IP of the address
        #       * 'instance_id'<~String> - Id of the associated server instance
        #       * 'fixed_ip'<~String> - Fixed IP of the address
        def get_address(address_id)
          request(
            :expects  => 200,
            :method   => 'GET',
            :path     => "os-floating-ips/#{address_id}"
          )
        end

      end

      class Mock

        def get_address(address_id)
          response = Excon::Response.new
          if address = self.data[:addresses][address_id]
            response.status = 200
            response.body = { 'floating_ip' => address }
            response
          else
            raise Fog::Compute::HPV2::NotFound
          end
        end

      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/hp/requests/compute_v2/get_address.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/hp/requests/compute_v2/get_address.rb
fog-1.18.0 lib/fog/hp/requests/compute_v2/get_address.rb