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.

80 lines 2.58 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.USSFileDefinition = void 0; // Does not use the import in anticipation of some internationalization work to be done later. const strings = require("../../-strings-/en").default.SUBMIT.ACTIONS; exports.USSFileDefinition = { name: "uss-file", aliases: ["uf", "uss"], type: "command", summary: strings.USS_FILE.SUMMARY, description: strings.USS_FILE.DESCRIPTION, handler: __dirname + "/../Submit.shared.handler", positionals: [ { name: "file", description: strings.USS_FILE.POSITIONALS.USSFILE, type: "string", required: true } ], options: [ { name: "wait-for-active", aliases: ["wfa"], description: strings.COMMON_OPT.WAIT_FOR_ACTIVE, type: "boolean", conflictsWith: ["wait-for-output", "view-all-spool-content", "directory"] }, { name: "wait-for-output", aliases: ["wfo"], description: strings.COMMON_OPT.WAIT_FOR_OUTPUT, type: "boolean" }, { name: "view-all-spool-content", aliases: ["vasc"], description: strings.COMMON_OPT.VIEW_ALL_SPOOL_CONTENT, type: "boolean" }, { name: "directory", aliases: ["d"], description: strings.COMMON_OPT.DIRECTORY, type: "string" }, { name: "extension", aliases: ["e"], description: strings.COMMON_OPT.EXTENSION, implies: ["directory"], type: "string" }, { name: "jcl-symbols", aliases: ["js"], description: strings.COMMON_OPT.JCL_SYMBOLS, type: "string" } ], profile: { optional: ["zosmf"] }, outputFormatOptions: true, examples: [ { options: strings.USS_FILE.EXAMPLES.EX1.OPTIONS, description: strings.USS_FILE.EXAMPLES.EX1.DESCRIPTION }, { options: strings.USS_FILE.EXAMPLES.EX2.OPTIONS, description: strings.USS_FILE.EXAMPLES.EX2.DESCRIPTION } ] }; //# sourceMappingURL=USSFile.definition.js.map