@broadcom/ca7-for-zowe-cli
Version:
CA 7 Workload Automation Plug-in for Zowe CLI
56 lines • 1.79 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.PutJobInstanceJCLDef = void 0;
exports.PutJobInstanceJCLDef = {
name: "jcl",
summary: "Use the following two required parameters",
description: "Update JCL for a job",
examples: [
{
options: "TESJOB1 0009 USER ONLY \"APCDAL.TESTDB01.TEST\"",
description: "Update JCL for a job TESJOB1 along with other parameters"
}
],
type: "command",
handler: __dirname + "/PutJobInstanceJCL.handler",
options: [
{
name: "ca7no",
description: "The CA 7 job number\n\n",
type: "string",
required: true
},
{
name: "postjclovrd",
description: "Indicates whether to post the JCL override requirement when the JCL is updated\n\n",
type: "string"
},
{
name: "sourcedataset",
description: "The source data set name containing the new JCL\n\n",
type: "string",
required: true
},
{
name: "sourcemember",
description: "The source data set member name containing the new JCL\n\n",
type: "string",
required: true
},
{
name: "sourcetype",
description: "The source type containing the new JCL\n\n" +
"currently: dataset is by the default and the only option",
type: "string",
required: true
}
],
profile: {
optional: ["ca7"]
}
};
//# sourceMappingURL=PutJobInstanceJCL.definition.js.map