diff options
| author | ansible-zuul[bot] <48994755+ansible-zuul[bot]@users.noreply.github.com> | 2020-01-16 18:56:16 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-16 18:56:16 +0000 | 
| commit | 03addce56012d4bd360e18612d2eb3af04d8f01a (patch) | |
| tree | 9cf59872c2ddc7e99595db4f47c72a7ce08b6c10 /plugins/modules/vyos_lldp_global.py | |
| parent | d31b74ba6c74a6e3cdebd80b9eb5272aeb9b0fb4 (diff) | |
| parent | 6b6166151faa3d811ae0ec3010a89e518a26287b (diff) | |
| download | vyos.vyos-03addce56012d4bd360e18612d2eb3af04d8f01a.tar.gz vyos.vyos-03addce56012d4bd360e18612d2eb3af04d8f01a.zip | |
Merge pull request #59 from CaptTrews/master
Updated from network content collector
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'plugins/modules/vyos_lldp_global.py')
| -rw-r--r-- | plugins/modules/vyos_lldp_global.py | 35 | 
1 files changed, 17 insertions, 18 deletions
| diff --git a/plugins/modules/vyos_lldp_global.py b/plugins/modules/vyos_lldp_global.py index 55b1a1ab..08eb1133 100644 --- a/plugins/modules/vyos_lldp_global.py +++ b/plugins/modules/vyos_lldp_global.py @@ -36,17 +36,16 @@ ANSIBLE_METADATA = {      "supported_by": "network",  } -DOCUMENTATION = """ ---- -module: vyos_lldp_global -version_added: 2.9 -short_description: Manage link layer discovery protocol (LLDP) attributes on VyOS devices.. -description: This module manages link layer discovery protocol (LLDP) attributes on VyOS devices. +DOCUMENTATION = """module: vyos_lldp_global +short_description: Manage link layer discovery protocol (LLDP) attributes on VyOS +  devices.. +description: This module manages link layer discovery protocol (LLDP) attributes on +  VyOS devices.  notes: -  - Tested against VyOS 1.1.8 (helium). -  - This module works with connection C(network_cli). See L(the VyOS OS Platform Options,../network/user_guide/platform_vyos.html). +- Tested against VyOS 1.1.8 (helium). +- This module works with connection C(network_cli). See L(the VyOS OS Platform Options,../network/user_guide/platform_vyos.html).  author: -   - Rohit Thakur (@rohitthakur2590) +- Rohit Thakur (@rohitthakur2590)  options:    config:      description: The provided link layer discovery protocol (LLDP) configuration. @@ -54,28 +53,28 @@ options:      suboptions:        enable:          description: -          - This argument is a boolean value to enable or disable LLDP. +        - This argument is a boolean value to enable or disable LLDP.          type: bool        address:          description: -          - This argument defines management-address. +        - This argument defines management-address.          type: str        snmp:          description: -          - This argument enable the SNMP queries to LLDP database. +        - This argument enable the SNMP queries to LLDP database.          type: str        legacy_protocols:          description: -          - List of the supported legacy protocols. +        - List of the supported legacy protocols.          type: list          choices: -          - cdp -          - edp -          - fdp -          - sonmp +        - cdp +        - edp +        - fdp +        - sonmp    state:      description: -      - The state of the configuration after module completion. +    - The state of the configuration after module completion.      type: str      choices:      - merged | 
