Sha256: 78b28645c6cef8c819204967d391b253e623ba5732409b39c382395d1f21897e
Contents?: true
Size: 642 Bytes
Versions: 4
Compression:
Stored size: 642 Bytes
Contents
module Fog module Compute class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems