mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
40 lines
766 B
TypeScript
40 lines
766 B
TypeScript
import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class ImpervaWafApi implements ICredentialType {
|
|
name = 'impervaWafApi';
|
|
|
|
displayName = 'Imperva WAF API';
|
|
|
|
documentationUrl = 'impervawaf';
|
|
|
|
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}}',
|
|
},
|
|
},
|
|
};
|
|
}
|