Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vmware_host_acceptance_info: Fix module doc #1887

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions plugins/modules/vmware_host_acceptance_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:
Expand Down