removed empty aliases from doc string

This commit is contained in:
Siva Popuri 2015-07-23 08:56:51 -05:00 committed by Matt Clay
parent a2c2efb2ae
commit fd09597267

View file

@ -35,19 +35,17 @@ options:
- The name of the alert policy. This is mutually exclusive with id - The name of the alert policy. This is mutually exclusive with id
required: False required: False
default: None default: None
aliases: []
id: id:
description: description:
- The alert policy id. This is mutually exclusive with name - The alert policy id. This is mutually exclusive with name
required: False required: False
default: None default: None
aliases: []
alert_recipients: alert_recipients:
description: description:
- A list of recipient email ids to notify the alert. - A list of recipient email ids to notify the alert.
This is required for state 'present' This is required for state 'present'
required: False required: False
aliases: [] default: None
metric: metric:
description: description:
- The metric on which to measure the condition that will trigger the alert. - The metric on which to measure the condition that will trigger the alert.
@ -55,14 +53,12 @@ options:
required: False required: False
default: None default: None
choices: ['cpu','memory','disk'] choices: ['cpu','memory','disk']
aliases: []
duration: duration:
description: description:
- The length of time in minutes that the condition must exceed the threshold. - The length of time in minutes that the condition must exceed the threshold.
This is required for state 'present' This is required for state 'present'
required: False required: False
default: None default: None
aliases: []
threshold: threshold:
description: description:
- The threshold that will trigger the alert when the metric equals or exceeds it. - The threshold that will trigger the alert when the metric equals or exceeds it.
@ -70,7 +66,6 @@ options:
This number represents a percentage and must be a value between 5.0 - 95.0 that is a multiple of 5.0 This number represents a percentage and must be a value between 5.0 - 95.0 that is a multiple of 5.0
required: False required: False
default: None default: None
aliases: []
state: state:
description: description:
- Whether to create or delete the policy. - Whether to create or delete the policy.