UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

48 lines 1.43 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.GetJobDef = void 0; exports.GetJobDef = { name: "job", aliases: ["j"], summary: "Get basic definition for one or more jobs", description: "Get a list of the job definitions for one or more jobs.", examples: [ { options: "--all true --db CA7DB --jobname TESTJOB", description: "List the job defintion information of a job, CA7DB which defined in the CA7DB database" } ], type: "command", handler: __dirname + "/GetJobDef.handler", options: [ { name: "all", description: "all=false\n\n" + "Fetch all the available properties\n", type: "string", defaultValue: false, required: true }, { 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=GetJobDef.definition.js.map