UNPKG

zowe-cli-cics-deploy-plugin

Version:

IBM CICS Bundle generation and deployment for Zowe CLI

31 lines 1.16 kB
"use strict"; /* * 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 IBM Corp, 2019 * */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CsdgroupOption = void 0; const MAX_LENGTH = 8; /** * Imperative option for the "csdgroup" parameter * */ exports.CsdgroupOption = { name: "csd-group", aliases: ["cg", "csdgroup"], type: "string", stringLengthRange: [1, MAX_LENGTH], group: "cics-deploy Options", description: "Specifies the CSD group (up to 8 characters) for the bundle resource. If a bundle is " + "deployed, a definition is added to this group. If a bundle is undeployed, then the " + "definition is removed from this group. The definition is added or removed from the CSD of each system " + "that is specified by the --scope option. The --csd-group and --res-group options are " + "mutually exclusive." }; //# sourceMappingURL=Csdgroup.option.js.map