From 9a338b05eb52b13056366f0cafca759513110e32 Mon Sep 17 00:00:00 2001 From: John R Barker Date: Thu, 8 Sep 2016 10:54:21 +0100 Subject: [PATCH] Document a10_server new options (#2876) * Document write_config and validate_certs --- network/a10/a10_server.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/network/a10/a10_server.py b/network/a10/a10_server.py index 9716b43efbb..d06a2a661af 100644 --- a/network/a10/a10_server.py +++ b/network/a10/a10_server.py @@ -78,6 +78,25 @@ options: required: false default: present choices: ['present', 'absent'] + write_config: + description: + - If C(yes), any changes will cause a write of the running configuration + to non-volatile memory. This will save I(all) configuration changes, + including those that may have been made manually or through other modules, + so care should be taken when specifying C(yes). + required: false + version_added: 2.2 + default: "no" + choices: ["yes", "no"] + validate_certs: + description: + - If C(no), SSL certificates will not be validated. This should only be used + on personally controlled devices using self-signed certificates. + required: false + version_added: 2.2 + default: 'yes' + choices: ['yes', 'no'] + ''' EXAMPLES = '''