mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
16 lines
316 B
Ruby
16 lines
316 B
Ruby
module Fog
|
|
module Rackspace
|
|
class Monitoring
|
|
class Real
|
|
def delete_notification(notification_id)
|
|
request(
|
|
:expects => [204],
|
|
:method => 'DELETE',
|
|
:path => "notifications/#{notification_id}"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|