UNPKG

@broadcom/jclcheck-for-zowe-cli

Version:

JCLCheck Plug-in for Zowe CLI

55 lines (54 loc) 2.66 kB
"use strict"; /** * 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 }); exports.ProfileConstants = void 0; class ProfileConstants { } exports.ProfileConstants = ProfileConstants; ProfileConstants.PLUGIN_SUMMARY = "JCLCheck plugin"; ProfileConstants.PLUGIN_DESCRIPTION = "Validates the accuracy of job control language (JCL) and also helps identify execution-time " + "errors, such as security violations and missing data sets that could cause jobs to fail."; ProfileConstants.DISPLAY_NAME = "CA JCLCheck"; ProfileConstants.ALIAS = "jck"; ProfileConstants.NAME = "jclcheck"; ProfileConstants.EXAMPLE_JCK_OPTS = "NOAS NOAU NOHCD NOJCL NORES NOSIGN"; // Option definitions used in various commands ProfileConstants.CLI_OPT_MRC = { name: "max-return-code", aliases: ["mrc"], type: "number", description: "Specifies the maximum acceptable return code from the JCLCheck service. " + "If the JCLCheck overall return code exceeds the value specified on this option, " + "the command will exit with a failure status code of 1." }; ProfileConstants.CLI_OPT_RO = { name: "raw-output", aliases: ["ro"], type: "boolean", description: "Causes the command to print the unformatted JCLCheck report (raw report) instead of the formatted error table. " + "Use this option if you intend to change the format of the JCLCheck report via runtime options. " + "Changing the format may affect the ability to produce a structured API response.", defaultValue: false }; //# sourceMappingURL=ProfileConstants.js.map