UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

40 lines 1.2 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.GetTrigSuccDef = void 0; exports.GetTrigSuccDef = { name: "trigger-successor", aliases: ["ts"], summary: "Get triggered jobs for one or more jobs", description: "Get a list of the triggered jobs for one or more jobs.", examples: [ { options: "--db CA7DB --jobname TESTJOB", description: "List the trigger successor of a job, TESTJOB which defined in the CA7DB database" } ], type: "command", handler: __dirname + "/GetTrigSucc.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=GetTrigSucc.definition.js.map