mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Add Rapid7 InsightVm credentials (#11462)
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
import type {
|
||||
IAuthenticateGeneric,
|
||||
ICredentialTestRequest,
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class Rapid7InsightVmApi implements ICredentialType {
|
||||
name = 'rapid7InsightVmApi';
|
||||
|
||||
displayName = 'Rapid7 InsightVm API';
|
||||
|
||||
documentationUrl = 'Rapid7 InsightVm';
|
||||
|
||||
icon = {
|
||||
light: 'file:icons/Rapid7InsightVm.svg',
|
||||
dark: 'file:icons/Rapid7InsightVm.svg',
|
||||
} as const;
|
||||
|
||||
httpRequestNode = {
|
||||
name: 'Rapid7 Insight Vm',
|
||||
docsUrl: 'https://docs.rapid7.com/',
|
||||
apiBaseUrlPlaceholder: 'https://insight.rapid7.com/',
|
||||
};
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'url',
|
||||
required: true,
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
required: true,
|
||||
type: 'string',
|
||||
typeOptions: { password: true },
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
|
||||
authenticate: IAuthenticateGeneric = {
|
||||
type: 'generic',
|
||||
properties: {
|
||||
headers: {
|
||||
'x-api-key': '={{$credentials.apiKey}}',
|
||||
Accept: 'application/json',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
test: ICredentialTestRequest = {
|
||||
request: {
|
||||
baseURL: '={{$credentials.url}}'.replace(/\/$/, ''),
|
||||
url: '/validate',
|
||||
method: 'GET',
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user