n8n-nodes-base
Version:
Base nodes of n8n
35 lines (31 loc) • 997 B
text/typescript
/**
* 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<string> | 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<string> | PlaceholderValue;
};
};
export type VenafiTlsProtectDatacenterV1PolicyGetNode = {
type: 'n8n-nodes-base.venafiTlsProtectDatacenter';
version: 1;
credentials?: Credentials;
config: NodeConfig<VenafiTlsProtectDatacenterV1PolicyGetParams>;
};