/** * Venafi TLS Protect Datacenter Node - Version 1 * Discriminator: resource=policy, operation=get */ interface Credentials { venafiTlsProtectDatacenterApi: CredentialReference; } /** Retrieve a certificate */ export type VenafiTlsProtectDatacenterV1PolicyGetParams = { resource: 'policy'; operation: 'get'; /** * The Distinguished Name (DN) of the policy folder */ policyDn?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** The PKCS#10 policy Signing Request (CSR). Omit escape characters such as or . If this value is provided, any Subject DN fields and the KeyBitSize in the request are ignored. */ PKCS10?: string | Expression | PlaceholderValue; }; }; export type VenafiTlsProtectDatacenterV1PolicyGetNode = { type: 'n8n-nodes-base.venafiTlsProtectDatacenter'; version: 1; credentials?: Credentials; config: NodeConfig; };