n8n/packages/nodes-base/credentials/ImpervaWafApi.credentials.ts
2023-08-09 15:16:11 +02:00

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