Add types to vmware REST client/VCA doc fragments (#50001)
This commit is contained in:
parent
653c3da500
commit
3bcc0c0498
2 changed files with 39 additions and 37 deletions
|
@ -1,56 +1,53 @@
|
||||||
# (c) 2016, Charles Paul <cpaul@ansible.com>
|
# -*- coding: utf-8 -*-
|
||||||
#
|
|
||||||
# This file is part of Ansible
|
# Copyright: (c) 2016, Charles Paul <cpaul@ansible.com>
|
||||||
#
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# Ansible is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# Ansible is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
|
|
||||||
class ModuleDocFragment(object):
|
class ModuleDocFragment(object):
|
||||||
# Parameters for VCA modules
|
# Parameters for VCA modules
|
||||||
DOCUMENTATION = """
|
DOCUMENTATION = r'''
|
||||||
options:
|
options:
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- The vca username or email address, if not set the environment variable C(VCA_USER) is checked for the username.
|
- The vca username or email address, if not set the environment variable C(VCA_USER) is checked for the username.
|
||||||
aliases: ['user']
|
type: str
|
||||||
|
aliases: [ user ]
|
||||||
password:
|
password:
|
||||||
description:
|
description:
|
||||||
- The vca password, if not set the environment variable C(VCA_PASS) is checked for the password.
|
- The vca password, if not set the environment variable C(VCA_PASS) is checked for the password.
|
||||||
aliases: ['pass', 'passwd']
|
type: str
|
||||||
|
aliases: [ pass, passwd]
|
||||||
org:
|
org:
|
||||||
description:
|
description:
|
||||||
- The org to login to for creating vapp. This option is required when the C(service_type) is I(vdc).
|
- The org to login to for creating vapp.
|
||||||
|
- This option is required when the C(service_type) is I(vdc).
|
||||||
|
type: str
|
||||||
instance_id:
|
instance_id:
|
||||||
description:
|
description:
|
||||||
- The instance id in a vchs environment to be used for creating the vapp.
|
- The instance ID in a vchs environment to be used for creating the vapp.
|
||||||
|
type: str
|
||||||
host:
|
host:
|
||||||
description:
|
description:
|
||||||
- The authentication host to be used when service type is vcd.
|
- The authentication host to be used when service type is vcd.
|
||||||
|
type: str
|
||||||
api_version:
|
api_version:
|
||||||
description:
|
description:
|
||||||
- The api version to be used with the vca.
|
- The API version to be used with the vca.
|
||||||
|
type: str
|
||||||
default: "5.7"
|
default: "5.7"
|
||||||
service_type:
|
service_type:
|
||||||
description:
|
description:
|
||||||
- The type of service we are authenticating against.
|
- The type of service we are authenticating against.
|
||||||
|
type: str
|
||||||
|
choices: [ vca, vcd, vchs ]
|
||||||
default: vca
|
default: vca
|
||||||
choices: [ "vca", "vchs", "vcd" ]
|
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- If the object should be added or removed.
|
- Whether the object should be added or removed.
|
||||||
|
type: str
|
||||||
|
choices: [ absent, present ]
|
||||||
default: present
|
default: present
|
||||||
choices: [ "present", "absent" ]
|
|
||||||
verify_certs:
|
verify_certs:
|
||||||
description:
|
description:
|
||||||
- If the certificates of the authentication is to be verified.
|
- If the certificates of the authentication is to be verified.
|
||||||
|
@ -59,8 +56,10 @@ options:
|
||||||
vdc_name:
|
vdc_name:
|
||||||
description:
|
description:
|
||||||
- The name of the vdc where the gateway is located.
|
- The name of the vdc where the gateway is located.
|
||||||
|
type: str
|
||||||
gateway_name:
|
gateway_name:
|
||||||
description:
|
description:
|
||||||
- The name of the gateway of the vdc where the rule should be added.
|
- The name of the gateway of the vdc where the rule should be added.
|
||||||
|
type: str
|
||||||
default: gateway
|
default: gateway
|
||||||
"""
|
'''
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Copyright: (c) 2018, Ansible Project
|
# Copyright: (c) 2018, Ansible Project
|
||||||
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
@ -5,35 +7,36 @@
|
||||||
|
|
||||||
class ModuleDocFragment(object):
|
class ModuleDocFragment(object):
|
||||||
# Parameters for VMware REST Client based modules
|
# Parameters for VMware REST Client based modules
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = r'''
|
||||||
options:
|
options:
|
||||||
hostname:
|
hostname:
|
||||||
description:
|
description:
|
||||||
- The hostname or IP address of the vSphere vCenter server.
|
- The hostname or IP address of the vSphere vCenter server.
|
||||||
- If the value is not specified in the task, the value of environment variable C(VMWARE_HOST) will be used instead.
|
- If the value is not specified in the task, the value of environment variable C(VMWARE_HOST) will be used instead.
|
||||||
required: False
|
type: str
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- The username of the vSphere vCenter server.
|
- The username of the vSphere vCenter server.
|
||||||
- If the value is not specified in the task, the value of environment variable C(VMWARE_USER) will be used instead.
|
- If the value is not specified in the task, the value of environment variable C(VMWARE_USER) will be used instead.
|
||||||
aliases: ['user', 'admin']
|
type: str
|
||||||
|
aliases: [ admin, user ]
|
||||||
password:
|
password:
|
||||||
description:
|
description:
|
||||||
- The password of the vSphere vCenter server.
|
- The password of the vSphere vCenter server.
|
||||||
- If the value is not specified in the task, the value of environment variable C(VMWARE_PASSWORD) will be used instead.
|
- If the value is not specified in the task, the value of environment variable C(VMWARE_PASSWORD) will be used instead.
|
||||||
required: False
|
type: str
|
||||||
aliases: ['pass', 'pwd']
|
aliases: [ pass, pwd ]
|
||||||
validate_certs:
|
validate_certs:
|
||||||
description:
|
description:
|
||||||
- Allows connection when SSL certificates are not valid. Set to C(false) when certificates are not trusted.
|
- Allows connection when SSL certificates are not valid.
|
||||||
|
- Set to C(false) when certificates are not trusted.
|
||||||
- If the value is not specified in the task, the value of environment variable C(VMWARE_VALIDATE_CERTS) will be used instead.
|
- If the value is not specified in the task, the value of environment variable C(VMWARE_VALIDATE_CERTS) will be used instead.
|
||||||
default: True
|
|
||||||
type: bool
|
type: bool
|
||||||
required: False
|
default: true
|
||||||
protocol:
|
protocol:
|
||||||
description:
|
description:
|
||||||
- The connection to protocol.
|
- The connection to protocol.
|
||||||
choices: ['https', 'http']
|
type: str
|
||||||
default: 'https'
|
choices: [ https, http ]
|
||||||
required: False
|
default: https
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue