mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
Python
57 lines
1.9 KiB
Python
# -*- 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)
|
|
|
|
|
|
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
|
|
default: ''
|
|
username:
|
|
description:
|
|
- Username used for accessing Avi controller. The default value is the environment variable C(AVI_USERNAME).
|
|
type: str
|
|
default: ''
|
|
password:
|
|
description:
|
|
- Password of Avi user in Avi controller. The default value is the environment variable C(AVI_PASSWORD).
|
|
type: str
|
|
default: ''
|
|
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.
|
|
type: dict
|
|
version_added: "2.5"
|
|
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
|
|
version_added: "2.5"
|
|
notes:
|
|
- For more information on using Ansible to manage Avi Network devices see U(https://www.ansible.com/ansible-avi-networks).
|
|
'''
|