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:
Ricardo Espinoza
2022-10-07 09:48:45 -04:00
committed by GitHub
parent 7abc7e6408
commit d36e920997
11 changed files with 1646 additions and 0 deletions

View File

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