mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-07 11:13:10 +00:00
add examples
This commit is contained in:
@@ -61,6 +61,32 @@ extends_documentation_fragment: vmware.documentation
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
Examples from an ansible playbook ...
|
||||
- name: poweroff the VM
|
||||
vmware_guest_state:
|
||||
validate_certs: False
|
||||
hostname: 192.168.1.209
|
||||
username: administrator@vsphere.local
|
||||
password: vmware
|
||||
guest: testvm_2
|
||||
vm_folder: testvms
|
||||
state: powered_off
|
||||
ignore_errors: True
|
||||
|
||||
- name: remove the VM
|
||||
vmware_guest_state:
|
||||
validate_certs: False
|
||||
hostname: 192.168.1.209
|
||||
username: administrator@vsphere.local
|
||||
password: vmware
|
||||
guest: testvm_2
|
||||
vm_folder: testvms
|
||||
state: absent
|
||||
ignore_errors: True
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
state=absent
|
||||
'''
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user