@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
41 lines • 1.35 kB
JavaScript
;
/*
* 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.GetJobInstanceRequirementsDef = void 0;
exports.GetJobInstanceRequirementsDef = {
name: "requirements",
aliases: ["r"],
summary: "Retrieves information about requirements for jobs in the active workload",
description: "Displays information about requirements for jobs in the active workload.",
examples: [
{
options: "--ca7no 7777 --db CA7DB",
description: "Retrieves the job requirements of a CA 7 job (7777) which resided in CA7DB database"
}
],
type: "command",
handler: __dirname + "/GetJobInstanceRequirements.handler",
options: [
{
name: "ca7no",
description: "ca7no=0231\n\n" +
"The CA 7 job number\n",
type: "string",
required: true
},
{
name: "databasename",
aliases: ["db"],
description: "databasename=TESTJOB01\n\n" +
"The CA 7 database name\n",
type: "string"
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=GetJobInstanceRequirements.definition.js.map