@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
48 lines • 1.73 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.HoldDefinition = void 0;
exports.HoldDefinition = {
name: "hold",
aliases: ["h"],
summary: "Holds a job from moving forward to the next queue",
description: "This function is available on the QM.1 panel with a FILL value of H.\n" +
"Depending on the timing and whether you have any other \n" +
"predecessor situations, the QM.3 panel can sometimes accomplish this process.\n" +
"For more information on HOLD command, see the techdocs folder in this project.",
examples: [
{
options: "--q RDY",
description: "Holds the entire RDYQ"
}
],
type: "command",
handler: __dirname + "/Hold.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "q",
description: "example: RDY\n" +
"Specifies to hold the contents of an entire queue.\n" +
"Possible values:\n" +
"REQ\n" +
"Specifies to hold all jobs currently in the request queue.\n" +
"RDY\n" +
"Specifies to hold all jobs currently in the ready queue.\n" +
"Required: Yes, unless job number is used.",
type: "string"
},
{
name: "ca7num",
description: "ca7num=0016\n\n" +
"Defines the individual job number to hold. Omit if Q is specified.\n",
type: "string"
}
]
};
//# sourceMappingURL=Hold.definition.js.map