From d2135c70984c2aca3a2fbdc7850a147acd677b05 Mon Sep 17 00:00:00 2001 From: GGabriele Date: Wed, 31 Aug 2016 16:58:04 +0200 Subject: [PATCH] Adding RETURN string --- network/nxos/nxos_acl.py | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/network/nxos/nxos_acl.py b/network/nxos/nxos_acl.py index 0049436bcdd..c6d0f630db6 100644 --- a/network/nxos/nxos_acl.py +++ b/network/nxos/nxos_acl.py @@ -203,6 +203,40 @@ EXAMPLES = ''' provider: "{{ nxos_provider }}" ''' +RETURN = ''' +proposed: + description: k/v pairs of parameters passed into module. + returned: always + type: dict + sample: {"action": "permit", "dest": "any", "name": "ANSIBLE", + "proto": "tcp", "seq": "10", "src": "1.1.1.1/24"} +existing: + description: k/v pairs of existing ACL entries. + type: dict + sample: {} +end_state: + description: k/v pairs of ACL entries after module execution. + returned: always + type: dict + sample: {"action": "permit", "dest": "any", "name": "ANSIBLE", + "proto": "tcp", "seq": "10", "src": "1.1.1.1/24"} +state: + description: state as sent in from the playbook + returned: always + type: string + sample: "present" +updates: + description: commands sent to the device + returned: always + type: list + sample: ["ip access-list ANSIBLE", "10 permit tcp 1.1.1.1/24 any"] +changed: + description: check to see if a change was made on the device + returned: always + type: boolean + sample: true +''' + # COMMON CODE FOR MIGRATION @@ -980,7 +1014,7 @@ def main(): else: execute_config_command(cmds, module) changed = True - existing_core, end_state, seqs = get_acl(module, name, seq) + new_existing_core, end_state, seqs = get_acl(module, name, seq) results['proposed'] = proposed results['existing'] = existing_core