UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

45 lines 1.79 kB
"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.SubmitDefinition = void 0; exports.SubmitDefinition = { name: "submit", aliases: ["sm"], summary: "Modifies and expedites the jobs already residing in the queues", description: "The SUBMIT top line command modifies and expedites the process of job submission for jobs already residing in the queues", examples: [ { options: "--ca7num 0016", description: "Submit ca7 number, 0016 to CA 7" } ], type: "command", handler: __dirname + "/Submit.handler", profile: { optional: ["ca7"] }, options: [ { name: "ca7num", description: "ca7num=0016\n\n" + "Defines the name of the job to Submit.\n" + "Indicates the individual job to Submit, and the value must be a CA 7 job number.", type: "string", required: true }, { name: "express", aliases: ["ex"], description: "example: YES\n\n" + "(Optional) Indicates to place the job ahead of all other jobs (those jobs without EXPRESS=YES) for submission.\n\n" + "The value must be coded as shown. Not valid if workload balancing is being used.\n\n" + "Use of EXPRESS=YES does not establish an increased execution priority for a job.\n\n" + "Rather, it ensures that nonexpress jobs are not submitted ahead of a job that is flagged as an express job.", type: "string" } ] }; //# sourceMappingURL=Submit.definition.js.map