# File lib/fog/baremetal/openstack/requests/delete_port.rb, line 5
        def delete_port(port_uuid)
          data = {:port_uuid => port_uuid}
          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200, 204],
            :method  => 'DELETE',
            :path    => 'ports'
          )
        end