@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
47 lines • 1.98 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.SubtmDefinition = void 0;
exports.SubtmDefinition = {
name: "subtm",
aliases: ["st"],
summary: "Modifies the required submit time-of-day for a job in the request queue",
description: "SUBTM modifies the required submit time-of-day for a job in the request queue",
examples: [
{
options: "--ca7num 0016",
description: "Modifies the required submit time for a ca7 number, 0016"
}
],
type: "command",
handler: __dirname + "/Subtm.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "ca7num",
description: "ca7num=0016\n\n" +
"Specifies the CA 7 job number of the job or which you want to add, modify, or remove a submit time-of-day requirement.\n\n" +
"Limits: 1 to 4 alphanumeric characters",
type: "string",
required: true
},
{
name: "time",
aliases: ["tm"],
description: "example: 1830\n\n" +
"(Optional) Specifies the new submit time-of-day in hours and minutes.\n\n" +
"TIME is required to add a submit time-of-day requirement when none exists or to change an existing requirement.\n\n" +
"If TIME is omitted, an existing submit time-of-day restriction is removed. Format:hhmm\n\n" +
"Defines the time-of-day where hh is hours (0 through 24) and \n\n" +
"mm is minutes (00 through 59). Maximum is 2400.\n\n" +
"If the value given is less than the current time (when the command is processed), the submit day is incremented by one.",
type: "string"
}
]
};
//# sourceMappingURL=Subtm.definition.js.map