fix type in doc issue
This commit is contained in:
parent
753b7d853f
commit
b7252b0815
1 changed files with 7 additions and 7 deletions
|
@ -33,12 +33,12 @@ options:
|
|||
description:
|
||||
- Name of the virtual machine.
|
||||
- This is a required parameter, if parameter C(uuid) is not supplied.
|
||||
type: string
|
||||
type: str
|
||||
uuid:
|
||||
description:
|
||||
- UUID of the instance to gather facts if known, this is VMware's unique identifier.
|
||||
- This is a required parameter, if parameter C(name) is not supplied.
|
||||
type: string
|
||||
type: str
|
||||
folder:
|
||||
description:
|
||||
- Destination folder, absolute or relative path to find an existing guest.
|
||||
|
@ -54,28 +54,28 @@ options:
|
|||
- ' folder: /folder1/datacenter1/vm'
|
||||
- ' folder: folder1/datacenter1/vm'
|
||||
- ' folder: /folder1/datacenter1/vm/folder2'
|
||||
type: string
|
||||
type: str
|
||||
cluster:
|
||||
description:
|
||||
- The name of cluster where the virtual machine is running.
|
||||
- This is a required parameter, if C(esxi_hostname) is not set.
|
||||
- C(esxi_hostname) and C(cluster) are mutually exclusive parameters.
|
||||
type: string
|
||||
type: str
|
||||
esxi_hostname:
|
||||
description:
|
||||
- The ESXi hostname where the virtual machine is running.
|
||||
- This is a required parameter, if C(cluster) is not set.
|
||||
- C(esxi_hostname) and C(cluster) are mutually exclusive parameters.
|
||||
type: string
|
||||
type: str
|
||||
datacenter:
|
||||
description:
|
||||
- The datacenter name to which virtual machine belongs to.
|
||||
type: string
|
||||
type: str
|
||||
string_send:
|
||||
description:
|
||||
- The string will be sent to the virtual machine.
|
||||
- This string can contain valid special character, alphabet and digit on the keyboard.
|
||||
type: string
|
||||
type: str
|
||||
keys_send:
|
||||
description:
|
||||
- The list of the keys will be sent to the virtual machine.
|
||||
|
|
Loading…
Reference in a new issue