# File lib/fog/softlayer/requests/storage/delete_object.rb, line 6
        def delete_object(container, object)
          response = Excon::Response.new
          if @containers[container].nil? || @containers[container][object].nil? # Container or object doesn't exist.
            response.body = '<html><h1>Not Found</h1><p>The resource could not be found.</p></html>'
            response.status = 404
          else # Success
            response.body = ''
            response.status = 204
          end
          response
        end