def delete_check(entity_id, check_id)
if entity_id == -1 || check_id == -1
raise Fog::Rackspace::Monitoring::NotFound
end
response = Excon::Response.new
response.status = 204
response.body = ""
response.headers = {
"Date" => Time.now.utc.to_s,
"X-RateLimit-Limit" => "50000",
"X-RateLimit-Remaining" => "49627",
"X-RateLimit-Window" => "24 hours",
"X-RateLimit-Type" => "global",
"X-Response-Id" => ".rh-lHJL.h-ord1-maas-prod-api1.r-AGRIH406.c-4085336.ts-1377785008661.v-e602877",
"X-LB" => "ord1-maas-prod-api1",
"Content-Length" => "0",
"Content-Type" => "text/plain",
}
response.remote_ip = Fog::Rackspace::MockData.ipv4_address
response
end