Sha256: 542b983ed9658585a51322de7e88a289b3e6952d53f4e0053e152db7fcbdac20
Contents?: true
Size: 626 Bytes
Versions: 40
Compression:
Stored size: 626 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
40 entries across 40 versions & 5 rubygems