mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
Fix Example for lun copy (#53281)
* Revert "changes to clusteR" This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80. * Revert "changes to clusteR" This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80. * Revert "Revert "changes to clusteR"" This reverts commit f1104a37b42886aebb4d2b2ab27c91c96d97858a. * Revert "Revert "changes to clusteR"" This reverts commit f1104a37b42886aebb4d2b2ab27c91c96d97858a. * documentation changes * Revert "documentation changes" This reverts commit 02c369d0414fdff492d90865c903bdade3174261. * Fix example
This commit is contained in:
parent
6b294eab4d
commit
98343993ee
1 changed files with 9 additions and 10 deletions
|
@ -55,15 +55,14 @@ options:
|
||||||
'''
|
'''
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
- name: Copy LUN
|
- name: Copy LUN
|
||||||
na_ontap_lun:
|
na_ontap_lun_copy:
|
||||||
na_ontap_lun_copy:
|
destination_vserver: ansible
|
||||||
destination_vserver: ansible
|
destination_path: /vol/test/test_copy_dest_dest_new
|
||||||
destination_path: /vol/test/test_copy_dest_dest_new
|
source_path: /vol/test/test_copy_1
|
||||||
source_path: /vol/test/test_copy_1
|
source_vserver: ansible
|
||||||
source_vserver: ansible
|
hostname: "{{ netapp_hostname }}"
|
||||||
hostname: "{{ netapp_hostname }}"
|
username: "{{ netapp_username }}"
|
||||||
username: "{{ netapp_username }}"
|
password: "{{ netapp_password }}"
|
||||||
password: "{{ netapp_password }}"
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
|
@ -108,7 +107,7 @@ class NetAppOntapLUNCopy(object):
|
||||||
|
|
||||||
def get_lun(self):
|
def get_lun(self):
|
||||||
"""
|
"""
|
||||||
Check if the LUN exis
|
Check if the LUN exists
|
||||||
|
|
||||||
:return: true is it exists, false otherwise
|
:return: true is it exists, false otherwise
|
||||||
:rtype: bool
|
:rtype: bool
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue