Server IP : 85.214.239.14 / Your IP : 18.118.1.63 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/network/plugins/doc_fragments/ |
Upload File : |
# -*- coding: utf-8 -*- # Created on December 12, 2016 # @author: Gaurav Rastogi (grastogi@avinetworks.com) # Avi Version: 16.3.4 # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import absolute_import, division, print_function __metaclass__ = type class ModuleDocFragment(object): # Avi common documentation fragment DOCUMENTATION = r''' options: controller: description: - IP address or hostname of the controller. The default value is the environment variable C(AVI_CONTROLLER). type: str username: description: - Username used for accessing Avi controller. The default value is the environment variable C(AVI_USERNAME). type: str password: description: - Password of Avi user in Avi controller. The default value is the environment variable C(AVI_PASSWORD). type: str tenant: description: - Name of tenant used for all Avi API calls and context of object. type: str default: admin tenant_uuid: description: - UUID of tenant used for all Avi API calls and context of object. type: str default: '' api_version: description: - Avi API version of to use for Avi API and objects. type: str default: 16.4.4 avi_credentials: description: - Avi Credentials dictionary which can be used in lieu of enumerating Avi Controller login details. suboptions: controller: description: - Avi controller IP or SQDN username: description: - Avi controller username password: description: - Avi controller password api_version: description: - Avi controller version default: 16.4.4 tenant: description: - Avi controller tenant default: admin tenant_uuid: description: - Avi controller tenant UUID default: '' port: description: - Avi controller port token: description: - Avi controller API token default: '' timeout: description: - Avi controller request timeout default: 300 session_id: description: - Avi controller API session id to reuse existing session with csrftoken default: '' csrftoken: description: - Avi controller API csrftoken to reuse existing session with session id default: '' type: dict api_context: description: - Avi API context that includes current session ID and CSRF Token. - This allows user to perform single login and re-use the session. type: dict avi_disable_session_cache_as_fact: description: - It disables avi session information to be cached as a fact. type: bool default: false notes: - For more information on using Ansible to manage Avi Network devices see U(https://www.ansible.com/ansible-avi-networks). '''