UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

50 lines 1.78 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.DeleteJobTriggerSuccessorDefinition = void 0; exports.DeleteJobTriggerSuccessorDefinition = { name: "delete-job-trigger-successor", aliases: ["djts"], summary: "Delete Job Trigger from a job definition", description: "Delete Job Trigger", examples: [ { options: "--job JOBA --tj JOBB", description: "Delete a Job Trigger JOBB from the definition of JOBA" } ], type: "command", handler: __dirname + "/DeleteJobTriggerSuccessor.handler", profile: { optional: ["ca7"] }, options: [ { name: "job", description: "Specifies the job name whose successful completion causes triggering." + "\nLimits: 1 to 8 alphanumeric characters", type: "string", required: true }, { name: "schid", description: "(Optional) Specifies for which schedule ID of the triggering job the triggered-job is scheduled." + "\nDefault: 0 (all schedule IDs)" + "\nLimits: 1 to 3 numeric characters from 0 through 999", type: "string", required: false }, { name: "triggered-job", aliases: ["tj"], description: "Specifies the job name that the completion of the triggering job triggers." + "\nLimits: 1 to 8 alphanumeric characters", type: "string", required: true } ] }; //# sourceMappingURL=DeleteJobTriggerSuccessor.definition.js.map