@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
49 lines • 1.92 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.DeleteJobDefinitionDefinition = void 0;
exports.DeleteJobDefinitionDefinition = {
name: "delete-job",
aliases: ["dj"],
summary: "Delete a job definition",
description: "Delete Job Definition",
examples: [
{
options: "--job JOBA --type DELETE",
description: "Delete Job named JOBA"
}
],
type: "command",
handler: __dirname + "/DeleteJobDefinition.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "job",
description: "The name of the job",
type: "string",
required: true
},
{
name: "type",
description: "The type of deletion." +
"\nValid values are:" +
"\nDELETE" +
"\nDeletes a job and its associated data from the database (documentation, schedules, and so forth).DD" +
"\nSame as DELETE, but deletes any data sets that this job references if the data sets have no users and" +
"\nno documentation, and do not cause job triggering." +
"\nThis includes all virtual resources that are connected to the job.PURGE" +
"\nSame as DD, but also deletes job trigger definitions that trigger the job being deleted," +
"\njob requirement definitions that require the job being deleted;" +
"\nand, if the WA Restart Option interface is active, deletes the WA Restart Option" +
"\nCMT member for the job being deleted.",
type: "string",
required: true
}
]
};
//# sourceMappingURL=DeleteJobDefinition.definition.js.map