@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
57 lines • 2.36 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.RetrieveWorkflowDefinition = void 0;
const RetrieveWorkflowDefinition_options_1 = require("./RetrieveWorkflowDefinition.options");
const path_1 = require("path");
/**
* This object defines the command for retrieving workflow contents of zosworkflow definition.
* This is not something that is intended to be used outside of this npm package.
*
* @private
*/
exports.RetrieveWorkflowDefinition = {
name: "definition-file-details",
aliases: ["dfd"],
summary: "Retrieve the contents of a z/OSMF workflow definition from a z/OS system",
description: "Retrieve the contents of a z/OSMF workflow definition from a z/OS system.",
type: "command",
handler: (0, path_1.join)(__dirname, "./RetrieveWorkflowDefinition.handler"),
profile: {
optional: ["zosmf"]
},
positionals: [
{
name: "definitionFilePath",
description: "Specifies the location of the workflow definition file, which is either a UNIX path name or a fully qualified z/OS data set name.",
type: "string",
required: true
}
],
options: [
RetrieveWorkflowDefinition_options_1.RetrieveWorkflowDefinitionCommonOptions.listSteps,
RetrieveWorkflowDefinition_options_1.RetrieveWorkflowDefinitionCommonOptions.listVariables
],
examples: [
{
description: "To list the contents of a workflow definition stored in the UNIX file \"/user/dir/workflow.xml\"" +
" including its steps and variables",
options: "\"/user/dir/workflow.xml\" --list-steps --list-variables"
},
{
description: "To list the contents of a workflow definition stored in the z/OS data set \"USER.DATA.SET.XML\"" +
" including its steps and variables",
options: "\"USER.DATA.SET.XML\" --list-steps --list-variables"
}
]
};
//# sourceMappingURL=RetrieveWorkflowDefinition.definition.js.map