1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/hp/requests/compute_v2/get_address.rb

49 lines
1.4 KiB
Ruby
Raw Normal View History

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