UNPKG

zowe-cli-cics-deploy-plugin

Version:

IBM CICS Bundle generation and deployment for Zowe CLI

28 lines 1.03 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 * */ const UndeployBundle_definition_1 = require("./bundle/UndeployBundle.definition"); /** * Imperative command to "undeploy" a Bundle, etc. * */ const UndeployDefinition = { name: "undeploy", aliases: ["u", "udep"], summary: "Undeploy a CICS bundle from one or more CICS regions within a CICSplex", description: "Undeploy a CICS bundle from one or more CICS regions within a CICSplex. " + "A BUNDLE resource is made UNAVAILABLE, it is then DISABLED and " + "DISCARDED from the target scope with the CICSplex.", type: "group", children: [UndeployBundle_definition_1.UndeployBundleDefinition] }; module.exports = UndeployDefinition; //# sourceMappingURL=Undeploy.definition.js.map