@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
47 lines • 1.88 kB
JavaScript
"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.VerifyDefinition = void 0;
exports.VerifyDefinition = {
name: "verify",
aliases: ["v"],
summary: "Set the manual verification requirement for a job in the request queue",
description: "The VERIFY command establishes or satisfies a manual verification requirement for a currently scheduled run of the job in the request queue before its execution. ",
examples: [
{
options: "--ca7num 0016",
description: "Specifies a verification requirement for ca7 number, 0016"
}
],
type: "command",
handler: __dirname + "/Verify.handler",
profile: {
optional: ["ca7"]
},
options: [
{
name: "ca7num",
description: "ca7num=0016\n\n" +
"Specifies the CA 7 job number of the job or which you want to add, modify, or remove a submit time-of-day requirement.\n\n" +
"Limits: 1 to 4 alphanumeric characters",
type: "string",
required: true
},
{
name: "set",
description: "example: ON\n\n" +
"Sets the verification requirement.\n\n" +
"ON\n\n" +
"Establishes a manual verification requirement that did not previously exist.\n\n" +
"OFF\n\n" +
"Indicates that a previously established manual verification requirement is satisfied and can be\n\n" +
"removed. A verification requirement no longer appears on the requirements list in the request queue.",
type: "string",
required: true
}
]
};
//# sourceMappingURL=Verify.definition.js.map