UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

46 lines 1.38 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.GetJobInstanceJCLDef = void 0; exports.GetJobInstanceJCLDef = { name: "jcl", aliases: ["jcl"], summary: "Retrieves JCL for a job in the active workload", description: "Displays JCL for a job in the active workload.", examples: [ { options: "--ca7no 7777 --db CA7DB --showNo true", description: "Retreives JCL of a CA7 job, CA75TEST (7777) which resided in CA7DB database" } ], type: "command", handler: __dirname + "/GetJobInstanceJCL.handler", options: [ { name: "ca7no", description: "ca7no=0231\n\n" + "The CA 7 job number\n", type: "string", required: true }, { name: "db", description: "db=TESTJOB01\n\n" + "The CA 7 database name\n", type: "string" }, { name: "showNo", description: "showNo=true\n\n" + "Show line numbers in JCL\n", type: "boolean" } ], profile: { optional: ["ca7"] } }; //# sourceMappingURL=GetJobInstanceJCL.definition.js.map