UNPKG

zowe-cli-cics-deploy-plugin

Version:

IBM CICS Bundle generation and deployment for Zowe CLI

30 lines 970 B
"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.CicshlqOption = void 0; const MAX_LENGTH = 35; /** * Imperative option for the "cicshlq" parameter * */ exports.CicshlqOption = { name: "cics-hlq", aliases: ["cq", "cicshlq"], type: "string", required: false, stringLengthRange: [1, MAX_LENGTH], group: "cics-deploy Options", description: "Specifies the high-level qualifier (up to 35 characters) at which the CICS " + "datasets can be found in the target environment. " + "This parameter defaults to the value specified in the cics-deploy profile." }; //# sourceMappingURL=Cicshlq.option.js.map