mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add config_format note in junos_facts docs (#25125)
Fixes #24610 Add note to mention config_format value dependency.
This commit is contained in:
parent
47738eb1dd
commit
d5ad3093d6
1 changed files with 5 additions and 0 deletions
|
@ -51,10 +51,15 @@ options:
|
|||
- The I(config_format) argument specifies the format of the configuration
|
||||
when serializing output from the device. This argument is applicable
|
||||
only when C(config) value is present in I(gather_subset).
|
||||
The I(config_format) should be supported by the junos version running on
|
||||
device.
|
||||
required: false
|
||||
default: text
|
||||
choices: ['xml', 'set', 'text', 'json']
|
||||
version_added: "2.3"
|
||||
notes:
|
||||
- Ensure I(config_format) used to retrieve configuration from device
|
||||
is supported by junos version running on device.
|
||||
"""
|
||||
|
||||
EXAMPLES = """
|
||||
|
|
Loading…
Reference in a new issue