UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

60 lines 2.12 kB
"use strict"; /* * Copyright © 202X Broadcom Inc. and/or its subsidiaries * © 202X Broadcom Inc and/or its subsidiaries; All rights reserved */ Object.defineProperty(exports, "__esModule", { value: true }); exports.RunDefinition = void 0; const Constants_1 = require("../../../Constants"); exports.RunDefinition = { name: "run", aliases: ["r"], summary: "Run a CA 7 job", description: "Run a single job to CA 7.", examples: [ { options: "--job PAYROLL", description: "Run a job, PAYROLL to CA 7" } ], type: "command", handler: __dirname + "/Run.handler", profile: { optional: ["ca7"] }, options: [ { name: "job", description: "job=PAYROLL\n\n" + "Defines the long name of the job to run.\n" + "The ran jobs are placed in the request queue and assigned a unique CA 7 job number.", type: "string", conflictsWith: ["jobl"] }, { name: "jobl", description: "job=payrollSW123\n\n" + "Identifies the job to submit.\n" + "The value must be a long job name.\n" + "If the job has not been defined in the database, use JOB instead.\n" + "See also JCLID. JOB and JOBL are mutually exclusive.\n" + "Limits:\n" + "1 to 64 alphanumeric characters\n", type: "string" }, Constants_1.Constants.CLI_JOB_ARFSET, Constants_1.Constants.CLI_JOB_CLASS, Constants_1.Constants.CLI_JOB_DOTM, Constants_1.Constants.CLI_JOB_EXEC, Constants_1.Constants.CLI_JOB_JCLID, Constants_1.Constants.CLI_JOB_JCLLIB, Constants_1.Constants.CLI_JOB_LATE, Constants_1.Constants.CLI_JOB_LEADTM, Constants_1.Constants.CLI_JOB_MAINID, Constants_1.Constants.CLI_JOB_RMS, Constants_1.Constants.CLI_JOB_SCHID, Constants_1.Constants.CLI_JOB_TIME, Constants_1.Constants.CLI_JOB_TYPE ] }; //# sourceMappingURL=Run.definition.js.map