1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/monitoring/delete_entity.rb
Paul Thornthwaite 330a351ade Remove trailing blank lines
Done with `rubocop --auto-correct --only TrailingBlankLines`
2014-05-26 14:35:26 +01:00

40 lines
1.2 KiB
Ruby

module Fog
module Rackspace
class Monitoring
class Real
def delete_entity(entity_id)
request(
:expects => [204],
:method => 'DELETE',
:path => "entities/#{entity_id}"
)
end
end
class Mock
def delete_entity(entity_id)
if entity_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" => "47877",
"X-RateLimit-Window" => "24 hours",
"X-RateLimit-Type" => "global",
"X-Response-Id" => "lakgnnnf9bgewkgb39sobnsv",
"X-LB" => "ord1-maas-prod-api1",
"Content-Length" => "0",
"Content-Type" => "text/plain"
}
response.remote_ip = Fog::Rackspace::MockData.ipv4_address
response
end
end
end
end
end