Class: Fog::Rackspace::Monitoring::Notification

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/rackspace/models/monitoring/notification.rb

Instance Method Summary collapse

Methods inherited from Base

#compare?, #hash

Instance Method Details

#destroyObject



33
34
35
36
# File 'lib/fog/rackspace/models/monitoring/notification.rb', line 33

def destroy
  requires :id
  service.delete_notification(id)
end

#paramsObject



14
15
16
17
18
19
20
21
# File 'lib/fog/rackspace/models/monitoring/notification.rb', line 14

def params
  options = {
    'label'     => label,
    'details'   => details,
    'type'      => type,
  }
  options.reject {|key, value| value.nil?}
end

#saveObject



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