mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class Sftp implements ICredentialType {
|
|
name = 'sftp';
|
|
displayName = 'SFTP';
|
|
documentationUrl = 'ftp';
|
|
properties = [
|
|
{
|
|
displayName: 'Host',
|
|
name: 'host',
|
|
required: true,
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Port',
|
|
name: 'port',
|
|
required: true,
|
|
type: 'number' as NodePropertyTypes,
|
|
default: 22,
|
|
},
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
required: true,
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string' as NodePropertyTypes,
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Private Key',
|
|
name: 'privateKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
default: '',
|
|
description: 'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format).',
|
|
},
|
|
{
|
|
displayName: 'Passphrase',
|
|
name: 'passphrase',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
description: 'For an encrypted private key, this is the passphrase used to decrypt it.',
|
|
},
|
|
];
|
|
}
|