multiple modules 2: fixed markups in doc (#5237)

* multiple modules 2: fixed markups in doc

* Update plugins/modules/cloud/misc/proxmox_template.py

Co-authored-by: Felix Fontein <felix@fontein.de>

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky 2022-09-06 17:31:25 +12:00 committed by GitHub
parent 6e011f00f4
commit 999fc475a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 86 additions and 86 deletions

View file

@ -22,45 +22,45 @@ options:
type: str
src:
description:
- path to uploaded file
- required only for C(state=present)
- Path to uploaded file.
- Required only for I(state=present).
type: path
template:
description:
- the template name
- Required for state C(absent) to delete a template.
- Required for state C(present) to download an appliance container template (pveam).
- The template name.
- Required for I(state=absent) to delete a template.
- Required for I(state=present) to download an appliance container template (pveam).
type: str
content_type:
description:
- content type
- required only for C(state=present)
- Content type.
- Required only for I(state=present).
type: str
default: 'vztmpl'
choices: ['vztmpl', 'iso']
storage:
description:
- target storage
- Target storage.
type: str
default: 'local'
timeout:
description:
- timeout for operations
- Timeout for operations.
type: int
default: 30
force:
description:
- can be used only with C(state=present), exists template will be overwritten
- It can only be used with I(state=present), existing template will be overwritten.
type: bool
default: false
state:
description:
- Indicate desired state of the template
- Indicate desired state of the template.
type: str
choices: ['present', 'absent']
default: present
notes:
- Requires proxmoxer and requests modules on host. This modules can be installed with pip.
- Requires C(proxmoxer) and C(requests) modules on host. This modules can be installed with M(ansible.builtin.pip).
author: Sergei Antipov (@UnderGreen)
extends_documentation_fragment: community.general.proxmox.documentation
'''