zowe-cli-cics-deploy-plugin
Version:
IBM CICS Bundle generation and deployment for Zowe CLI
28 lines • 860 B
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 IBM Corp, 2019
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.BundledirOption = void 0;
const MAX_LENGTH = 255;
/**
* Imperative option for the "bundledir" parameter
*
*/
exports.BundledirOption = {
name: "bundle-directory",
aliases: ["bd", "bundledir", "bundle-dir"],
type: "string",
required: true,
stringLengthRange: [1, MAX_LENGTH],
group: "cics-deploy Options",
description: "Required. Specifies the location of the CICS bundle (up to 255 characters) on zFS."
};
//# sourceMappingURL=Bundledir.option.js.map