Class: Fog::Rackspace::Monitoring::Notification
- Defined in:
- lib/fog/rackspace/models/monitoring/notification.rb
Instance Method Summary collapse
Methods inherited from Base
Instance Method Details
#destroy ⇒ Object
33 34 35 36 |
# File 'lib/fog/rackspace/models/monitoring/notification.rb', line 33 def destroy requires :id service.delete_notification(id) end |
#params ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/fog/rackspace/models/monitoring/notification.rb', line 14 def params = { 'label' => label, 'details' => details, 'type' => type, } .reject {|key, value| value.nil?} end |
#save ⇒ Object
23 24 25 26 27 28 29 30 31 |
# File 'lib/fog/rackspace/models/monitoring/notification.rb', line 23 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 |