n8n/packages/nodes-base/credentials/Sftp.credentials.ts

63 lines
1.3 KiB
TypeScript
Raw Normal View History

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.',
},
];
}