-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vmware_host_acceptance_info: Fix module doc (#1887)
vmware_host_acceptance_info: Fix module doc SUMMARY Fix documentation of new module vmware_host_acceptance_info. ISSUE TYPE Docs Pull Request COMPONENT NAME vmware_host_acceptance_info ADDITIONAL INFORMATION #1877 Reviewed-by: Alexander Nikitin <[email protected]>
- Loading branch information
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# -*- coding: utf-8 -*- | ||
|
||
# Copyright: (c) 2018, Abhijeet Kasurde <[email protected]> | ||
# Copyright: (c) 2023, Mario Lenz <[email protected]> | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
|
@@ -12,23 +13,24 @@ | |
DOCUMENTATION = r''' | ||
--- | ||
module: vmware_host_acceptance_info | ||
short_description: Manage the host acceptance level of an ESXi host | ||
short_description: Gather host acceptance level of ESXi hosts | ||
description: | ||
- This module can be used to manage the host acceptance level of an ESXi host. | ||
- This module can be used to gather the host acceptance level of ESXi hosts. | ||
- The host acceptance level controls the acceptance level of each VIB on a ESXi host. | ||
author: | ||
- Abhijeet Kasurde (@Akasurde) | ||
- Mario Lenz (@mariolenz) | ||
options: | ||
cluster_name: | ||
description: | ||
- Name of the cluster. | ||
- Acceptance level of all ESXi host system in the given cluster will be managed. | ||
- Acceptance level of all ESXi host system in the given cluster will be gathered. | ||
- If C(esxi_hostname) is not given, this parameter is required. | ||
type: str | ||
esxi_hostname: | ||
description: | ||
- ESXi hostname. | ||
- Acceptance level of this ESXi host system will be managed. | ||
- Acceptance level of this ESXi host system will be gathered. | ||
- If C(cluster_name) is not given, this parameter is required. | ||
type: str | ||
extends_documentation_fragment: | ||
|