Skip to content

Commit 3dff9ce

Browse files
committed
Automated commit to update documentation
1 parent c3efec3 commit 3dff9ce

23 files changed

+637
-201
lines changed

_sources/ibm_zos_core/docs/source/modules/zos_backup_restore.rst.txt

+18-6
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ backup_name
133133
134134

135135
recover
136-
Specifies if potentially recoverable errors should be ignored.
136+
When *recover=true* and *operation=backup* then potentially recoverable errors will be ignored.
137137

138138
| **required**: False
139139
| **type**: bool
@@ -200,16 +200,18 @@ space_type
200200
hlq
201201
Specifies the new HLQ to use for the data sets being restored.
202202

203-
Defaults to running user's username.
203+
If no value is provided, the data sets will be restored with their original HLQs.
204204

205205
| **required**: False
206206
| **type**: str
207207
208208

209209
tmp_hlq
210-
Override the default high level qualifier (HLQ) for temporary and backup data sets.
210+
Override the default high level qualifier (HLQ) for temporary data sets used in the modules operation.
211211

212-
The default HLQ is the Ansible user that executes the module and if that is not available, then the value of ``TMPHLQ`` is used.
212+
If *tmp_hlq* is set, this value will be applied to all temporary data sets.
213+
214+
If *tmp_hlq* is not set, the value will be the username who submits the ansible task, this is the default behavior. If the username can not be identified, the value ``TMPHLQ`` is used.
213215

214216
| **required**: False
215217
| **type**: str
@@ -290,8 +292,8 @@ Examples
290292
space: 1
291293
space_type: g
292294

293-
- name: Restore data sets from backup stored in the UNIX file /tmp/temp_backup.dzp.
294-
Use z/OS username as new HLQ.
295+
- name: Restore data sets from a backup stored in the UNIX file /tmp/temp_backup.dzp.
296+
Restore the data sets with the original high level qualifiers.
295297
zos_backup_restore:
296298
operation: restore
297299
backup_name: /tmp/temp_backup.dzp
@@ -347,6 +349,16 @@ Examples
347349

348350

349351

352+
Notes
353+
-----
354+
355+
.. note::
356+
It is the playbook author or user's responsibility to ensure they have appropriate authority to the RACF FACILITY resource class. A user is described as the remote user, configured to run either the playbook or playbook tasks, who can also obtain escalated privileges to execute as root or another user.
357+
358+
When using this module, if the RACF FACILITY class profile **STGADMIN.ADR.DUMP.TOLERATE.ENQF** is active, you must have READ access authority to use the module option *recover=true*. If the RACF FACILITY class checking is not set up, any user can use the module option without access to the class.
359+
360+
If your system uses a different security product, consult that product's documentation to configure the required security classes.
361+
350362

351363

352364

_sources/ibm_zos_core/docs/source/modules/zos_blockinfile.rst.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ insertbefore
104104
marker_begin
105105
This will be inserted at ``{mark}`` in the opening ansible block marker.
106106

107+
Value needs to be different from *marker_end*.
108+
107109
| **required**: False
108110
| **type**: str
109111
| **default**: BEGIN
@@ -112,6 +114,8 @@ marker_begin
112114
marker_end
113115
This will be inserted at ``{mark}`` in the closing ansible block marker.
114116

117+
Value must be different from *marker_begin*.
118+
115119
| **required**: False
116120
| **type**: str
117121
| **default**: END
@@ -124,7 +128,7 @@ backup
124128

125129
The backup file name will be returned on either success or failure of module execution such that data can be retrieved.
126130

127-
Use generation data set (GDS) relative positive name. ``e.g. SOME.CREATION(+1``)
131+
Use generation data set (GDS) relative positive name. e.g. *SOME.CREATION(+1*).
128132

129133
| **required**: False
130134
| **type**: bool

_sources/ibm_zos_core/docs/source/modules/zos_copy.rst.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ force_lock
185185
186186

187187
ignore_sftp_stderr
188-
During data transfer through SFTP, the module fails if the SFTP command directs any content to stderr. The user is able to override this behavior by setting this parameter to ``true``. By doing so, the module would essentially ignore the stderr stream produced by SFTP and continue execution.
188+
During data transfer through SFTP, the SFTP command directs content to stderr. By default, the module essentially ignores the stderr stream produced by SFTP and continues execution. The user is able to override this behavior by setting this parameter to ``false``. By doing so, any content written to stderr is considered an error by Ansible and will cause the module to fail.
189189

190190
When Ansible verbosity is set to greater than 3, either through the command line interface (CLI) using **-vvvv** or through environment variables such as **verbosity = 4**, then this parameter will automatically be set to ``true``.
191191

192192
| **required**: False
193193
| **type**: bool
194-
| **default**: False
194+
| **default**: True
195195
196196

197197
is_binary

_sources/ibm_zos_core/docs/source/modules/zos_fetch.rst.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ tmp_hlq
126126
127127

128128
ignore_sftp_stderr
129-
During data transfer through sftp, the module fails if the sftp command directs any content to stderr. The user is able to override this behavior by setting this parameter to ``true``. By doing so, the module would essentially ignore the stderr stream produced by sftp and continue execution.
129+
During data transfer through SFTP, the SFTP command directs content to stderr. By default, the module essentially ignores the stderr stream produced by SFTP and continues execution. The user is able to override this behavior by setting this parameter to ``false``. By doing so, any content written to stderr is considered an error by Ansible and will cause the module to fail.
130130

131131
When Ansible verbosity is set to greater than 3, either through the command line interface (CLI) using **-vvvv** or through environment variables such as **verbosity = 4**, then this parameter will automatically be set to ``true``.
132132

133133
| **required**: False
134134
| **type**: bool
135-
| **default**: False
135+
| **default**: True
136136
137137

138138

_sources/ibm_zos_core/docs/source/modules/zos_job_output.rst.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ jobs
265265
| **type**: str
266266
267267
content_type
268-
Type of address space.
268+
Type of address space used by the job, can be one of the following types. - APPC for a APPC Initiator. - JGRP for a JOBGROUP. - JOB for a Batch job. - STC for a Started task. - TSU for a Time sharing user. - \? for an unknown or pending.
269269

270270
| **type**: str
271271
| **sample**: JOB

_sources/ibm_zos_core/docs/source/modules/zos_job_query.rst.txt

+32
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs
134134
[
135135
{
136136
"asid": 0,
137+
"content_type": "JOB",
137138
"creation_date": "2023-05-03",
138139
"creation_time": "12:13:00",
139140
"job_class": "K",
@@ -147,6 +148,7 @@ jobs
147148
},
148149
{
149150
"asid": 4,
151+
"content_type": "JOB",
150152
"creation_date": "2023-05-03",
151153
"creation_time": "12:14:00",
152154
"job_class": "A",
@@ -181,6 +183,36 @@ jobs
181183
| **type**: str
182184
| **sample**: JOB01427
183185
186+
content_type
187+
Type of address space used by the job, can be one of the following types.
188+
189+
APPC for a APPC Initiator.
190+
191+
JGRP for a JOBGROUP.
192+
193+
JOB for a Batch job.
194+
195+
STC for a Started task.
196+
197+
TSU for a Time sharing user.
198+
199+
\? for an unknown or pending.
200+
201+
| **type**: str
202+
| **sample**: STC
203+
204+
system
205+
The job entry system that MVS uses to do work.
206+
207+
| **type**: str
208+
| **sample**: STL1
209+
210+
subsystem
211+
The job entry subsystem that MVS uses to do work.
212+
213+
| **type**: str
214+
| **sample**: STL1
215+
184216
ret_code
185217
Return code output collected from job log.
186218

_sources/ibm_zos_core/docs/source/modules/zos_job_submit.rst.txt

+19-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Parameters
3131
src
3232
The source file or data set containing the JCL to submit.
3333

34-
It could be a physical sequential data set, a partitioned data set qualified by a member or a path (e.g. ``USER.TEST``, V(USER.JCL(TEST\))), or a generation data set from a generation data group (for example, V(USER.TEST.GDG(-2\))).
34+
It could be a physical sequential data set, a partitioned data set qualified by a member or a path (e.g. ``USER.TEST``, ``USER.JCL(TEST)``), or a generation data set from a generation data group (for example, ``USER.TEST.GDG(-2)``).
3535

3636
Or a USS file. (e.g ``/u/tester/demo/sample.jcl``)
3737

@@ -592,6 +592,24 @@ jobs
592592
| **type**: str
593593
| **sample**: HELLO
594594
595+
content_type
596+
Type of address space used by the job, can be one of the following types.
597+
598+
APPC for a APPC Initiator.
599+
600+
JGRP for a JOBGROUP.
601+
602+
JOB for a Batch job.
603+
604+
STC for a Started task.
605+
606+
TSU for a Time sharing user.
607+
608+
\? for an unknown or pending.
609+
610+
| **type**: str
611+
| **sample**: STC
612+
595613
duration
596614
The total lapsed time the JCL ran for.
597615

_sources/ibm_zos_core/docs/source/modules/zos_mvs_raw.rst.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ dds
425425

426426
*src_encoding* and *response_encoding* are only used when *type=text*.
427427

428-
``base64`` means return content in binary mode.
428+
``base64`` means return content as base64 encoded in binary.
429429

430430
| **required**: True
431431
| **type**: str
@@ -616,7 +616,7 @@ dds
616616

617617
*src_encoding* and *response_encoding* are only used when *type=text*.
618618

619-
``base64`` means return content in binary mode.
619+
``base64`` means return content as base64 encoded in binary.
620620

621621
| **required**: True
622622
| **type**: str
@@ -690,7 +690,7 @@ dds
690690

691691
*src_encoding* and *response_encoding* are only used when *type=text*.
692692

693-
``base64`` means return content in binary mode.
693+
``base64`` means return content as base64 encoded in binary.
694694

695695
| **required**: True
696696
| **type**: str
@@ -747,7 +747,7 @@ dds
747747

748748
*src_encoding* and *response_encoding* are only used when *type=text*.
749749

750-
``base64`` means return content in binary mode.
750+
``base64`` means return content as base64 encoded in binary.
751751

752752
| **required**: True
753753
| **type**: str
@@ -1164,7 +1164,7 @@ dds
11641164

11651165
*src_encoding* and *response_encoding* are only used when *type=text*.
11661166

1167-
``base64`` means return content in binary mode.
1167+
``base64`` means return content as base64 encoded in binary.
11681168

11691169
| **required**: True
11701170
| **type**: str
@@ -1348,7 +1348,7 @@ dds
13481348

13491349
*src_encoding* and *response_encoding* are only used when *type=text*.
13501350

1351-
``base64`` means return content in binary mode.
1351+
``base64`` means return content as base64 encoded in binary.
13521352

13531353
| **required**: True
13541354
| **type**: str
@@ -1415,7 +1415,7 @@ dds
14151415

14161416
*src_encoding* and *response_encoding* are only used when *type=text*.
14171417

1418-
``base64`` means return content in binary mode.
1418+
``base64`` means return content as base64 encoded in binary.
14191419

14201420
| **required**: True
14211421
| **type**: str

_sources/ibm_zos_core/docs/source/modules/zos_operator.rst.txt

+10
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ cmd
3737

3838
For example, to display job by job name the command would be ``cmd:"\\$dj''HELLO''"``
3939

40+
By default, the command will be converted to uppercase before execution, to control this behavior, see the *case_sensitive* option below.
41+
4042
| **required**: True
4143
| **type**: str
4244
@@ -63,6 +65,14 @@ wait_time_s
6365
| **default**: 1
6466
6567

68+
case_sensitive
69+
If ``true``, the command will not be converted to uppercase before execution. Instead, the casing will be preserved just as it was written in a task.
70+
71+
| **required**: False
72+
| **type**: bool
73+
| **default**: False
74+
75+
6676

6777

6878
Examples

0 commit comments

Comments
 (0)