Add missing RETURN to restconf_config (#53324)

This commit is contained in:
Nathaniel Case 2019-03-05 08:53:23 -05:00 committed by GitHub
parent ff0285c6c4
commit 1112e1d0da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,40 @@ EXAMPLES = '''
'''
RETURN = '''
candidate:
description: The configuration sent to the device.
returned: When the method is not delete
type: dict
sample: |
{
"vpn-service": [
{
"customer-name": "red",
"vpn-id": "blue_vpn1",
"vpn-service-topology": "ietf-l3vpn-svc:any-to-any"
}
]
}
running:
description: The current running configuration on the device.
returned: When the method is not delete
type: dict
sample: |
{
"vpn-service": [
{
"vpn-id": "red_vpn2",
"customer-name": "blue",
"vpn-service-topology": "ietf-l3vpn-svc:any-to-any"
},
{
"vpn-id": "blue_vpn1",
"customer-name": "red",
"vpn-service-topology": "ietf-l3vpn-svc:any-to-any"
}
]
}
'''
import json
@ -154,8 +188,6 @@ def main():
except ConnectionError as exc:
module.fail_json(msg=str(exc), code=exc.code)
result['response'] = response
module.exit_json(**result)