Skip to content

Commit 34772e6

Browse files
enamkhanGitHub Enterprise
authored andcommitted
Updated sit params for 6.2 (#283)
1 parent 7f24757 commit 34772e6

File tree

3 files changed

+153
-4
lines changed

3 files changed

+153
-4
lines changed

docs/source/modules/region_jcl.rst

Lines changed: 67 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,6 +1051,15 @@ sit_parameters
10511051
10521052

10531053

1054+
certexpirywarn
1055+
The CERTEXPIRYWARN parameter specifies whether CICS® warns about expiring certificates, and if so, how many days ahead of the expiry.
1056+
1057+
1058+
| **required**: False
1059+
| **type**: str
1060+
1061+
1062+
10541063
chkstrm
10551064
The CHKSTRM parameter specifies that terminal storage-violation checking is to be activated or deactivated.
10561065

@@ -1770,7 +1779,7 @@ sit_parameters
17701779

17711780

17721781
infocenter
1773-
The INFOCENTER system initialization parameter specifies the location of the online . If you add this parameter to the Web User Interface (WUI) CICS startup JCL, a link labeled Information Center is displayed on WUI views and menus. If you do not code this parameter, CICS does not construct links to IBM Documentation. .
1782+
The INFOCENTER system initialization parameter specifies the location of the online . If you add this parameter to the Web User Interface (WUI) CICS startup JCL, a link labeled Information Center is displayed on WUI views and menus. If you do not code this parameter, CICS does not construct links to IBM Documentation.
17741783

17751784

17761785
| **required**: False
@@ -1787,6 +1796,16 @@ sit_parameters
17871796
17881797

17891798

1799+
intrdrjobuser
1800+
The INTRDRJOBUSER system initialization parameter instructs whether to use the task user ID or the CICS® region user ID as the job user ID for a JOB card that is submitted, without a USER parameter, by using SPOOLOPEN with USERID("INTRDR") and SPOOLWRITE. The default is the task user ID unless set otherwise by INTRDRJOBUSER.
1801+
1802+
1803+
| **required**: False
1804+
| **type**: str
1805+
| **choices**: TASK, REGION
1806+
1807+
1808+
17901809
inttr
17911810
The INTTR system initialization parameter specifies whether the internal CICS trace destination is to be activated at system initialization.
17921811

@@ -2448,7 +2467,7 @@ sit_parameters
24482467

24492468
| **required**: False
24502469
| **type**: str
2451-
| **choices**: YES, NO
2470+
| **choices**: YES, NO, CPSM
24522471
24532472

24542473

@@ -3369,6 +3388,52 @@ sit_parameters
33693388
| **choices**: YES, NO
33703389
33713390

3391+
3392+
zosmoninterval
3393+
The ZOSMONINTERVAL system initialization parameter specifies the sampling interval, in seconds, for the CICS® z/OS storage monitor task.
3394+
3395+
3396+
| **required**: False
3397+
| **type**: int
3398+
3399+
3400+
3401+
zossos24unalloc
3402+
The ZOSSOS24UNALLOC system initialization parameter specifies short-on-storage (SOS) thresholds in KB for the total amount of unallocated z/OS® user region storage and for the largest contiguous storage area available in it.
3403+
3404+
3405+
| **required**: False
3406+
| **type**: str
3407+
3408+
3409+
3410+
zossos31unalloc
3411+
The ZOSSOS31UNALLOC system initialization parameter specifies short-on-storage (SOS) thresholds in KB for the total amount of unallocated z/OS® extended user region storage and for the largest contiguous storage area available in it.
3412+
3413+
3414+
| **required**: False
3415+
| **type**: str
3416+
3417+
3418+
3419+
zossos64unalloc
3420+
The ZOSSOS64UNALLOC system initialization parameter specifies a short-on-storage (SOS) threshold in MB for the amount of unallocated z/OS® MEMLIMIT storage in the 64-bit addressing range.
3421+
3422+
3423+
| **required**: False
3424+
| **type**: int
3425+
3426+
3427+
3428+
zossosnewtcb
3429+
The ZOSSOSNEWTCB system initialization parameter specifies the action that CICS® takes in response to a new open TCB that is being attached directly by CICS when the z/OS® user region storage or extended user region storage is short on storage (SOS). These open TCBs are L8, L9, X8 and X9 TCBs.
3430+
3431+
3432+
| **required**: False
3433+
| **type**: str
3434+
| **choices**: DELAY, NODELAY
3435+
3436+
33723437

33733438

33743439
space_primary

plugins/doc_fragments/region_jcl.py

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,11 @@ class ModuleDocFragment(object):
746746
- The CDSASZE system initialization parameter specifies the size of the CDSA.
747747
required: false
748748
type: int
749+
certexpirywarn:
750+
description:
751+
- The CERTEXPIRYWARN parameter specifies whether CICS® warns about expiring certificates, and if so, how many days ahead of the expiry.
752+
required: false
753+
type: str
749754
chkstrm:
750755
description:
751756
- The CHKSTRM parameter specifies that terminal storage-violation checking is to be activated or
@@ -1295,7 +1300,7 @@ class ModuleDocFragment(object):
12951300
- The INFOCENTER system initialization parameter specifies the location of the online . If you add this
12961301
parameter to the Web User Interface (WUI) CICS startup JCL, a link labeled Information Center is displayed
12971302
on WUI views and menus. If you do not code this parameter, CICS does not construct links to IBM
1298-
Documentation. .
1303+
Documentation.
12991304
required: false
13001305
type: str
13011306
initparm:
@@ -1304,6 +1309,17 @@ class ModuleDocFragment(object):
13041309
programs that use the ASSIGN INITPARM command.
13051310
required: false
13061311
type: str
1312+
intrdrjobuser:
1313+
description:
1314+
- The INTRDRJOBUSER system initialization parameter instructs whether to use the task user ID or the
1315+
CICS® region user ID as the job user ID for a JOB card that is submitted, without a USER parameter,
1316+
by using SPOOLOPEN with USERID("INTRDR") and SPOOLWRITE. The default is the task user ID unless set
1317+
otherwise by INTRDRJOBUSER.
1318+
required: false
1319+
type: str
1320+
choices:
1321+
- "TASK"
1322+
- "REGION"
13071323
inttr:
13081324
description:
13091325
- The INTTR system initialization parameter specifies whether the internal CICS trace destination is to be
@@ -1828,6 +1844,7 @@ class ModuleDocFragment(object):
18281844
choices:
18291845
- "YES"
18301846
- "NO"
1847+
- "CPSM"
18311848
ramax:
18321849
description:
18331850
- The RAMAX system initialization parameter specifies the size in bytes of the I/O area allocated for each
@@ -2582,4 +2599,40 @@ class ModuleDocFragment(object):
25822599
for the z/OS MEMLIMIT parameter.
25832600
required: false
25842601
type: str
2602+
zosmoninterval:
2603+
description:
2604+
- The ZOSMONINTERVAL system initialization parameter specifies the sampling interval, in seconds, for
2605+
the CICS® z/OS storage monitor task.
2606+
required: false
2607+
type: int
2608+
zossosnewtcb:
2609+
description:
2610+
- The ZOSSOSNEWTCB system initialization parameter specifies the action that CICS® takes in response to
2611+
a new open TCB that is being attached directly by CICS when the z/OS® user region storage or extended
2612+
user region storage is short on storage (SOS). These open TCBs are L8, L9, X8 and X9 TCBs.
2613+
required: false
2614+
type: str
2615+
choices:
2616+
- "DELAY"
2617+
- "NODELAY"
2618+
zossos24unalloc:
2619+
description:
2620+
- The ZOSSOS24UNALLOC system initialization parameter specifies short-on-storage (SOS) thresholds in KB
2621+
for the total amount of unallocated z/OS® user region storage and for the largest contiguous storage
2622+
area available in it.
2623+
required: false
2624+
type: str
2625+
zossos31unalloc:
2626+
description:
2627+
- The ZOSSOS31UNALLOC system initialization parameter specifies short-on-storage (SOS) thresholds in KB
2628+
for the total amount of unallocated z/OS® extended user region storage and for the largest contiguous
2629+
storage area available in it.
2630+
required: false
2631+
type: str
2632+
zossos64unalloc:
2633+
description:
2634+
- The ZOSSOS64UNALLOC system initialization parameter specifies a short-on-storage (SOS) threshold in
2635+
MB for the amount of unallocated z/OS® MEMLIMIT storage in the 64-bit addressing range.
2636+
required: false
2637+
type: int
25852638
"""

plugins/modules/region_jcl.py

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,6 +1145,10 @@ def init_argument_spec(): # type: () -> dict
11451145
'type': 'int',
11461146
'required': False,
11471147
},
1148+
'certexpirywarn': {
1149+
'type': 'str',
1150+
'required': False,
1151+
},
11481152
'chkstrm': {
11491153
'type': 'str',
11501154
'required': False,
@@ -1491,6 +1495,12 @@ def init_argument_spec(): # type: () -> dict
14911495
'type': 'str',
14921496
'required': False,
14931497
},
1498+
'intrdrjobuser':
1499+
{
1500+
'type': 'str',
1501+
'required': False,
1502+
'choices': ['TASK', 'REGION'],
1503+
},
14941504
'inttr': {
14951505
'type': 'str',
14961506
'required': False,
@@ -1805,7 +1815,7 @@ def init_argument_spec(): # type: () -> dict
18051815
'racfsync': {
18061816
'type': 'str',
18071817
'required': False,
1808-
'choices': ['NO', 'YES'],
1818+
'choices': ['NO', 'YES', 'CPSM'],
18091819
},
18101820
'ramax': {
18111821
'type': 'int',
@@ -2229,6 +2239,27 @@ def init_argument_spec(): # type: () -> dict
22292239
'type': 'str',
22302240
'required': False,
22312241
'choices': ['NO', 'YES']
2242+
},
2243+
'zosmoninterval': {
2244+
'type': 'int',
2245+
'required': False,
2246+
},
2247+
'zossosnewtcb': {
2248+
'type': 'str',
2249+
'required': False,
2250+
'choices': ['DELAY', 'NODELAY']
2251+
},
2252+
'zossos24unalloc': {
2253+
'type': 'str',
2254+
'required': False,
2255+
},
2256+
'zossos31unalloc': {
2257+
'type': 'str',
2258+
'required': False,
2259+
},
2260+
'zossos64unalloc': {
2261+
'type': 'int',
2262+
'required': False,
22322263
}
22332264
}
22342265
},

0 commit comments

Comments
 (0)