Skip to content

Commit c68a06a

Browse files
authored
Adding the check mode documentation (#2000)
* adding the check mode documentation * changelog addition * modifying documentation for volume_init and zfs_resize * changing docs as per review comments
1 parent a1f1a7a commit c68a06a

25 files changed

+139
-1
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
trivial:
2+
- zos_apf - Add documentation for check mode.
3+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
4+
5+
- zos_archive - Add documentation for check mode.
6+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
7+
8+
- zos_backup_restore - Add documentation for check mode.
9+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
10+
11+
- zos_blockinfile - Add documentation for check mode.
12+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
13+
14+
- zos_copy - Add documentation for check mode.
15+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
16+
17+
- zos_data_set - Add documentation for check mode.
18+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
19+
20+
- zos_encode - Add documentation for check mode.
21+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
22+
23+
- zos_fetch - Add documentation for check mode.
24+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
25+
26+
- zos_find - Add documentation for check mode.
27+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
28+
29+
- zos_gather_facts - Add documentation for check mode.
30+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
31+
32+
- zos_job_output - Add documentation for check mode.
33+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
34+
35+
- zos_job_query - Add documentation for check mode.
36+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
37+
38+
- zos_job_submit - Add documentation for check mode.
39+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
40+
41+
- zos_lineinfile - Add documentation for check mode.
42+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
43+
44+
- zos_mount - Add documentation for check mode.
45+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
46+
47+
- zos_mvs_raw - Add documentation for check mode.
48+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
49+
50+
- zos_operator - Add documentation for check mode.
51+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
52+
53+
- zos_operator_action_query - Add documentation for check mode.
54+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
55+
56+
- zos_ping - Add documentation for check mode.
57+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
58+
59+
- zos_tso_command - Add documentation for check mode.
60+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
61+
62+
- zos_unarchive - Add documentation for check mode.
63+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
64+
65+
- zos_volume_init - Add documentation for check mode.
66+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).
67+
68+
- zos_zfs_resize - Add documentation for check mode.
69+
(https://github.com/ansible-collections/ibm_zos_core/pull/2000).

plugins/modules/zos_apf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,9 @@
203203
async:
204204
support: full
205205
description: Supports being used with the ``async`` keyword.
206+
check_mode:
207+
support: none
208+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
206209
207210
notes:
208211
- It is the playbook author or user's responsibility to ensure they have

plugins/modules/zos_archive.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,9 @@
314314
async:
315315
support: full
316316
description: Supports being used with the ``async`` keyword.
317+
check_mode:
318+
support: full
319+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
317320
318321
notes:
319322
- This module does not perform a send or transmit operation to a remote

plugins/modules/zos_backup_restore.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@
208208
async:
209209
support: full
210210
description: Supports being used with the ``async`` keyword.
211+
check_mode:
212+
support: none
213+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
211214
212215
notes:
213216
- It is the playbook author or user's responsibility to ensure they have

plugins/modules/zos_blockinfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,9 @@
182182
async:
183183
support: full
184184
description: Supports being used with the ``async`` keyword.
185+
check_mode:
186+
support: none
187+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
185188
186189
notes:
187190
- It is the playbook author or user's responsibility to avoid files

plugins/modules/zos_copy.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,9 @@
529529
async:
530530
support: full
531531
description: Supports being used with the ``async`` keyword.
532+
check_mode:
533+
support: none
534+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
532535
533536
notes:
534537
- Destination data sets are assumed to be in catalog. When trying to copy

plugins/modules/zos_data_set.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,9 @@
660660
async:
661661
support: full
662662
description: Supports being used with the ``async`` keyword.
663+
check_mode:
664+
support: full
665+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
663666
"""
664667
EXAMPLES = r"""
665668
- name: Create a sequential data set if it does not exist

plugins/modules/zos_encode.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@
128128
async:
129129
support: full
130130
description: Supports being used with the ``async`` keyword.
131+
check_mode:
132+
support: none
133+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
131134
132135
notes:
133136
- It is the playbook author or user's responsibility to avoid files that should

plugins/modules/zos_fetch.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@
143143
async:
144144
support: none
145145
description: Supports being used with the ``async`` keyword.
146+
check_mode:
147+
support: none
148+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
146149
147150
notes:
148151
- When fetching PDSE and VSAM data sets, temporary storage will be used

plugins/modules/zos_find.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@
172172
async:
173173
support: full
174174
description: Supports being used with the ``async`` keyword.
175+
check_mode:
176+
support: none
177+
description: Can run in check_mode and return changed status prediction without modifying target. If not supported, the action will be skipped.
175178
176179
notes:
177180
- Only cataloged data sets will be searched. If an uncataloged data set needs to

0 commit comments

Comments
 (0)