From afbb229dfb94a4cc261d87f1ec42ba4a565d72c6 Mon Sep 17 00:00:00 2001 From: Kaiyan Sheng Date: Tue, 12 Jul 2016 09:08:28 -0600 Subject: [PATCH] Fix update notification method doc When updating notification method, period is required instead of optional Change-Id: I1b2b060385d676a98a1f7a2c4e7216c3dbf346ed --- docs/monasca-api-spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/monasca-api-spec.md b/docs/monasca-api-spec.md index 9d770a8d2..0bbe7b428 100644 --- a/docs/monasca-api-spec.md +++ b/docs/monasca-api-spec.md @@ -1656,7 +1656,7 @@ None. * name (string(250), required) - A descriptive name of the notifcation method. * type (string(100), required) - The type of notification method (`EMAIL`, `WEBHOOK`, or `PAGERDUTY` ). * address (string(100), required) - The email/url address to notify. -* period (integer, optional) - The interval in seconds to periodically send the notification. Only can be set as a non zero value for WEBHOOK methods. Allowed periods for Webhooks by default are 0, 60. You can change allow periods for webhooks in the api config. The notification will continue to be sent at the defined interval until the alarm it is associated with changes state. +* period (integer, required) - The interval in seconds to periodically send the notification. Only can be set as a non zero value for WEBHOOK methods. Allowed periods for Webhooks by default are 0, 60. You can change allow periods for webhooks in the api config. The notification will continue to be sent at the defined interval until the alarm it is associated with changes state. #### Request Examples ````