@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
74 lines • 2.57 kB
JavaScript
"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.PutReqPredDef = void 0;
exports.PutReqPredDef = {
name: "requirement-predecessor",
aliases: ["rp"],
summary: "Use the following two required parameters",
description: "Update requirement definition for a job",
examples: [
{
options: "TESJOB1 0009 USER ONLY \"APCDAL.TESTDB01.TEST\"",
description: "post TESJOB1 0009 USER ONLY \"APCDAL.TESTDB01.TEST\""
}
],
type: "command",
handler: __dirname + "/PutReqPred.handler",
options: [
{
name: "job",
description: "The name of the job that requires the predecessor\n\n",
type: "string",
required: true
},
{
name: "schid",
description: "The schedule id of requiring job\n\n",
type: "string",
required: true
},
{
name: "predtype",
description: "The predecessor type\n\n",
type: "string",
required: true
},
{
name: "nextrun",
description: "The status of predecessor for next run of job\n" +
"[ YES, ONLY, SKIP ]\n\n",
type: "string",
required: true
},
{
name: "predobject",
description: "The predecessor. Values vary with predtype.\n" +
"The predecessor. Values vary with predtype.\n" +
"When “predtype”:”DSN”,”predobject” is 1-44 name of required dataset.\n" +
"When “predtype”:”USER” then “predobject” is 1-44 character user requirement text.\n\n",
type: "string",
required: true
},
{
name: "leadtime",
description: "The satisfaction lead time in hours.\n" +
"This may be honored when “predtype” is “job or “DSN”\n\n",
type: "string"
},
{
name: "permanent",
description: "Indicates that this predecessor is permanent, that is always considered satisfied.\n" +
"This parameter only applies when “predtype” is “DSN”\n" +
"[ Y, N ]\n\n",
type: "string"
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=PutReqPred.definition.js.map