n8n-nodes-customssh
Version:
n8n community node for advanced SSH connections with configurable ciphers and network device support
29 lines (28 loc) • 799 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SshPasswordCredential = void 0;
class SshPasswordCredential {
constructor() {
this.name = 'sshPassword';
this.displayName = 'SSH Password';
this.documentationUrl = '';
this.properties = [
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
}
}
exports.SshPasswordCredential = SshPasswordCredential;