/** * Venafi TLS Protect Cloud Trigger Node - Version 1 * Starts the workflow when Venafi events occur */ export interface VenafiTlsProtectCloudTriggerV1Params { /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ resource?: string; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ triggerOn?: string[]; } export interface VenafiTlsProtectCloudTriggerV1Credentials { venafiTlsProtectCloudApi: CredentialReference; } interface VenafiTlsProtectCloudTriggerV1NodeBase { type: 'n8n-nodes-base.venafiTlsProtectCloudTrigger'; version: 1; credentials?: VenafiTlsProtectCloudTriggerV1Credentials; isTrigger: true; } export type VenafiTlsProtectCloudTriggerV1ParamsNode = VenafiTlsProtectCloudTriggerV1NodeBase & { config: NodeConfig; }; export type VenafiTlsProtectCloudTriggerV1Node = VenafiTlsProtectCloudTriggerV1ParamsNode;