UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

54 lines 2.22 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.PrscfDefinition = void 0; exports.PrscfDefinition = { name: "prscf", aliases: ["pc"], summary: "Frees a shared resource that belongs to a job", description: "The PRSCF command frees a shared, exclusive, or RCT resource that is connected to a job", examples: [ { options: "--job 1234 --rsrc ZOWECRM1", description: "Frees a shared resource name, ZOWECRM1 that attached to the job 1234" } ], type: "command", handler: __dirname + "/Prscf.handler", profile: { optional: ["ca7"] }, options: [ { name: "job", description: "example: 1234\n\n" + "Specifies the CA Workload Automation CA 7 Edition job name or number to which the resource is attached.\n" + "jobnumber\n" + "Indicates a specific CA 7 job number.\n" + "Limits: 1 to 4 numeric characters", type: "string" }, { name: "rsrc", description: "example: RESOURCE.TYPE2.EXEC\n\n" + "Specifies the fully qualified resource name to free.\n" + "You can optionally specify * to indicate to free all resources that are connected to the job.\n" + "Limits: 1 to 44 alphanumeric characters", type: "string" }, { name: "force", description: "example: YES\n\n" + "(Optional) FORCE=YES indicates that CA WA CA 7 Edition is not to evaluate\n\n" + "the availability of the named resources for this run of the job only.\n" + "This run of the job does not use the named resources.\n" + "This keyword can be used on an exception basis to let a job in a \n" + "W-RSRC status bypass VRM checking for one or more resources defined for it on the RM.1 panel.", type: "string" } ] }; //# sourceMappingURL=Prscf.definition.js.map