@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
41 lines • 1.34 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.DeleteScheduleDef = void 0;
exports.DeleteScheduleDef = {
name: "schedule",
aliases: ["s"],
summary: "Delete an existing date/time schedule (remove a schedule ID) for a CA7 job",
description: "Delete an existing date/time schedule",
examples: [
{
options: "--job ZOWECRM1 --schid 0004",
description: "Delete an existing date/time schedule (remove a schedule ID) for a CA7 job"
}
],
type: "command",
handler: __dirname + "/DeleteSchedule.handler",
options: [
{
name: "job",
description: "The name of the job\n\n",
type: "string",
required: true
},
{
name: "schid",
description: "Specifies the numeric schedule ID on which the user wants to perform the specified action.\n" +
"Limits:\n" +
"1 to 3 numeric characters from 1 through 999\n\n",
type: "string",
required: true
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=DeleteScheduleDef.definition.js.map