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
44 lines • 1.3 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SshPasswordApi = void 0;
class SshPasswordApi {
constructor() {
this.name = 'sshPasswordApi';
this.displayName = 'SSH Password';
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: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
}
}
exports.SshPasswordApi = SshPasswordApi;
//# sourceMappingURL=SshPassword.credentials.js.map
;