You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/modules/aux_trace.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,13 +135,13 @@ space_type
135
135
136
136
This option takes effect only when the auxiliary trace data set is being created. If the data set already exists, the option has no effect.
137
137
138
-
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), records (\ :literal:`REC`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
138
+
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
@@ -20,7 +20,7 @@ start_cics -- Start a CICS region
20
20
21
21
Synopsis
22
22
--------
23
-
- Start a CICS® region by providing CICS system data sets and system initialization parameters for CICS startup using the \ :literal:`DFHSIP`\ program.
23
+
- Create a data set containing JCL to start a CICS® region by providing CICS system data sets and system initialization parameters for CICS startup using the \ :literal:`DFHSIP`\ program.
24
24
25
25
26
26
@@ -842,6 +842,25 @@ region_data_sets
842
842
843
843
844
844
845
+
dfhstart
846
+
Overrides the templated location for the JCL data set.
847
+
848
+
849
+
|**required**: False
850
+
|**type**: dict
851
+
852
+
853
+
854
+
dsn
855
+
The data set name of the JCL data set to override the template.
856
+
857
+
858
+
|**required**: False
859
+
|**type**: str
860
+
861
+
862
+
863
+
845
864
dfhtemp
846
865
Overrides the templated location for the temporary storage data set.
847
866
@@ -3352,6 +3371,65 @@ sit_parameters
3352
3371
3353
3372
3354
3373
3374
+
space_primary
3375
+
The size of the primary space allocated to the CICS startup JCL data set. Note that this is just the value; the unit is specified with \ :literal:`space\_type`\ .
3376
+
3377
+
This option takes effect only when the CICS startup JCL data set is being created. If the CICS startup JCL data set already exists, the option has no effect.
3378
+
3379
+
If this option is not set the primary space is dynamically calculated based on the size of the generated CICS startup JCL
3380
+
3381
+
3382
+
|**required**: False
3383
+
|**type**: int
3384
+
3385
+
3386
+
3387
+
space_secondary
3388
+
The size of the secondary space allocated to the CICS startup JCL data set. Note that this is just the value; the unit is specified with \ :literal:`space\_type`\ .
3389
+
3390
+
This option takes effect only when the CICS startup JCL data set is being created. If the CICS startup JCL data set already exists, the option has no effect.
3391
+
3392
+
If this option is not set the primary space is dynamically calculated as 10% of the total size of the generated CICS startup JCL
3393
+
3394
+
3395
+
|**required**: False
3396
+
|**type**: int
3397
+
3398
+
3399
+
3400
+
space_type
3401
+
The unit portion of the CICS startup JCL data set size. Note that this is just the unit; the value for the primary space is specified with \ :literal:`space\_primary`\ and the value for the secondary space is specified with \ :literal:`space\_secondary`\ .
3402
+
3403
+
This option takes effect only when the CICS startup JCL data set is being created. If the CICS startup JCL data set already exists, the option has no effect.
3404
+
3405
+
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
3406
+
3407
+
If neither \ :literal:`space\_secondary`\ or \ :literal:`space\_primary`\ are set, then this value will not have any effect
3408
+
3409
+
3410
+
|**required**: False
3411
+
|**type**: str
3412
+
|**default**: M
3413
+
|**choices**: M, K, CYL, TRK
3414
+
3415
+
3416
+
3417
+
state
3418
+
The intended state for the CICS startup JCL data set, which the module aims to achieve.
3419
+
3420
+
Specify \ :literal:`absent`\ to remove the CICS startup JCL data set entirely, if it already exists.
3421
+
3422
+
Specify \ :literal:`initial`\ to create the CICS startup JCL data set if it does not already exist.
3423
+
3424
+
Specify \ :literal:`warm`\ to retain an existing CICS startup JCL data set in its current state. The module verifies whether the specified data set exists and whether it matches the generated startup JCL. If both conditions are met, the module leaves the data set as is. If the data set does not exist or does not match, the operation fails.
3425
+
3426
+
3427
+
|**required**: True
3428
+
|**type**: str
3429
+
|**choices**: initial, absent, warm
3430
+
3431
+
3432
+
3355
3433
steplib
3356
3434
Any locations of additional \ :literal:`STEPLIB`\ libraries to add, that are not \ :literal:`SDFHAUTH`\ , \ :literal:`SDFHLIC`\ , \ :literal:`SCEERUN`\ , or \ :literal:`SCEERUN2`\ .
3357
3435
@@ -3380,12 +3458,12 @@ steplib
3380
3458
3381
3459
3382
3460
3383
-
submit_jcl
3384
-
Specify whether or not you want the CICS startup job to be submitted.
3461
+
volumes
3462
+
The volume(s) where the data set is created. Use a string to define a singular volume or a list of strings for multiple volumes.
3385
3463
3386
3464
3387
3465
|**required**: False
3388
-
|**type**: bool
3466
+
|**type**: raw
3389
3467
3390
3468
3391
3469
@@ -3396,9 +3474,8 @@ Examples
3396
3474
.. code-block:: yaml+jinja
3397
3475
3398
3476
3399
-
- name: Start CICS
3400
-
ibm.ibm_zos_cics.start_cics:
3401
-
submit_jcl: True
3477
+
- name: Create CICS region JCL data set
3478
+
ibm.ibm_zos_cics.region_jcl:
3402
3479
applid: ABC9ABC1
3403
3480
cics_data_sets:
3404
3481
template: 'CICSTS61.CICS.<< lib_name >>'
@@ -3431,9 +3508,8 @@ Examples
3431
3508
wrkarea: 2048
3432
3509
sysidnt: ZPY1
3433
3510
3434
-
- name: Start CICS with more customization
3435
-
ibm.ibm_zos_cics.start_cics:
3436
-
submit_jcl: True
3511
+
- name: Create CICS region JCL data set with more customization
3512
+
ibm.ibm_zos_cics.region_jcl:
3437
3513
applid: ABC9ABC1
3438
3514
job_parameters:
3439
3515
class: A
@@ -3506,7 +3582,7 @@ Return Values
3506
3582
3507
3583
3508
3584
changed
3509
-
|True if the CICS startup JCL was submitted, otherwise False.
3585
+
|True if the CICS startup JCL data set was created, otherwise False.
3510
3586
3511
3587
|**returned**: always
3512
3588
|**type**: bool
@@ -3521,27 +3597,69 @@ Return Values
3521
3597
3522
3598
3523
3599
3524
-
jcl
3525
-
|The CICS startup JCL that is built during module execution.
3600
+
start_state
3601
+
|The state of the CICS startup JCL data set before the Ansible task runs.
3526
3602
3527
3603
|**returned**: always
3528
-
|**type**: list
3604
+
|**type**: dict
3605
+
3606
+
3607
+
3608
+
data_set_organization
3609
+
|The organization of the data set at the start of the Ansible task.
3610
+
3611
+
|**returned**: always
3612
+
|**type**: str
3613
+
|**sample**: Sequential
3614
+
3615
+
3529
3616
3530
3617
3531
3618
3532
-
job_id
3533
-
|The job ID of the CICS startup job.
3619
+
exists
3620
+
|True if the CICS startup JCL data set exists.
3534
3621
3535
-
|**returned**: If the CICS startup JCL has been submitted.
3536
-
|**type**: str
3622
+
|**returned**: always
3623
+
|**type**: bool
3624
+
3625
+
3537
3626
3538
3627
3539
3628
3540
-
err
3541
-
|The error message returned when building the JCL.
3629
+
end_state
3630
+
|The state of the CICS startup JCL data set at the end of the Ansible task.
3542
3631
3543
3632
|**returned**: always
3544
-
|**type**: str
3633
+
|**type**: dict
3634
+
3635
+
3636
+
3637
+
data_set_organization
3638
+
|The organization of the data set at the end of the Ansible task.
3639
+
3640
+
|**returned**: always
3641
+
|**type**: str
3642
+
|**sample**: Sequential
3643
+
3644
+
3645
+
3646
+
3647
+
3648
+
exists
3649
+
|True if the CICS startup JCL data set exists.
3650
+
3651
+
|**returned**: always
3652
+
|**type**: bool
3653
+
3654
+
3655
+
3656
+
3657
+
3658
+
jcl
3659
+
|The CICS startup JCL that is built during module execution.
Copy file name to clipboardExpand all lines: docs/source/modules/transaction_dump.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,13 +133,13 @@ space_type
133
133
134
134
This option takes effect only when the transaction dump data set is being created. If the data set already exists, the option has no effect.
135
135
136
-
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), records (\ :literal:`REC`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
136
+
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
0 commit comments