UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

36 lines 1.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.JobstatusDefinition = void 0; exports.JobstatusDefinition = { name: "job-status", aliases: ["js"], summary: "Retrieves a status of a job from CA 7", description: "Available request is listed below.", examples: [ { options: "--jnum 0016", description: "Gets the status of jobnumber 0016 from CA 7" } ], type: "command", handler: __dirname + "/Jobstatus.handler", profile: { optional: ["ca7"] }, options: [ { name: "jobnumber", aliases: ["jnum"], description: "jnum=0016\n\n" + "Defines the name of the job to retrieve.\n" + "Indicates the individual job to retrieve, and the value must be a CA 7 job number.", type: "string", required: true } ] }; //# sourceMappingURL=Jobstatus.definition.js.map