1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix display argument defualt value (#23859)

This commit is contained in:
Ganesh Nalawade 2017-04-21 18:58:38 +05:30 committed by GitHub
parent 1cdfcf0bb9
commit 04ae977f39

View file

@ -94,9 +94,11 @@ options:
description:
- Encoding scheme to use when serializing output from the device.
This handles how to properly understand the output and apply the
conditionals path to the result set.
conditionals path to the result set. For I(rpcs) argument default
display is C(xml) and for I(commands) argument default display
is C(text).
required: false
default: 'text'
default: depends on input argument I(rpcs) or I(commands)
aliases: ['format', 'output']
choices: ['text', 'json', 'xml']
version_added: "2.3"