@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
45 lines • 1.53 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.ReleaseDefinition = void 0;
exports.ReleaseDefinition = {
name: "release",
aliases: ["rl"],
summary: "Release or resumed for jobs or queues on hold",
description: "Release a single job to CA 7.",
examples: [
{
options: "--ca7num 0016",
description: "Release ca7 number 0016 from CA 7"
}
],
type: "command",
handler: __dirname + "/Release.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "q",
description: "Q={REQ|RDY}\n\n" +
"Indicates to release the contents of an entire queue. Omit Q when JOB or JOBL is specified.\n\n" +
"REQ\n" +
"Release the contents of the request queue.\n\n" +
"RDY\n" +
"Release the contents of the ready queue.",
type: "string",
conflictsWith: ["ca7num"]
},
{
name: "ca7num",
description: "ca7num=0016\n\n" +
"Defines the name of the job number to release.\n" +
"Indicates the individual job to release. JOB is required to release a specific job. Omit JOB when JOBL or Q is specified.",
type: "string"
}
]
};
//# sourceMappingURL=Release.definition.js.map