Skip to content

Commit 4a2aef3

Browse files
fix module name for vmware_all_snapshots_info in docstring (#2322)
SUMMARY Fixes #2307 typo in community.vmware.vmware_all_snapshots_info example section https://docs.ansible.com/ansible/latest/collections/community/vmware/vmware_all_snapshots_info_module.html#examples. ISSUE TYPE Docs Pull Request COMPONENT NAME community.vmware.vmware_all_snapshots_info ADDITIONAL INFORMATION Check upstream docs here. Reviewed-by: Mario Lenz <m@riolenz.de>
1 parent 512fca2 commit 4a2aef3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/modules/vmware_all_snapshots_info.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@
4949

5050
EXAMPLES = r'''
5151
- name: Gather information about all snapshots in VMware vCenter
52-
vmware_snapshot_info_all:
52+
vmware_all_snapshots_info:
5353
hostname: '{{ vcenter_hostname }}'
5454
username: '{{ vcenter_username }}'
5555
password: '{{ vcenter_password }}'
5656
validate_certs: no
5757
datacenter: '{{ datacenter_name }}'
5858
delegate_to: localhost
5959
- name: Gather information of a snapshot with filters applied and match_type in exacts.
60-
vmware_snapshot_info_all:
60+
vmware_all_snapshots_info:
6161
hostname: '{{ vcenter_hostname }}'
6262
username: '{{ vcenter_username }}'
6363
password: '{{ vcenter_password }}'
@@ -68,7 +68,7 @@
6868
vm_name: "you_marchine_name"
6969
delegate_to: localhost
7070
- name: Gather information of snapshots that in their name contain the "test" in their name.
71-
vmware_snapshot_info_all:
71+
vmware_all_snapshots_info:
7272
hostname: '{{ vcenter_hostname }}'
7373
username: '{{ vcenter_username }}'
7474
password: '{{ vcenter_password }}'

0 commit comments

Comments
 (0)