@broadcom/jclcheck-for-zowe-cli
Version:
JCLCheck Plug-in for Zowe CLI
57 lines (56 loc) • 3.09 kB
JavaScript
;
/**
* Copyright (c) 2025. Broadcom. All rights reserved. The term
* "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
*
* This software and all information contained therein is
* confidential and proprietary and shall not be duplicated,
* used, disclosed, or disseminated in any way except as
* authorized by the applicable license agreement, without the
* express written permission of Broadcom. All authorized
* reproductions must be marked with this language.
* EXCEPT AS SET FORTH IN THE APPLICABLE LICENSE AGREEMENT, TO
* THE EXTENT PERMITTED BY APPLICABLE LAW, BROADCOM PROVIDES THIS
* SOFTWARE WITHOUT WARRANTY OF ANY KIND, INCLUDING WITHOUT
* LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL BROADCOM
* BE LIABLE TO THE END USER OR ANY THIRD PARTY FOR ANY LOSS OR
* DAMAGE, DIRECT OR INDIRECT, FROM THE USE OF THIS SOFTWARE,
* INCLUDING WITHOUT LIMITATION, LOST PROFITS, BUSINESS
* INTERRUPTION, GOODWILL, OR LOST DATA, EVEN IF BROADCOM IS
* EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE.
*
**/
Object.defineProperty(exports, "__esModule", { value: true });
// ******* ATTENTION: PLEASE KEEP IN ALPHABETICAL ORDER
exports.default = {
CHECK: {
SUMMARY: "Perform a check on JCL that is contained in an MVS data set or a local file",
DESCRIPTION: "Perform a check on JCL that is contained in an MVS data set or a local file.",
DATASET: {
SUMMARY: "Check JCL contained in an MVS data set",
DESCRIPTION: "Reads the specified input data set and invokes the JCLCheck service with the data set contents.",
POSITIONALS: {
DATASET: "The MVS data set containing the JCL contents. The data set can be a physical sequential (PS) or partitioned data set " +
"(PDS) member. The data set attributes must be recfm fixed-block (FB) and lrecl 80. The data set must be catalogued."
},
EXAMPLES: {
EX1: `Check the JCL contained in "MY.DATASET(JCL)" and print a table of statements in error`,
EX2: `Check the JCL contained in "MY.DATASET(JCL)" and print the raw JCLCheck report`
}
},
LOCALFILE: {
SUMMARY: "Check JCL contained in a local file",
DESCRIPTION: "Reads the contents of the local file specified and invokes the JCLCheck service with the JCL contents.",
POSITIONALS: {
LOCALFILE: "The local file containing the JCL to check. The local JCL file can contain a single job or multiple jobs (specified " +
"one after another without blank lines or line breaks). The JCL lines in the file must not exceed 80 characters.",
},
EXAMPLES: {
EX1: `Check the JCL contained in the file "jcl.txt" and print a table of statements in error`,
EX2: `Check the JCL contained in the file "jcl.txt" and print the raw JCLCheck report`
}
},
},
};
//# sourceMappingURL=en.js.map