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/joyent/requests/analytics/delete_instrumentation.rb
2014-01-21 16:24:24 +00:00

23 lines
489 B
Ruby

module Fog
module Joyent
class Analytics
class Real
def delete_instrumentation(id)
request(
:path => "#{@joyent_username}/analytics/instrumentations/#{id}",
:method => "DELETE",
:expects => 204
)
end
end
class Mock
def delete_instrumentation(id)
response = Excon::Response.new
response.status = 204
response
end
end
end
end
end