UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

121 lines 6.74 kB
"use strict"; /* * Copyright (c) 2025 Broadcom. All Rights Reserved. The term * "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. * * This software and all information contained therein is * confidential and proprietary and shall not be duplicated, * used, disclosed, or disseminated in any way except as * authorized by the applicable license agreement, without the * express written permission of Broadcom. All authorized * reproductions must be marked with this language. * * EXCEPT AS SET FORTH IN THE APPLICABLE LICENSE AGREEMENT, TO * THE EXTENT PERMITTED BY APPLICABLE LAW, BROADCOM PROVIDES THIS * SOFTWARE WITHOUT WARRANTY OF ANY KIND, INCLUDING WITHOUT * LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL BROADCOM * BE LIABLE TO THE END USER OR ANY THIRD PARTY FOR ANY LOSS OR * DAMAGE, DIRECT OR INDIRECT, FROM THE USE OF THIS SOFTWARE, * INCLUDING WITHOUT LIMITATION, LOST PROFITS, BUSINESS * INTERRUPTION, GOODWILL, OR LOST DATA, EVEN IF BROADCOM IS * EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.PutJobTriggerSuccessor_1Definition = void 0; exports.PutJobTriggerSuccessor_1Definition = { name: "update-trigger-successor_1", aliases: ["uts1"], summary: "Modify Job Trigger for a job definition for DEFAULT_INSTANCE", description: "Modify a Job Trigger for the definition of a job", examples: [ { options: "--job JOBA --schid 01 --tj JOBA --tjs 02 --tjqt 0910 --tjlt 0910 --tjst 0910", description: "Update Job Trigger to the definition of job JOBA" } ], type: "command", handler: __dirname + "/PutJobTriggerSuccessor_1.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 }, { name: "triggered-job-schid", aliases: ["tjs"], description: "(Optional) Denotes a replacement schedule ID to use when the triggered-job is placed into the request queue." + "\nDefault: 0 (no replacement)" + "\nLimits: 1 to 3 numeric characters from 0 through 999" + "\nNote: If triggered-job-schid is used, it replaces the schid value of the triggered job. Any jobs triggered (by triggered-job or data sets it creates) use this triggered-job-schid for their schedule ID unless they also have a triggered-job-schid value.", type: "string", required: false }, { name: "triggered-job-due-out-time", aliases: ["tjdot"], description: "(Required if triggered-job-queue-time is omitted) Specifies the due-out time of day of the triggered-job rounded down to 10-minute increments." + "\nIf this parameter is used, triggered-job-queue-time must be omitted." + "\nLimits: 4 numeric characters that are specified as hhmm, where hh can be 00 through 24 and mm can be 00 through 59, the highest value being 2400. If specified, the lowest value is 10." + "\nNote: If used and the due-out-time of the triggering job is after the triggered-job-due-out-time, the following calendar day is assumed.", type: "string", required: false }, { name: "triggered-job-queue-time", aliases: ["tjqt"], description: "(Required if triggered-job-due-out-time is omitted) Specifies the elapsed queue time of triggered-job rounded down to 10-minute increments." + "\nIf this parameter is used, triggered-job-due-out-time must be omitted because due-out time is then calculated as deadline time plus runtime." + "\nDeadline time is calculated as current date/time plus queue time." + "\nLimits: 4 numeric characters that are specified as hhmm, where hh can be 00 through 24." + "\nThe mm can be 00 through 59, the highest value being 2400.", type: "string", required: false }, { name: "triggered-job-lead-time", aliases: ["tjlt"], description: "(Optional) Specifies the elapsed lead time for triggered-job rounded to 10-minute increments. This parameter specifies the lead or processing time necessary to ensure triggered-job meets its due-out time." + "\nDefault: 0000" + "\nLimits: 4 numeric characters that are specified as hhmm, where hh can be 00 through 24." + "\nThe mm can be 00 through 59, the highest value being 2400.", type: "string", required: false }, { name: "triggered-job-submit-time", aliases: ["tjst"], description: "(Optional) Imposes a submit time of day requirement on triggered-job. When used, the job is not submitted before this time." + "\nThe triggered-job-submit-time is always rounded down to 15-minute increments." + "\nDefault: 0 (no specific submit time requirement)" + "\nLimits: 4 numeric characters that are specified as hhmm, where hh can be 00 through 24 and mm can be 00 through 59, the highest value being 2400.Note: If triggered-job-queue-time is used, the date for the submit time requirement is the same as the deadline start date." + "\n" + "\nIf triggered-job-due-out-time is used and the triggered-job-submit-time is less than the triggered-job-due-out-time, the date for the triggered-job-submit-time is the same as the deadline start date. Otherwise, the triggered-job-submit-time date is the previous day.", type: "string", required: false } ] }; //# sourceMappingURL=PutJobTriggerSuccessor_1.definition.js.map