Sha256: fcdca59bf15bb126548452cd4ee30d233583c6b1dfc9ed636cd17fa6fb767eae
Contents?: true
Size: 869 Bytes
Versions: 37
Compression:
Stored size: 869 Bytes
Contents
module Fog module HP class Network class Real # Delete an existing floating ip # # ==== Parameters # * 'floating_ip_id'<~String>: - UUId of the floating IP address to delete def delete_floating_ip(floating_ip_id) request( :expects => 204, :method => 'DELETE', :path => "floatingips/#{floating_ip_id}" ) end end class Mock def delete_floating_ip(floating_ip_id) response = Excon::Response.new if list_floating_ips.body['floatingips'].detect {|_| _['id'] == floating_ip_id} self.data[:floating_ips].delete(floating_ip_id) response.status = 204 response else raise Fog::HP::Network::NotFound end end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems