mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
600013a1ab
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class QualysApi implements ICredentialType {
|
|
name = 'qualysApi';
|
|
|
|
displayName = 'Qualys API';
|
|
|
|
icon = 'file:icons/Qualys.svg' as const;
|
|
|
|
documentationUrl = 'qualys';
|
|
|
|
httpRequestNode = {
|
|
name: 'Qualys',
|
|
docsUrl: 'https://qualysguard.qg2.apps.qualys.com/qwebhelp/fo_portal/api_doc/index.htm',
|
|
apiBaseUrl: 'https://qualysapi.qualys.com/api/',
|
|
};
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Requested With',
|
|
name: 'requestedWith',
|
|
type: 'string',
|
|
default: 'n8n application',
|
|
description: 'User description, like a user agent',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
'X-Requested-With': '={{$credentials.requestedWith}}',
|
|
},
|
|
auth: {
|
|
username: '={{$credentials.username}}',
|
|
password: '={{$credentials.password}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
// test: ICredentialTestRequest = {
|
|
// request: {
|
|
// baseURL: 'https://qualysapi.qualys.com',
|
|
// url: '/api/2.0/fo/asset/host/?action=list',
|
|
// },
|
|
// };
|
|
}
|