mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat(Venafi TLS Protect Cloud): add Venafi TLS Protect Cloud (#4253)
* ✨ Venafi TTL Protect Cloud * ⚡ Improvements * ⚡ Add authenticate generic type * ⚡ Add paired items * ⚡ Add codex * ⚡ Update package.json
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
import {
|
||||
IAuthenticateGeneric,
|
||||
ICredentialDataDecryptedObject,
|
||||
ICredentialTestRequest,
|
||||
ICredentialType,
|
||||
IHttpRequestOptions,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class VenafiTlsProtectCloudApi implements ICredentialType {
|
||||
name = 'venafiTlsProtectCloudApi';
|
||||
displayName = 'Venafi TLS Protect Cloud';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
authenticate: IAuthenticateGeneric = {
|
||||
type: 'generic',
|
||||
properties: {
|
||||
headers: {
|
||||
'tppl-api-key': '={{$credentials.apiKey}}',
|
||||
},
|
||||
},
|
||||
};
|
||||
test: ICredentialTestRequest = {
|
||||
request: {
|
||||
baseURL: 'https://api.venafi.cloud',
|
||||
url: '/v1/preferences',
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user