UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

44 lines 1.72 kB
"use strict"; /* * Copyright © 202X Broadcom Inc. and/or its subsidiaries * © 202X Broadcom Inc and/or its subsidiaries; All rights reserved */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DeleteDatasetDefinition = void 0; exports.DeleteDatasetDefinition = { name: "delete-dataset", aliases: ["dds"], summary: "Delete a dataset definition", description: "Delete Dataset", examples: [ { options: "--dname DATA.SET.NAME", description: "Delete the definition of a dataset named DATA.SET.NAME" } ], type: "command", handler: __dirname + "/DeleteDataset.handler", profile: { optional: ["ca7"] }, options: [ { name: "dataset-name", aliases: ["dname"], description: "(Required if dataset-number is omitted) Specifies the data set and must be the fully qualified data set name." + "\nLimits: 1 to 44 alphanumeric characters" + "\nNote: dataset-name is not required to conform to MVS data set name standards. Embedded blanks and special characters such as slashes, dashes, and underscores are permitted. All alphabetic characters are uppercased.", type: "string", required: false }, { name: "dataset-number", aliases: ["dnum"], description: "(Required if dataset-name is omitted) Specifies the data set to use. The value must be the numeric value that CA 7 already assigned." + "\nLimits: 1 to 8 numeric characters", type: "string", required: false } ] }; //# sourceMappingURL=DeleteDataset.definition.js.map