mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 01:45:25 -07:00
Documentation for several VMware modules (#45153)
* Added return for vmware_host_config_facts * Added return for vmware_host_service_facts * Correct typo in vmware_portgroup_facts Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
ab3cd10dfe
commit
885ee25375
3 changed files with 42 additions and 3 deletions
|
@ -57,7 +57,21 @@ EXAMPLES = r'''
|
|||
delegate_to: localhost
|
||||
'''
|
||||
|
||||
RETURN = r'''#
|
||||
RETURN = r'''
|
||||
hosts_facts:
|
||||
description:
|
||||
- dict with hostname as key and dict with host config facts
|
||||
returned: always
|
||||
type: dict
|
||||
sample: {
|
||||
"10.76.33.226": {
|
||||
"Annotations.WelcomeMessage": "",
|
||||
"BufferCache.FlushInterval": 30000,
|
||||
"BufferCache.HardMaxDirty": 95,
|
||||
"BufferCache.PerFileHardMaxDirty": 50,
|
||||
"BufferCache.SoftMaxDirty": 15,
|
||||
}
|
||||
}
|
||||
'''
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue