Skip to content

Commit 6cff6e1

Browse files
lakshmigollu31Lakshmi Golluandrewhughes101
authored
Added OTELTRACE,SECURETCPIP sit parameters (#177)
* Added OTELTRACE,SECURETCPIP sit parameters * Added FIPS sit_parm * sanity fixes * fixup descriptions --------- Co-authored-by: Lakshmi Gollu <[email protected]> Co-authored-by: Andrew Hughes <[email protected]>
1 parent b7585f7 commit 6cff6e1

File tree

3 files changed

+69
-0
lines changed

3 files changed

+69
-0
lines changed

docs/source/modules/region_jcl.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1614,6 +1614,16 @@ sit_parameters
16141614
16151615

16161616

1617+
fips
1618+
The FIPS system initialization parameter supports FIPS 140-3 standard in the future when it becomes available by System SSL for z/OS.
1619+
1620+
1621+
| **required**: False
1622+
| **type**: str
1623+
| **choices**: NOCHECK, 1403
1624+
1625+
1626+
16171627
fldsep
16181628
The FLDSEP system initialization parameter specifies 'ON'e through four field-separator characters, each of which indicates end of field in the terminal input data.
16191629

@@ -2232,6 +2242,16 @@ sit_parameters
22322242
22332243

22342244

2245+
oteltrace
2246+
The OTELTRACE system initialization parameter switches support for OpenTelemetry in CICS on or off at the CICS region level.
2247+
2248+
2249+
| **required**: False
2250+
| **type**: str
2251+
| **choices**: NO, YES
2252+
2253+
2254+
22352255
parmerr
22362256
The PARMERR system initialization parameter specifies what action you want to follow if CICS detects incorrect system initialization parameter overrides during initialization.
22372257

@@ -2663,6 +2683,16 @@ sit_parameters
26632683
26642684

26652685

2686+
securetcpip
2687+
The SECURETCPIP system initialization parameter enforces secure TCP/IP connections for IPCONN, TCPIPSERVICE, and client URIMAP resources.
2688+
2689+
2690+
| **required**: False
2691+
| **type**: str
2692+
| **choices**: YES, NO
2693+
2694+
2695+
26662696
sit
26672697
The SIT system initialization parameter specifies the suffix, if any, of the system initialization table that you want CICS to load at the start of initialization.
26682698

plugins/doc_fragments/region_jcl.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,6 +1181,14 @@ class ModuleDocFragment(object):
11811181
choices:
11821182
- "NO"
11831183
- "YES"
1184+
fips:
1185+
description:
1186+
- The FIPS system initialization parameter supports FIPS 140-3 standard in the future when it becomes available by System SSL for z/OS.
1187+
required: false
1188+
type: str
1189+
choices:
1190+
- "NOCHECK"
1191+
- "1403"
11841192
fldsep:
11851193
description:
11861194
- The FLDSEP system initialization parameter specifies 'ON'e through four field-separator characters, each
@@ -1679,6 +1687,14 @@ class ModuleDocFragment(object):
16791687
- The OPNDLIM system initialization parameter specifies the destination and close destination request limit.
16801688
required: false
16811689
type: int
1690+
oteltrace:
1691+
description:
1692+
- The OTELTRACE system initialization parameter switches support for OpenTelemetry in CICS on or off at the CICS region level.
1693+
required: false
1694+
type: str
1695+
choices:
1696+
- "NO"
1697+
- "YES"
16821698
parmerr:
16831699
description:
16841700
- The PARMERR system initialization parameter specifies what action you want to follow if CICS detects
@@ -1995,6 +2011,14 @@ class ModuleDocFragment(object):
19952011
authorization requests to RACF.
19962012
required: false
19972013
type: str
2014+
securetcpip:
2015+
description:
2016+
- The SECURETCPIP system initialization parameter enforces secure TCP/IP connections for IPCONN, TCPIPSERVICE, and client URIMAP resources.
2017+
choices:
2018+
- "YES"
2019+
- "NO"
2020+
required: false
2021+
type: str
19982022
sit:
19992023
description:
20002024
- The SIT system initialization parameter specifies the suffix, if any, of the system initialization table

plugins/modules/region_jcl.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1508,6 +1508,11 @@ def init_argument_spec(): # type: () -> dict
15081508
'required': False,
15091509
'choices': ['NO', 'YES'],
15101510
},
1511+
'fips': {
1512+
'type': 'str',
1513+
'required': False,
1514+
'choices': ['NOCHECK', '1403'],
1515+
},
15111516
'fldsep': {
15121517
'type': 'str',
15131518
'required': False,
@@ -1803,6 +1808,11 @@ def init_argument_spec(): # type: () -> dict
18031808
'type': 'int',
18041809
'required': False,
18051810
},
1811+
'oteltrace' : {
1812+
'type' : 'str',
1813+
'required' : False,
1814+
'choices': ['NO', 'YES'],
1815+
},
18061816
'parmerr': {
18071817
'type': 'str',
18081818
'required': False,
@@ -2004,6 +2014,11 @@ def init_argument_spec(): # type: () -> dict
20042014
'type': 'str',
20052015
'required': False,
20062016
},
2017+
'securetcpip' : {
2018+
'type' : 'str',
2019+
'required' : False,
2020+
'choices' : ['NO', 'YES'],
2021+
},
20072022
'sit': {
20082023
'type': 'str',
20092024
'required': False

0 commit comments

Comments
 (0)