@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
71 lines • 1.99 kB
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 Contributors to the Zowe Project.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
// Does not use the import in anticipation of some internationalization work to be done later.
const strings = require("../-strings-/en").default.LIST.OPTIONS;
/**
* Object containing all options to be used by the List data-set/member API
*/
exports.ListOptions = {
/**
* The volume serial
* @type {ICommandOptionDefinition}
*/
volume: {
name: "volume-serial",
aliases: ["vs"],
description: strings.VOLUME,
type: "string"
},
/**
* The indicator that we want to show more attributes
* @type {ICommandOptionDefinition}
*/
attributes: {
name: "attributes",
aliases: ["a"],
description: strings.ATTRIBUTES,
type: "boolean"
},
/**
* The indicator of how many lines will the list have, the default is 0 which means all the data sets.
* @type {ICommandOptionDefinition}
*/
maxLength: {
name: "max-length",
aliases: ["max"],
description: strings.MAXLENGTH,
type: "number"
},
/**
* The indicator that where ti file syste is mounted.
* @type {ICommandOptionDefinition}
*/
path: {
name: "path",
aliases: ["p"],
description: strings.PATH,
type: "string"
},
/**
* The indicator that where the name of mounted.
* @type {ICommandOptionDefinition}
*/
fsname: {
name: "fsname",
aliases: ["f"],
description: strings.FSNAME,
type: "string",
conflictsWith: ["path"]
}
};
//# sourceMappingURL=List.options.js.map