Sha256: 32121e055d3ab22c5fec0023c058c166d624c11af7791bafa77589f1c4f75024
Contents?: true
Size: 1.19 KB
Versions: 29
Compression:
Stored size: 1.19 KB
Contents
module Fog module Compute class HP class Real # Get details about an existing floating IP address # # ==== Parameters # * 'address_id'<~Integer> - Id of floating IP address get details for # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'floating_ip'<~Hash> - # * 'id'<~Integer> - Id of the 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::HP::NotFound end end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems