@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
66 lines • 2.48 kB
JavaScript
"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.DemandDefinition = void 0;
const Constants_1 = require("../../../Constants");
exports.DemandDefinition = {
name: "demand",
aliases: ["d"],
summary: "Demand a CA 7 job",
description: "The demanded jobs are placed in the request queue and assigned a unique CA 7 job number.\n" +
"JOB and JOBL are mutually exclusive.",
type: "command",
handler: __dirname + "/Demand.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "job",
description: "job=PAYROLL\n\n" +
"The demanded jobs are placed in the request queue and assigned a unique CA 7 job number.\n" +
"1-8 alphanumeric (mutually exclusive w/ jobl",
type: "string",
required: true
},
{
name: "jobl",
description: "jobl=payrollSW123\n\n" +
"Defines the long name of the job being demanded.\n" +
"The demanded jobs are placed in the request queue and assigned a unique CA 7 job number.",
type: "string"
},
Constants_1.Constants.CLI_JOB_ARFSET,
Constants_1.Constants.CLI_JOB_CC,
Constants_1.Constants.CLI_JOB_CLASS,
Constants_1.Constants.CLI_JOB_COUNT,
Constants_1.Constants.CLI_JOB_DATE,
Constants_1.Constants.CLI_JOB_DEPJOB,
Constants_1.Constants.CLI_JOB_DOTM,
Constants_1.Constants.CLI_JOB_EXEC,
Constants_1.Constants.CLI_JOB_INTERVAL,
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_PRTY,
Constants_1.Constants.CLI_JOB_RMS,
Constants_1.Constants.CLI_JOB_RO,
Constants_1.Constants.CLI_JOB_SCHID,
Constants_1.Constants.CLI_JOB_SET,
Constants_1.Constants.CLI_JOB_STOP,
Constants_1.Constants.CLI_JOB_TIME,
Constants_1.Constants.CLI_JOB_TYPE
],
examples: [
{
options: "--job PAYROLL",
description: "Demand job, PAYROLL to CA 7"
}
]
};
//# sourceMappingURL=Demand.definition.js.map