@zowe/cics-for-zowe-cli
Version:
Zowe CLI Plug-in for IBM CICS Transaction Server
56 lines • 1.66 kB
JavaScript
;
/**
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProgramDefinition = void 0;
// Does not use the import in anticipation of some internationalization work to be done later.
const strings = require("../../-strings-/en").default.DELETE.RESOURCES.PROGRAM;
exports.ProgramDefinition = {
name: "program",
aliases: ["prog"],
description: strings.DESCRIPTION,
handler: __dirname + "/Program.handler",
type: "command",
positionals: [
{
name: "programName",
description: strings.POSITIONALS.PROGRAMNAME,
type: "string",
required: true,
},
{
name: "csdGroup",
description: strings.POSITIONALS.CSDGROUP,
type: "string",
required: true,
},
],
options: [
{
name: "region-name",
description: strings.OPTIONS.REGIONNAME,
type: "string",
},
{
name: "cics-plex",
description: strings.OPTIONS.CICSPLEX,
type: "string",
},
],
profile: { optional: ["cics"] },
examples: [
{
description: strings.EXAMPLES.EX1,
options: "PGM123 --region-name MYREGION",
},
],
};
//# sourceMappingURL=Program.definition.js.map