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