@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
62 lines • 2.15 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.ZosTsoProfile = void 0;
const ZosTso_constants_1 = require("./ZosTso.constants");
/**
* Profile configuration for TSO profiles
* @type {ICommandProfileTypeConfiguration}
* @memberof ZosTsoProfile
*/
exports.ZosTsoProfile = {
type: "tso",
schema: {
type: "object",
title: "TSO Profile",
description: "z/OS TSO/E User Profile",
properties: {
account: {
type: "string",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_ACCOUNT_PROFILE,
includeInTemplate: true
},
characterSet: {
type: "string",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_CHAR_SET
},
codePage: {
type: "string",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_CODE_PAGE,
includeInTemplate: true
},
columns: {
type: "number",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_COLUMNS
},
logonProcedure: {
type: "string",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_LOGON_PROCEDURE,
includeInTemplate: true
},
regionSize: {
type: "number",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_REGION_SIZE
},
rows: {
type: "number",
optionDefinition: ZosTso_constants_1.TsoProfileConstants.TSO_OPTION_ROWS
}
},
required: []
}
};
//# sourceMappingURL=ZosTso.profile.js.map