# File lib/fog/hp/requests/compute/get_address.rb, line 31 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::HP::NotFound end end