UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

40 lines 1.22 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.GetPriorRunQDefinition = void 0; exports.GetPriorRunQDefinition = { name: "prior-run", aliases: ["pr"], summary: "Retrieves job information from the prior-run queue", description: "Get a list one or more jobs from the prior-run queue.", examples: [ { options: "--db CA7DB --jobname TEST%", description: "Retrieve any job(s) from the prior-runqueue based on these two parameters" } ], type: "command", handler: __dirname + "/GetPriorRunQ.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=GetPriorRunQ.definition.js.map