Sha256: 96693f2125b2dc73b1836f660acabe18e1c75f406d224cfd7ebf8da6c2e2bdaf
Contents?: true
Size: 640 Bytes
Versions: 39
Compression:
Stored size: 640 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
39 entries across 37 versions & 3 rubygems