MSC: Add type to common module parameters (#49999)

pull/50054/head
Dag Wieers 6 years ago committed by Alicia Cozine
parent e8885ee4e8
commit 0eb2924380

@ -11,20 +11,24 @@ options:
host: host:
description: description:
- IP Address or hostname of ACI Multi-Site host. - IP Address or hostname of ACI Multi-Site host.
type: str
required: yes required: yes
aliases: [ hostname ] aliases: [ hostname ]
port: port:
description: description:
- Port number to be used for REST connection. - Port number to be used for REST connection.
- The default value depends on parameter `use_ssl`. - The default value depends on parameter `use_ssl`.
type: int
username: username:
description: description:
- The username to use for authentication. - The username to use for authentication.
type: str
default: admin default: admin
password: password:
description: description:
- The password to use for authentication. - 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. - 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 required: yes
output_level: output_level:
description: description:
@ -32,6 +36,7 @@ options:
- C(normal) means the standard output, incl. C(current) dict - 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(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 - 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 ] choices: [ debug, info, normal ]
default: normal default: normal
timeout: timeout:

Loading…
Cancel
Save