mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
38 lines
731 B
TypeScript
38 lines
731 B
TypeScript
|
import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export class ImpervaWafApi implements ICredentialType {
|
||
|
name = 'impervaWafApi';
|
||
|
|
||
|
displayName = 'Imperva WAF API';
|
||
|
|
||
|
icon = 'file:icons/Imperva.svg';
|
||
|
|
||
|
properties: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'API ID',
|
||
|
name: 'apiID',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
required: true,
|
||
|
},
|
||
|
{
|
||
|
displayName: 'API Key',
|
||
|
name: 'apiKey',
|
||
|
type: 'string',
|
||
|
typeOptions: { password: true },
|
||
|
default: '',
|
||
|
required: true,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
authenticate: IAuthenticateGeneric = {
|
||
|
type: 'generic',
|
||
|
properties: {
|
||
|
headers: {
|
||
|
'x-API-Id': '={{$credentials.apiID}}',
|
||
|
'x-API-Key': '={{$credentials.apiKey}}',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
}
|