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/models/monitoring/notification.rb
Matt Darby 72e52e70be Revert "Moving Rackspace logic to fog-rackspace"
This reverts commit d6ecb19d24.

Conflicts:
	fog.gemspec
2014-12-10 11:30:34 -05:00

40 lines
894 B
Ruby

require 'fog/core/model'
require 'fog/rackspace/models/monitoring/base'
module Fog
module Rackspace
class Monitoring
class Notification < Fog::Rackspace::Monitoring::Base
identity :id
attribute :label
attribute :details
attribute :type
def params
options = {
'label' => label,
'details' => details,
'type' => type,
}
options.reject {|key, value| value.nil?}
end
def save
if identity
data = service.update_notification(identity, params)
else
data = service.create_notification(params)
self.id = data.headers['X-Object-ID']
end
true
end
def destroy
requires :id
service.delete_notification(id)
end
end
end
end
end