# File lib/fog/rackspace/models/monitoring/notifications.rb, line 12defall(options={})
data = service.list_notifications(options).bodymarker = data['metadata']['next_marker']
load(data['values'])
end
get(notification_id)click to toggle source
# File lib/fog/rackspace/models/monitoring/notifications.rb, line 19defget(notification_id)
data = service.get_notification(notification_id).bodynew(data)
rescueFog::Rackspace::Monitoring::NotFoundnilend