n8n-nodes-base
Version:
Base nodes of n8n
42 lines (38 loc) • 989 B
text/typescript
/**
* Venafi TLS Protect Cloud Node - Version 1
* Discriminator: resource=certificate, operation=getMany
*/
interface Credentials {
venafiTlsProtectCloudApi: CredentialReference;
}
/** Retrieve many certificates */
export type VenafiTlsProtectCloudV1CertificateGetManyParams = {
resource: 'certificate';
operation: 'getMany';
/**
* Whether to return all results or only up to a given limit
* @default false
*/
returnAll?: boolean | Expression<boolean>;
/**
* Max number of results to return
* @displayOptions.show { returnAll: [false] }
* @default 50
*/
limit?: number | Expression<number>;
/**
* Filters
* @default {}
*/
filters?: {
/** Subject
*/
subject?: string | Expression<string> | PlaceholderValue;
};
};
export type VenafiTlsProtectCloudV1CertificateGetManyNode = {
type: 'n8n-nodes-base.venafiTlsProtectCloud';
version: 1;
credentials?: Credentials;
config: NodeConfig<VenafiTlsProtectCloudV1CertificateGetManyParams>;
};