@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
40 lines • 1.19 kB
JavaScript
;
/*
* 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.GetReqSuccDef = void 0;
exports.GetReqSuccDef = {
name: "requirement-successor",
aliases: ["rs"],
summary: "Get successor jobs for one or more jobs",
description: "Get a list of the successor jobs for one or more jobs.",
examples: [
{
options: "--db CA7DB --jobname TESTJOB",
description: "List the successor of a job, which defined in the CA7DB database"
}
],
type: "command",
handler: __dirname + "/GetReqSucc.handler",
options: [
{
name: "db",
description: "db=TESTJOB01\n\n" +
"The CA 7 database name\n",
type: "string"
},
{
name: "jobname",
description: "jobname=TESTJOB01\n\n" +
"The CA 7 job name\n",
type: "string",
required: true
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=GetReqSucc.definition.js.map