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.

58 lines 1.93 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.StartASApp = void 0; const zos_tso_for_zowe_sdk_1 = require("@zowe/zos-tso-for-zowe-sdk"); exports.StartASApp = { name: "app", aliases: ["a"], summary: "Start application at TSO address space", description: "Start application at TSO address space,", type: "command", handler: __dirname + "/StartASApp.handler", profile: { optional: ["zosmf", "tso"] }, options: zos_tso_for_zowe_sdk_1.TsoProfileConstants.TSO_PROFILE_OPTIONS.concat([ { name: "app-key", aliases: ["ak"], description: "App key of application running at TSO address space, " + "this app key value should be referenced when sending or receiving messages from the application instance", type: "string", required: true }, { name: "startup", aliases: ["sc"], description: "Command to be ran to start application at the TSO address space", type: "string", required: true }, { name: "queue-id", aliases: ["qi"], description: "Queue ID of TSO address space", type: "string", implies: ["servlet-key"] }, { name: "servlet-key", aliases: ["sk"], description: "Servlet Key of TSO address space", type: "string", implies: ["queue-id"] } ]), examples: [], }; //# sourceMappingURL=StartASApp.definition.js.map