@zowe/zos-uss-for-zowe-sdk
Version:
Zowe SDK to interact with USS on z/OS
40 lines • 1.19 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.ZosUssMessages = void 0;
/**
* Messages to be used as command responses for different scenarios
* @type {object.<string, IMessageDefinition>}
* @memberof ZosUssMessages
*/
exports.ZosUssMessages = {
/**
* Message indicating that the data set type is unsupported
* @type {IMessageDefinition}
*/
allAuthMethodsFailed: {
message: "All configured authentication methods failed"
},
connectionRefused: {
message: "Connection was refused"
},
handshakeTimeout: {
message: "Timed out while waiting for handshake"
},
unexpected: {
message: "Connection failed because of an unexpected error"
},
expiredPassword: {
message: "Your password has expired"
}
};
//# sourceMappingURL=ZosUss.messages.js.map