diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 44d93b1d1..208c6240d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,10 +1,5 @@
---
repos:
- - repo: https://github.com/ansible-network/collection_prep
- rev: 1.1.1
- hooks:
- - id: update-docs
-
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
diff --git a/docs/ansible.netcommon.cli_backup_module.rst b/docs/ansible.netcommon.cli_backup_module.rst
index 6785696c9..91ba57f8c 100644
--- a/docs/ansible.netcommon.cli_backup_module.rst
+++ b/docs/ansible.netcommon.cli_backup_module.rst
@@ -1,14 +1,19 @@
-.. _ansible.netcommon.cli_backup_module:
+.. Created with antsibull-docs 2.9.0
-****************************
-ansible.netcommon.cli_backup
-****************************
+ansible.netcommon.cli_backup module -- Back up device configuration from network devices over network\_cli
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-**Back up device configuration from network devices over network_cli**
+This module is part of the `ansible.netcommon collection
Key | -Returned | -Description | -
---|---|---|
-
- backup_path
-
-
- string
-
- |
- always | -
- The full path to the backup file
- - Sample:
- /playbooks/ansible/backup/hostname_config.2016-07-16@22:28:34
- |
-
Parameter | -Choices/Defaults | -Configuration | -Comments | -
---|---|---|---|
-
- become
-
-
- boolean
-
- |
-
- Default: "no"
- |
-
- ini entries:
-
- [privilege_escalation] env:ANSIBLE_BECOME
- var: ansible_become
- |
-
- The become option will instruct the CLI session to attempt privilege escalation on platforms that support it. Normally this means transitioning from user mode to
- enable mode in the CLI session. If become is set to True and the remote device does not support privilege escalation or the privilege has already been elevated, then this option is silently ignored.Can be configured from the CLI via the
- --become or -b options. |
-
-
- become_method
-
-
- string
-
- |
-
- Default: "sudo"
- |
-
- ini entries:
-
- [privilege_escalation] env:ANSIBLE_BECOME_METHOD
- var: ansible_become_method
- |
-
- This option allows the become method to be specified in for handling privilege escalation. Typically the become_method value is set to
- enable but could be defined as other values. |
-
-
- ca_path
-
-
- path
-
- added in 5.2.0
- |
- - | -
- var: ansible_httpapi_ca_path
- |
-
- Path to CA cert bundle to use.
- |
-
-
- ciphers
-
-
- list
- / elements=string
-
- added in 5.0.0
- |
- - | -
- var: ansible_httpapi_ciphers
- |
-
- SSL/TLS Ciphers to use for requests
- When a list is provided, all ciphers are joined in order with
- : See the OpenSSL Cipher List Format for more details.
- The available ciphers is dependent on the Python and OpenSSL/LibreSSL versions.
- This option will have no effect on ansible-core<2.14 but a warning will be emitted.
- |
-
-
- client_cert
-
-
- -
-
- added in 5.2.0
- |
- - | -
- var: ansible_httpapi_client_cert
- |
-
- PEM formatted certificate chain file to be used for SSL client authentication. This file can also include the key as well, and if the key is included, client_key is not required
- |
-
-
- client_key
-
-
- -
-
- added in 5.2.0
- |
- - | -
- var: ansible_httpapi_client_key
- |
-
- PEM formatted file that contains the private key to be used for SSL client authentication. If client_cert contains both the certificate and key, this option is not required.
- |
-
-
- host
-
-
- string
-
- |
-
- Default: "inventory_hostname"
- |
-
- var: inventory_hostname
- var: ansible_host
- |
-
- Specifies the remote device FQDN or IP address to establish the HTTP(S) connection to.
- |
-
-
- http_agent
-
-
- -
-
- added in 5.2.0
- |
- - | -
- var: ansible_httpapi_http_agent
- |
-
- User-Agent to use in the request.
- |
-
-
- import_modules
-
-
- boolean
-
- |
-
- Default: "yes"
- |
-
- ini entries:
-
- [ansible_network] env:ANSIBLE_NETWORK_IMPORT_MODULES
- var: ansible_network_import_modules
- |
-
- Reduce CPU usage and network module execution time by enabling direct execution. Instead of the module being packaged and executed by the shell, it will be directly executed by the Ansible control node using the same python interpreter as the Ansible process. Note- Incompatible with
- asynchronous mode . Note- Python 3 and Ansible 2.9.16 or greater required. Note- With Ansible 2.9.x fully qualified modules names are required in tasks. |
-
-
- network_os
-
-
- string
-
- |
- - | -
- var: ansible_network_os
- |
-
- Configures the device platform network operating system. This value is used to load the correct httpapi plugin to communicate with the remote device
- |
-
-
- password
-
-
- string
-
- |
- - | -
- var: ansible_password
- var: ansible_httpapi_pass
- var: ansible_httpapi_password
- |
-
- Configures the user password used to authenticate to the remote device when needed for the device API.
- |
-
-
- persistent_command_timeout
-
-
- integer
-
- |
-
- Default: 30
- |
-
- ini entries:
-
- [persistent_connection] env:ANSIBLE_PERSISTENT_COMMAND_TIMEOUT
- var: ansible_command_timeout
- |
-
- Configures, in seconds, the amount of time to wait for a command to return from the remote device. If this timer is exceeded before the command returns, the connection plugin will raise an exception and close.
- |
-
-
- persistent_connect_timeout
-
-
- integer
-
- |
-
- Default: 30
- |
-
- ini entries:
-
- [persistent_connection] env:ANSIBLE_PERSISTENT_CONNECT_TIMEOUT
- var: ansible_connect_timeout
- |
-
- Configures, in seconds, the amount of time to wait when trying to initially establish a persistent connection. If this value expires before the connection to the remote device is completed, the connection will fail.
- |
-
-
- persistent_log_messages
-
-
- boolean
-
- |
-
- Default: "no"
- |
-
- ini entries:
-
- [persistent_connection] env:ANSIBLE_PERSISTENT_LOG_MESSAGES
- var: ansible_persistent_log_messages
- |
-
- This flag will enable logging the command executed and response received from target device in the ansible log file. For this option to work 'log_path' ansible configuration option is required to be set to a file path with write access.
- Be sure to fully understand the security implications of enabling this option as it could create a security vulnerability by logging sensitive information in log file.
- |
-
-
- platform_type
-
-
- string
-
- |
- - | -
- env:ANSIBLE_PLATFORM_TYPE
- var: ansible_platform_type
- |
-
- Set type of platform.
- |
-
-
- port
-
-
- integer
-
- |
- - | -
- ini entries:
-
- [defaults] env:ANSIBLE_REMOTE_PORT
- var: ansible_httpapi_port
- |
-
- Specifies the port on the remote device that listens for connections when establishing the HTTP(S) connection.
- When unspecified, will pick 80 or 443 based on the value of use_ssl.
- |
-
-
- remote_user
-
-
- string
-
- |
- - | -
- ini entries:
-
- [defaults] env:ANSIBLE_REMOTE_USER
- var: ansible_user
- |
-
- The username used to authenticate to the remote device when the API connection is first established. If the remote_user is not specified, the connection will use the username of the logged in user.
- Can be configured from the CLI via the
- --user or -u options. |
-
-
- session_key
-
-
- dictionary
-
- |
- - | -
- var: ansible_httpapi_session_key
- |
-
- Configures the session key to be used to authenticate to the remote device when needed for the device API.
- This should contain a dictionary representing the key name and value for the token.
- When specified, password is ignored.
- |
-
-
- use_proxy
-
-
- boolean
-
- |
-
- Default: "yes"
- |
-
- var: ansible_httpapi_use_proxy
- |
-
- Whether to use https_proxy for requests.
- |
-
-
- use_ssl
-
-
- boolean
-
- |
-
- Default: "no"
- |
-
- var: ansible_httpapi_use_ssl
- |
-
- Whether to connect using SSL (HTTPS) or not (HTTP).
- |
-
-
- validate_certs
-
-
- boolean
-
- |
-
- Default: "yes"
- |
-
- var: ansible_httpapi_validate_certs
- |
-
- Whether to validate SSL certificates
- |
-
Parameter |
+ Comments |
+
---|---|
+
+ become + ++ boolean + + + |
+
+ The become option will instruct the CLI session to attempt privilege escalation on platforms that support it. Normally this means transitioning from user mode to Can be configured from the CLI via the Choices: +
Configuration: +
|
+
+
+ become_method + ++ string + + + |
+
+ This option allows the become method to be specified in for handling privilege escalation. Typically the become_method value is set to Default: Configuration: +
|
+
+
+ ca_path + ++ path + +added in ansible.netcommon 5.2.0 + + |
+
+ Path to CA cert bundle to use. +Configuration: +
|
+
+
+ ciphers + ++ list + / elements=string + +added in ansible.netcommon 5.0.0 + + |
+
+ SSL/TLS Ciphers to use for requests +When a list is provided, all ciphers are joined in order with See the OpenSSL Cipher List Format for more details. +The available ciphers is dependent on the Python and OpenSSL/LibreSSL versions. +This option will have no effect on ansible-core<2.14 but a warning will be emitted. +Configuration: +
|
+
+
+ client_cert + ++ string + +added in ansible.netcommon 5.2.0 + + |
+
+ PEM formatted certificate chain file to be used for SSL client authentication. This file can also include the key as well, and if the key is included, client_key is not required +Configuration: +
|
+
+
+ client_key + ++ string + +added in ansible.netcommon 5.2.0 + + |
+
+ PEM formatted file that contains the private key to be used for SSL client authentication. If client_cert contains both the certificate and key, this option is not required. +Configuration: +
|
+
+
+ host + ++ string + + + |
+
+ Specifies the remote device FQDN or IP address to establish the HTTP(S) connection to. +Default: Configuration: +
|
+
+
+ http_agent + ++ string + +added in ansible.netcommon 5.2.0 + + |
+
+ User-Agent to use in the request. +Configuration: +
|
+
+
+ import_modules + ++ boolean + + + |
+
+ Reduce CPU usage and network module execution time by enabling direct execution. Instead of the module being packaged and executed by the shell, it will be directly executed by the Ansible control node using the same python interpreter as the Ansible process. Note- Incompatible with Choices: +
Configuration: +
|
+
+
+ network_os + ++ string + + + |
+
+ Configures the device platform network operating system. This value is used to load the correct httpapi plugin to communicate with the remote device +Configuration: +
|
+
+
+ password + ++ string + + + |
+
+ Configures the user password used to authenticate to the remote device when needed for the device API. +Configuration: +
|
+
+
+ persistent_command_timeout + ++ integer + + + |
+
+ Configures, in seconds, the amount of time to wait for a command to return from the remote device. If this timer is exceeded before the command returns, the connection plugin will raise an exception and close. +Default: Configuration: +
|
+
+
+ persistent_connect_timeout + ++ integer + + + |
+
+ Configures, in seconds, the amount of time to wait when trying to initially establish a persistent connection. If this value expires before the connection to the remote device is completed, the connection will fail. +Default: Configuration: +
|
+
+
+ persistent_log_messages + ++ boolean + + + |
+
+ This flag will enable logging the command executed and response received from target device in the ansible log file. For this option to work 'log_path' ansible configuration option is required to be set to a file path with write access. +Be sure to fully understand the security implications of enabling this option as it could create a security vulnerability by logging sensitive information in log file. +Choices: +
Configuration: +
|
+
+
+ platform_type + ++ string + + + |
+
+ Set type of platform. +Configuration: +
|
+
+
+ port + ++ integer + + + |
+
+ Specifies the port on the remote device that listens for connections when establishing the HTTP(S) connection. +When unspecified, will pick 80 or 443 based on the value of use_ssl. +Configuration: +
|
+
+
+ remote_user + ++ string + + + |
+
+ The username used to authenticate to the remote device when the API connection is first established. If the remote_user is not specified, the connection will use the username of the logged in user. +Can be configured from the CLI via the Configuration: +
|
+
+
+ session_key + ++ dictionary + + + |
+
+ Configures the session key to be used to authenticate to the remote device when needed for the device API. +This should contain a dictionary representing the key name and value for the token. +When specified, password is ignored. +Configuration: +
|
+
+
+ use_proxy + ++ boolean + + + |
+
+ Whether to use https_proxy for requests. +Choices: +
Configuration: +
|
+
+
+ use_ssl + ++ boolean + + + |
+
+ Whether to connect using SSL (HTTPS) or not (HTTP). +Choices: +
Configuration: +
|
+
+
+ validate_certs + ++ boolean + + + |
+
+ Whether to validate SSL certificates +Choices: +
Configuration: +
|
+
Key | -Returned | -Description | -
---|---|---|
-
- output
-
-
- list
-
- |
- always | -
- output of each command is an element in this list
- - Sample:
- ['success', 'success', '', 'warning .. something']
- |
-
Parameter |
+ Comments |
+
---|---|
+
+ password + ++ string + / required + + + |
+
+ The password to be hashed. + |
+
+
+ salt + ++ string + + + |
+
+ Mention the salt to hash the password. + |
+
Parameter | -Choices/Defaults | -Configuration | -Comments | -
---|---|---|---|
-
- data
-
-
- string
- / required
-
- |
- - | -- | -
- This option represents a string containing the range of vlans.
- |
-
Parameter |
+ Comments |
+
---|---|
+
+ data + ++ string + / required + + + |
+
+ This option represents a string containing the range of vlans. + |
+