diff --git a/docs/source/modules/cmci_action.rst b/docs/source/modules/cmci_action.rst index 85fac6b0..bcafd23f 100644 --- a/docs/source/modules/cmci_action.rst +++ b/docs/source/modules/cmci_action.rst @@ -361,27 +361,27 @@ Examples cmci_action: cmci_host: "example.com" cmci_port: 12345 - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - type: "CICSProgram" + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + type: CICSProgram action_name: NEWCOPY - resource: + resources: filter: - name: "PONGALT" - get_parameters: - - name: "csdgroup" - value: "JVMGRP" + name: PONGALT - - name: install a bundle in a CICS region + - name: Install a bundle definition from CSD in a CICS region cmci_action: cmci_host: "example.com" cmci_port: 1234 - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - scope: "IJKLMNOP" # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) - type: "CICSBundle" - action_name: DISABLE + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + scope: IJKLMNOP # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) + type: CICSBundle + action_name: CSDINSTALL resources: filter: - name: "bundle" + name: mybund + get_parameters: + - name: csdgroup + value: mygrp @@ -422,7 +422,7 @@ Return Values cpsm_reason - | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. | **returned**: success | **type**: str @@ -430,7 +430,7 @@ Return Values cpsm_reason_code - | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. | **returned**: success | **type**: int @@ -438,7 +438,7 @@ Return Values cpsm_response - | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. | **returned**: success | **type**: str @@ -446,7 +446,7 @@ Return Values cpsm_response_code - | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. | **returned**: success | **type**: str diff --git a/docs/source/modules/cmci_create.rst b/docs/source/modules/cmci_create.rst index 48f3f0ac..1b2967ce 100644 --- a/docs/source/modules/cmci_create.rst +++ b/docs/source/modules/cmci_create.rst @@ -220,19 +220,19 @@ Examples .. code-block:: yaml+jinja - - name: define a BUNDLE in a CSD + - name: Define a BUNDLE in CSD cmci_create: cmci_host: "example.com" cmci_port: 12345 - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - type: "CICSDefinitionBundle" - scope: "IJKLMNOP" # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + type: CICSDefinitionBundle + scope: IJKLMNOP # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) attributes: name: PONGALT bundledir: /u/ibmuser/bundle/pong/pongbundle_1.0.0 csdgroup: JVMGRP create_parameters: - - name: "csd" + - name: csd @@ -273,7 +273,7 @@ Return Values cpsm_reason - | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. | **returned**: success | **type**: str @@ -281,7 +281,7 @@ Return Values cpsm_reason_code - | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. | **returned**: success | **type**: int @@ -289,7 +289,7 @@ Return Values cpsm_response - | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. | **returned**: success | **type**: str @@ -297,7 +297,7 @@ Return Values cpsm_response_code - | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. | **returned**: success | **type**: str diff --git a/docs/source/modules/cmci_delete.rst b/docs/source/modules/cmci_delete.rst index 8210fac6..87f4282e 100644 --- a/docs/source/modules/cmci_delete.rst +++ b/docs/source/modules/cmci_delete.rst @@ -324,25 +324,25 @@ Examples cmci_delete: cmci_host: "example.com" cmci_port: 12345 - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment type: CICSBundle resources: filter: - name: "PONGALT" + name: PONGALT - name: delete a bundle definition in a CICS region cmci_delete: cmci_host: "example.com" cmci_port: 12345 - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment type: CICSDefinitionBundle - scope: "IJKLMNOP" # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) - resource: + scope: IJKLMNOP # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) + resources: filter: - name: "PONGALT" + name: PONGALT get_parameters: - - name: "csdgroup" - value: "JVMGRP" + - name: csdgroup + value: JVMGRP @@ -383,7 +383,7 @@ Return Values cpsm_reason - | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. | **returned**: success | **type**: str @@ -391,7 +391,7 @@ Return Values cpsm_reason_code - | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. | **returned**: success | **type**: int @@ -399,7 +399,7 @@ Return Values cpsm_response - | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. | **returned**: success | **type**: str @@ -407,7 +407,7 @@ Return Values cpsm_response_code - | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. | **returned**: success | **type**: str diff --git a/docs/source/modules/cmci_get.rst b/docs/source/modules/cmci_get.rst index b8601b5f..8da3d044 100644 --- a/docs/source/modules/cmci_get.rst +++ b/docs/source/modules/cmci_get.rst @@ -345,40 +345,40 @@ Examples .. code-block:: yaml+jinja - - name: get 2 LOCFILEs from a CICSplex + - name: Get 2 LOCFILEs from a CICSplex cmci_get: cmci_host: "example.com" cmci_port: 12345 - cmci_user: "ibmuser" + cmci_user: ibmuser cmci_password: "123456" - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment type: CICSLocalFile record_count: 2 - resource: + resources: filter: dsname: "CTS*" - - name: get a localfile in a CICS region + - name: Get a localfile in a CICS region cmci_get: cmci_host: "example.com" cmci_port: 12345 cmci_cert: "./sec/ansible.pem" cmci_key: "./sec/ansible.key" - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - type: "CICSLocalFile" + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + type: CICSLocalFile resources: filter: dsname: "XIAOPIN*" file: "DFH*" record_count: 1 - - name: get a progdef from a CSD + - name: Get a progdef from CSD cmci_get: cmci_host: "example.com" cmci_port: 12345 cmci_cert: "./sec/ansible.pem" cmci_key: "./sec/ansible.key" - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment type: cicsdefinitionprogram resources: filter: @@ -388,14 +388,14 @@ Examples value: MYGRP record_count: 1 - - name: pass module even if bundle definition is not found + - name: Ignore errors when bundle definition is not found cmci_get: cmci_host: "example.com" cmci_port: 12345 cmci_cert: "./sec/ansible.pem" cmci_key: "./sec/ansible.key" - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - scope: "IJKLMNOP" # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + scope: IJKLMNOP # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) type: cicsdefinitionbundle resources: filter: @@ -404,7 +404,7 @@ Examples - name: csdgroup value: MYGRP record_count: 1 - fail_on_nodata: "false" + fail_on_nodata: false - name: Using complex_filter to combine filter expressions and change operators cmci_get: @@ -412,8 +412,8 @@ Examples cmci_port: 12345 cmci_cert: "./sec/ansible.pem" cmci_key: "./sec/ansible.key" - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - type: "CICSRegion" + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + type: CICSRegion resources: complex_filter: or: @@ -462,7 +462,7 @@ Return Values cpsm_reason - | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. | **returned**: success | **type**: str @@ -470,7 +470,7 @@ Return Values cpsm_reason_code - | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. | **returned**: success | **type**: int @@ -478,7 +478,7 @@ Return Values cpsm_response - | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. | **returned**: success | **type**: str @@ -486,7 +486,7 @@ Return Values cpsm_response_code - | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. | **returned**: success | **type**: str diff --git a/docs/source/modules/cmci_update.rst b/docs/source/modules/cmci_update.rst index 86e1c6eb..d5d5dcc1 100644 --- a/docs/source/modules/cmci_update.rst +++ b/docs/source/modules/cmci_update.rst @@ -357,20 +357,20 @@ Examples .. code-block:: yaml+jinja - - name: update a bundle definition in a CICS region + - name: Update the description of a bundle definition in CSD cmci_update: cmci_host: "example.com" - cmci_port: "12345" - context: "ABCDEFGH" # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment - scope: "IJKLMNOP" # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) - type: "CICSDefinitionBundle" + cmci_port: 12345 + context: ABCDEFGH # context is the name of your CICSplex in a CPSM environment or the applid of your region in an SMSS environment + scope: IJKLMNOP # scope only applies if you're in a CPSM environment and is either the name of a CICS system definition (CSYSDEF) or CICS system group (CSYSGRP) + type: CICSDefinitionBundle attributes: - description: "New description" + description: New description update_parameters: - name: csd resources: filter: - name: "PONGALT" + name: PONGALT get_parameters: - name: csdgroup value: JVMGRP @@ -414,7 +414,7 @@ Return Values cpsm_reason - | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + | The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. | **returned**: success | **type**: str @@ -422,7 +422,7 @@ Return Values cpsm_reason_code - | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + | The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. | **returned**: success | **type**: int @@ -430,7 +430,7 @@ Return Values cpsm_response - | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + | The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. | **returned**: success | **type**: str @@ -438,7 +438,7 @@ Return Values cpsm_response_code - | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + | The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. | **returned**: success | **type**: str diff --git a/plugins/module_utils/_data_set_utils.py b/plugins/module_utils/_data_set_utils.py index a6ec727c..8d13bfd6 100644 --- a/plugins/module_utils/_data_set_utils.py +++ b/plugins/module_utils/_data_set_utils.py @@ -15,6 +15,7 @@ from ansible_collections.ibm.ibm_zos_core.plugins.module_utils.zos_mvs_raw import MVSCmd from ansible_collections.ibm.ibm_zos_core.plugins.module_utils.dd_statement import DDStatement, StdoutDefinition, StdinDefinition from ansible_collections.ibm.ibm_zos_core.plugins.module_utils.job import job_output +from zoautil_py import datasets, DatasetWriteException MVS_CMD_RETRY_ATTEMPTS = 10 @@ -359,22 +360,30 @@ def _read_data_set_content(data_set_name): rc, data_set_name), executions) return executions, stdout - def _write_jcl_to_data_set(jcl, data_set_name): """Writes generated JCL content to the specified data set """ executions = [] - temp = tempfile.NamedTemporaryFile(delete=True) - with open(temp.name, "w") as f: - f.write(jcl) - rc, stdout, stderr = _execute_command("cp -O u {0} \"//'{1}'\"".format(temp.name, data_set_name)) - executions.append( - _execution( - name="Copy JCL contents to data set", - rc=rc, - stdout=stdout, - stderr=stderr)) - if rc != 0: - raise MVSExecutionException("Failed to copy JCL content to data set", executions) - return executions + try: + rc = datasets.write(data_set_name, jcl) + executions.append( + _execution( + name="Copy JCL contents to data set", + rc=rc, + stdout="", + stderr="" + ) + ) + + if rc != 0: + raise MVSExecutionException("Failed to copy JCL content to data set", executions) + except DatasetWriteException as e: + executions.append( + _execution( + name="Copy JCL contents to data set", + rc=e.response.rc, + stdout=e.response.stdout_response, + stderr=e.response.stderr_response + ) + ) \ No newline at end of file diff --git a/plugins/modules/cmci_action.py b/plugins/modules/cmci_action.py index 4c1164cf..9ff690a4 100644 --- a/plugins/modules/cmci_action.py +++ b/plugins/modules/cmci_action.py @@ -112,28 +112,28 @@ description: - The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. returned: success type: str cpsm_reason_code: description: - The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. returned: success type: int cpsm_response: description: - The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. returned: success type: str cpsm_response_code: description: - The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. returned: success type: str http_status: diff --git a/plugins/modules/cmci_create.py b/plugins/modules/cmci_create.py index effa2257..31ef19e5 100644 --- a/plugins/modules/cmci_create.py +++ b/plugins/modules/cmci_create.py @@ -90,28 +90,28 @@ description: - The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. returned: success type: str cpsm_reason_code: description: - The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. returned: success type: int cpsm_response: description: - The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. returned: success type: str cpsm_response_code: description: - The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. returned: success type: str http_status: diff --git a/plugins/modules/cmci_delete.py b/plugins/modules/cmci_delete.py index e37ad35f..81881adb 100644 --- a/plugins/modules/cmci_delete.py +++ b/plugins/modules/cmci_delete.py @@ -75,28 +75,28 @@ description: - The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. returned: success type: str cpsm_reason_code: description: - The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. returned: success type: int cpsm_response: description: - The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. returned: success type: str cpsm_response_code: description: - The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. returned: success type: str http_status: diff --git a/plugins/modules/cmci_get.py b/plugins/modules/cmci_get.py index 08cfac44..ee7350f3 100644 --- a/plugins/modules/cmci_get.py +++ b/plugins/modules/cmci_get.py @@ -151,28 +151,28 @@ description: - The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. returned: success type: str cpsm_reason_code: description: - The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. returned: success type: int cpsm_response: description: - The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. returned: success type: str cpsm_response_code: description: - The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. returned: success type: str http_status: diff --git a/plugins/modules/cmci_update.py b/plugins/modules/cmci_update.py index d700c5b3..3fa940d9 100644 --- a/plugins/modules/cmci_update.py +++ b/plugins/modules/cmci_update.py @@ -95,28 +95,28 @@ description: - The character value of the REASON code returned by each CICSPlex SM API command. For a list of REASON character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_xnl_yky_51c. returned: success type: str cpsm_reason_code: description: - The numeric value of the REASON code returned by each CICSPlex SM API command. For a list of REASON numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-reason-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_lqj_lky_51c. returned: success type: int cpsm_response: description: - The character value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE character values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-alphabetical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_o33_fky_51c. returned: success type: str cpsm_response_code: description: - The numeric value of the RESPONSE code returned by each CICSPlex SM API command. For a list of RESPONSE numeric values, see - https://www.ibm.com/docs/en/cics-ts/latest?topic=values-eyuda-response-in-numerical-order. + https://www.ibm.com/docs/en/cics-ts/6.x?topic=commands-eyuda-values#eyup2ks__table_mzv_4jy_51c. returned: success type: str http_status: diff --git a/plugins/modules/region_jcl.py b/plugins/modules/region_jcl.py index 0697ad38..a31b430b 100644 --- a/plugins/modules/region_jcl.py +++ b/plugins/modules/region_jcl.py @@ -352,7 +352,7 @@ def create_data_set(self): # type: () -> None primary_unit=self.primary_unit, secondary_unit=self.secondary_unit, volumes=self.volumes, - block_size=4096, + block_size=32720, record_length=80, record_format="FB", disposition="NEW",