From b7252b0815c3f8f822b25aed82bce29cf7c88e72 Mon Sep 17 00:00:00 2001 From: Tomorrow9 Date: Wed, 3 Jul 2019 11:05:34 +0800 Subject: [PATCH] fix type in doc issue --- .../modules/cloud/vmware/vmware_guest_sendkey.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ansible/modules/cloud/vmware/vmware_guest_sendkey.py b/lib/ansible/modules/cloud/vmware/vmware_guest_sendkey.py index 738ea150ba5..8d4bc3edd83 100644 --- a/lib/ansible/modules/cloud/vmware/vmware_guest_sendkey.py +++ b/lib/ansible/modules/cloud/vmware/vmware_guest_sendkey.py @@ -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.