@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
51 lines • 1.77 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 });
exports.AllSpoolContentDefinition = void 0;
exports.AllSpoolContentDefinition = {
name: "all-spool-content",
aliases: ["asc"],
type: "command",
summary: "View all spool content for a specified job ID",
description: "View the contents of each spool file from a z/OS job on spool/JES queues. " +
"The command does not pre-validate the JOBID. " +
"The command presents errors verbatim from the z/OSMF Jobs REST endpoints.",
handler: __dirname + "/AllSpoolContent.handler",
profile: {
optional: ["zosmf"]
},
positionals: [
{
name: "jobid",
description: "The z/OS JOBID of the job containing the spool files you want to view. " +
"No pre-validation of the JOBID is performed.",
type: "string",
required: true
},
],
options: [
{
name: "encoding",
aliases: ["ec"],
description: "Download the spool file content with encoding mode, which means that " +
"data conversion is performed using the file encoding specified.",
type: "string"
}
],
examples: [
{
description: "View all spool files for the job with job ID JOB00234",
options: "JOB00234"
}
]
};
//# sourceMappingURL=AllSpoolContent.definition.js.map