mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 12:51:25 -07:00
MSC: Add type to common module parameters (#49999)
This commit is contained in:
parent
e8885ee4e8
commit
0eb2924380
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue