From ae23b74b50cdfe127a3e8f5ac50b2350488ee9be Mon Sep 17 00:00:00 2001 From: wuting Date: Fri, 11 Jun 2021 09:20:15 +0800 Subject: [PATCH] Fix notification status in notification.inc The notification 'status' values should be lowercase. Change-Id: Idcc9cdb61cb4f65b99471dee519dab21ee02c49c --- api-ref/source/notifications.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/api-ref/source/notifications.inc b/api-ref/source/notifications.inc index 3054c7cb..120ca778 100644 --- a/api-ref/source/notifications.inc +++ b/api-ref/source/notifications.inc @@ -24,12 +24,12 @@ notification state. You can filter on the notification `status` when you complete a list notifications request. The notification `status` is returned in the response body. The possible notification `status` values are: -- ``NEW``. The notification is in new state and yet to be processed. -- ``RUNNING``. The notification is in progress. -- ``FINISHED``. The notification is completed successfully. -- ``ERROR``. The notification is ended up in error. -- ``FAILED``. The notification is not processed successfully after failed once. -- ``IGNORED``. The notification is ignored by masakari engine. +- ``new``. The notification is in new state and yet to be processed. +- ``running``. The notification is in progress. +- ``finished``. The notification is completed successfully. +- ``error``. The notification is ended up in error. +- ``failed``. The notification is not processed successfully after failed once. +- ``ignored``. The notification is ignored by masakari engine. You can also filter on the basis of `source_host_uuid`, `generated_since` and `type` when you complete a list notifications request.