@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
44 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.PostActiveResourceDef = void 0;
exports.PostActiveResourceDef = {
name: "active-resource",
aliases: ["ar"],
summary: "Display active resources by job. The jobs can be listed generically or with fully qualified job names.",
description: "Display active resources by job.",
examples: [
{
options: "--job RMTESTA1 --rn A",
description: "Display active resources by job RMTESTA1 along with other parameters"
}
],
type: "command",
handler: __dirname + "/PostActiveResource.handler",
options: [
{
name: "job",
description: "Specifies a fully qualified or generic job name." +
"1. Specifies all jobs.\n" +
"2. Specifies a fully qualified job name. Limits:: 1 to 8 alphanumeric characters\n" +
"3. Specifies multiple jobs that a generic job name specifies. Limits:: 1 to 7 alphanumeric characters that are terminated with an asterisk.\n\n",
type: "string"
},
{
name: "resource-name",
aliases: ["rn"],
description: "Specifies a fully qualified or generic resource name. An asterisk indicates a generic request." +
"1. Specifies all resources.\n" +
"2. Specifies a fully qualified resource name. Limits::1 to 44 alphanumeric characters\n" +
"3. Specifies multiple resources that a generic resource name specifies. Limits:: 1 to 43 alphanumeric characters that are terminated with an asterisk\n\n",
type: "string"
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=PostActiveResource.definition.js.map