Sha256: 7cd1328a37386cc907165fc39ea87e84f78bbd731d660ed012c7495e97ba15ba
Contents?: true
Size: 534 Bytes
Versions: 20
Compression:
Stored size: 534 Bytes
Contents
module Fog module OpenStack class Baremetal class Real def delete_port(port_uuid) data = {:port_uuid => port_uuid} request( :body => Fog::JSON.encode(data), :expects => [200, 204], :method => 'DELETE', :path => 'ports' ) end end class Mock def delete_port(_port_uuid) response = Excon::Response.new response.status = 200 response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems