UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

44 lines 1.72 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 Contributors to the Zowe Project. * */ Object.defineProperty(exports, "__esModule", { value: true }); exports.definition = void 0; const Collect_definition_1 = require("./collect/Collect.definition"); const Issue_definition_1 = require("./issue/Issue.definition"); const zosmf_for_zowe_sdk_1 = require("@zowe/zosmf-for-zowe-sdk"); exports.definition = { name: "zos-console", aliases: ["console"], type: "group", summary: "Issue z/OS console commands and collect responses", description: "Interact with z/OSMF console services. Issue z/OS console commands and collect responses. " + "z/OS console services establishes extended MCS (EMCS) consoles on behalf of the user, " + "which are used to issue the commands and collect responses." + "\n\n" + "Important! Before you use commands in the zos-console command group, ensure that you understand " + "the implications of issuing z/OS console commands in your environment.", children: [ Collect_definition_1.CollectCommand, Issue_definition_1.IssueCommand ], passOn: [ { property: "options", value: zosmf_for_zowe_sdk_1.ZosmfSession.ZOSMF_CONNECTION_OPTIONS, merge: true, ignoreNodes: [ { type: "group" } ] } ] }; module.exports = exports.definition; //# sourceMappingURL=ZosConsole.definition.js.map