UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

54 lines 1.72 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.GetJobInstanceListDef = void 0; exports.GetJobInstanceListDef = { name: "list", aliases: ["l"], summary: "Retrieves information about jobs in the active workload", description: "Displays information about jobs in the active workload.", examples: [ { options: "--all false --ca7no 7777 --db CA7DB --jobname TESTCA7", description: "List a CA 7 job (7777) information which resided in CA7DB database " } ], type: "command", handler: __dirname + "/GetJobInstanceList.handler", options: [ { name: "all", description: "all=False\n\n" + "Fetch all the available properties\n" + "If the job number is provided, all the properties will be returned\n", type: "boolean", defaultValue: false }, { name: "ca7no", description: "ca7no=0231\n\n" + "The CA 7 job number\n", type: "string" }, { name: "databasename", aliases: ["db"], description: "databasename=TESTJOB01\n\n" + "The CA 7 database name\n", type: "string" }, { name: "jobname", description: "jobname=CA7TEST\n\n" + "The CA 7 job name\n", type: "string" } ], profile: { optional: ["ca7"] } }; //# sourceMappingURL=GetJobInstanceList.definition.js.map