UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

65 lines 2.56 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.RmttrkDefinition = void 0; exports.RmttrkDefinition = { name: "rmttrk", aliases: ["rtrk"], summary: "Defines a dependency on a remote CA 7 job.", description: "The RMTTRK defines a dependency on a job in a remote CA 7 workload.", type: "command", handler: __dirname + "/Rmttrk.handler", profile: { optional: ["ca7"] }, options: [ { name: "remote-sched", aliases: ["rs"], description: "remote-sched=AS1\n\n" + "The name of publishing scheduler that issues this RMTTRK command.\n" + "Must be defined to receiving CA7ONL using XN.7.\n" + "This name is provided to the remote scheduler at subscription time.\n" + "Limists: 1-4 alphanumeric characters", type: "string", required: true }, { name: "job-name", aliases: ["jn"], description: "job-name=PAYJOB\n\n" + "The name of job running in the publishing scheduler that invokes this command.\n" + "Limits: Autosys job names can be up to 64 characters." + "Valid characters are a-z, A-Z, 0-9, period (.),underscore (_), hyphen (-), colon (:), and pound (#)." + "Do not include embedded spaces or tabs.", type: "string", required: true }, { name: "status", description: "status=FAILURE\n\n" + "The status of job named on job-name.\n" + "The analogue of this service in AutoSys is change-status-job which supports these values:\n" + "FAILURE, INACTIVE, RUNNING, STARTING, SUCCESS, TERMINATED\n", type: "string" }, { name: "date-time-status-changed", aliases: ["dtsc"], description: "date-time-status-changed=2021-08-12T10:12:13.680000-04:00\n\n" + "Date/time remote scheduler detected status change reported by the STATUS keyword.\n" + "Limits: ISO8601 character format.", type: "string" } ], examples: [ { options: "--jn JOB123", description: "Rmttrk job name JOB123 to CA 7" } ] }; //# sourceMappingURL=Rmttrk.definition.js.map