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.GetStepddDef = void 0; exports.GetStepddDef = { name: "step-dd", aliases: ["sd"], summary: "Get job STEP and DD information for one or more jobs", description: "Get a list of the job STEP and DD information for one or more jobs.", examples: [ { options: "--db CA7TDB --jobname TESTJOB", description: "List the SETP and DD statments of a job, TESTJOB which defined in the CA7DB database" } ], type: "command", handler: __dirname + "/GetStepdd.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=GetStepdd.definition.js.map