UNPKG

n8n-nodes-sshv2

Version:

2 N8N ( Node & AI Agent Tool) for SSH operations Dynamically Configurable parameters NO credentials, including command execution, file uploads, and downloads by Hadidiz, HadidizFlow

53 lines 1.67 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SshPrivateKeyApi = void 0; class SshPrivateKeyApi { constructor() { this.name = 'sshPrivateKeyApi'; this.displayName = 'SSH Private Key'; this.documentationUrl = 'https://docs.n8n.io/integrations/builtin/credentials/ssh/'; this.properties = [ { displayName: 'Host', name: 'host', required: true, type: 'string', default: '', placeholder: 'localhost', }, { displayName: 'Port', name: 'port', required: true, type: 'number', default: 22, }, { displayName: 'Username', name: 'username', type: 'string', default: '', }, { displayName: 'Private Key', name: 'privateKey', type: 'string', typeOptions: { rows: 4, password: true, }, default: '', }, { displayName: 'Passphrase', name: 'passphrase', type: 'string', default: '', description: 'Passphase used to create the key, if no passphase was used leave empty', typeOptions: { password: true }, }, ]; } } exports.SshPrivateKeyApi = SshPrivateKeyApi; //# sourceMappingURL=SshPrivateKey.credentials.js.map