@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
37 lines • 1.23 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.RmtsubDefinition = void 0;
const Constants_1 = require("../../../Constants");
exports.RmtsubDefinition = {
name: "rmtsub",
aliases: ["rsub"],
summary: "Remote Subscribe to a CA 7 job",
description: "The RMTSUB command is used by a scheduling product that has a remote job dependency on a CA 7 job.\n",
type: "command",
handler: __dirname + "/Rmtsub.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "job",
description: "job=0123\n\n" +
"Specifies the CA Workload Automation CA 7 Edition job name or number to which the resource is attached.\n" +
"1-4 numeric characters, specifies the CA7 job number",
type: "string",
required: true
},
Constants_1.Constants.CLI_JOB_RMTSCHD
],
examples: [
{
options: "--job 0123",
description: "Rmtsub job, 0123 to CA 7"
}
]
};
//# sourceMappingURL=Rmtsub.definition.js.map