From 0eb292438067f77a0318d57be648103f87c39a01 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Mon, 17 Dec 2018 18:23:51 +0100 Subject: [PATCH] MSC: Add type to common module parameters (#49999) --- lib/ansible/utils/module_docs_fragments/msc.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/ansible/utils/module_docs_fragments/msc.py b/lib/ansible/utils/module_docs_fragments/msc.py index ac387c2de47..4589389edd9 100644 --- a/lib/ansible/utils/module_docs_fragments/msc.py +++ b/lib/ansible/utils/module_docs_fragments/msc.py @@ -11,20 +11,24 @@ options: host: description: - IP Address or hostname of ACI Multi-Site host. + type: str required: yes aliases: [ hostname ] port: description: - Port number to be used for REST connection. - The default value depends on parameter `use_ssl`. + type: int username: description: - The username to use for authentication. + type: str default: admin password: description: - The password to use for authentication. - This option is mutual exclusive with C(private_key). If C(private_key) is provided too, it will be used instead. + type: str required: yes output_level: description: @@ -32,6 +36,7 @@ options: - C(normal) means the standard output, incl. C(current) dict - C(info) adds informational output, incl. C(previous), C(proposed) and C(sent) dicts - C(debug) adds debugging output, incl. C(filter_string), C(method), C(response), C(status) and C(url) information + type: str choices: [ debug, info, normal ] default: normal timeout: