1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

delete an instrumentation

This commit is contained in:
Kevin Olbrich 2013-12-13 01:29:45 +00:00
parent bc9e04c31f
commit f11b9aa58e

View file

@ -0,0 +1,15 @@
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
end
end
end