Sha256: 3b0cad49c2104f35190eeb75fa17600e0168659a1a261691dc6cf718e1098727
Contents?: true
Size: 628 Bytes
Versions: 85
Compression:
Stored size: 628 Bytes
Contents
module Fog module Compute class OpenStack class Real def disassociate_address(server_id, ip_address) body = { "removeFloatingIp" => {"address" => ip_address}} server_action(server_id, body) end end class Mock def disassociate_address(server_id, ip_address) response = Excon::Response.new response.status = 202 response.headers = { "Content-Type" => "text/html, charset=UTF-8", "Content-Length" => "0", "Date"=> Date.new } response end end end end end
Version data entries
85 entries across 85 versions & 13 rubygems