@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
76 lines • 2.67 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.PutJobDef = void 0;
exports.PutJobDef = {
name: "job",
summary: "Use the options to update the definition of a job",
description: "Update requirement definition for a job",
examples: [
{
options: "--job TESTJOB1 --job-type CPU --execute Y",
description: "Update a CPU type job, TESTJOB1 to be executable"
}
],
type: "command",
handler: __dirname + "/PutJobDef.handler",
options: [
{
name: "job",
description: "The name of the job to update\n\n",
type: "string",
required: true
},
{
name: "job-type",
aliases: ["jt"],
description: "The type of job. Valid values are: CPU|XPJOB|AGENT\n\n",
type: "string",
required: true
},
{
name: "execute",
description: "Indicates whether to execute this job.\n" +
"Valid values are: Y/N\n\n",
type: "string",
},
{
name: "use-jcl-override-library",
aliases: ["ujol"],
description: "Specifies whether to retrieve the JCL from the JCL Override library (JCLID=254) for the next run only (Y or N). \n" +
"This field is automatically set back to N the next time the job comes into the request queue\n\n",
type: "string"
},
{
name: "do-not-schedule-before-date",
aliases: ["dnsbd"],
description: "Specifies not to schedule this job before this date (in YYDDD format, or 00000)\n\n",
type: "string"
},
{
name: "do-not-schedule-before-time",
aliases: ["dnsbt"],
description: "Specifies not to schedule this job before this time (in HHMM format)\n",
type: "string"
},
{
name: "do-not-schedule-after-date",
aliases: ["dnsad"],
description: "Specifies not to schedule this job after this date (in YYDDD format, or 99999)\n",
type: "string"
},
{
name: "do-not-schedule-after-time",
aliases: ["dnsat"],
description: "Specifies not to schedule this job after this time (in HHMM format)\n",
type: "string"
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=PutJobDef.definition.js.map