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_agent_token.rb
2013-07-24 10:48:05 -07:00

17 lines
301 B
Ruby

module Fog
module Rackspace
class Monitoring
class Real
def delete_agent_token(token_id)
request(
:expects => [204],
:method => 'DELETE',
:path => "agent_tokens/#{token_id}"
)
end
end
end
end
end