summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/cloud/centurylink/clc_modify_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/cloud/centurylink/clc_modify_server.py')
-rw-r--r--lib/ansible/modules/cloud/centurylink/clc_modify_server.py18
1 files changed, 2 insertions, 16 deletions
diff --git a/lib/ansible/modules/cloud/centurylink/clc_modify_server.py b/lib/ansible/modules/cloud/centurylink/clc_modify_server.py
index cda543adff..8c23d5ce9e 100644
--- a/lib/ansible/modules/cloud/centurylink/clc_modify_server.py
+++ b/lib/ansible/modules/cloud/centurylink/clc_modify_server.py
@@ -26,49 +26,35 @@ options:
cpu:
description:
- How many CPUs to update on the server
- required: False
- default: None
memory:
description:
- Memory (in GB) to set to the server.
- required: False
- default: None
anti_affinity_policy_id:
description:
- The anti affinity policy id to be set for a hyper scale server.
This is mutually exclusive with 'anti_affinity_policy_name'
- required: False
- default: None
anti_affinity_policy_name:
description:
- The anti affinity policy name to be set for a hyper scale server.
This is mutually exclusive with 'anti_affinity_policy_id'
- required: False
- default: None
alert_policy_id:
description:
- The alert policy id to be associated to the server.
This is mutually exclusive with 'alert_policy_name'
- required: False
- default: None
alert_policy_name:
description:
- The alert policy name to be associated to the server.
This is mutually exclusive with 'alert_policy_id'
- required: False
- default: None
state:
description:
- The state to insure that the provided resources are in.
default: 'present'
- required: False
choices: ['present', 'absent']
wait:
description:
- Whether to wait for the provisioning tasks to finish before returning.
- default: True
- required: False
- choices: [ True, False]
+ type: bool
+ default: 'yes'
requirements:
- python = 2.7
- requests >= 2.5.0