# File lib/fog/profitbricks/requests/compute/delete_load_balancer.rb, line 26
        def delete_load_balancer(datacenter_id, load_balancer_id)
          response = Excon::Response.new
          response.status = 202

          if lb = data[:load_balancers]["items"].find do |attribute|
            attribute["datacenter_id"] == datacenter_id && attribute["id"] == load_balancer_id
          end
          else
            raise Fog::Errors::NotFound, "The requested resource could not be found"
          end

          response
        end