n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 714 B
text/typescript
/**
* Venafi TLS Protect Datacenter Node - Version 1
* Discriminator: resource=certificate, operation=delete
*/
interface Credentials {
venafiTlsProtectDatacenterApi: CredentialReference;
}
/** Delete a certificate */
export type VenafiTlsProtectDatacenterV1CertificateDeleteParams = {
resource: 'certificate';
operation: 'delete';
/**
* A GUID that uniquely identifies the certificate
*/
certificateId?: string | Expression<string> | PlaceholderValue;
};
export type VenafiTlsProtectDatacenterV1CertificateDeleteNode = {
type: 'n8n-nodes-base.venafiTlsProtectDatacenter';
version: 1;
credentials?: Credentials;
config: NodeConfig<VenafiTlsProtectDatacenterV1CertificateDeleteParams>;
};