UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

31 lines (27 loc) 710 B
/** * Splunk Node - Version 2 * Discriminator: resource=report, operation=create */ interface Credentials { splunkApi: CredentialReference; } /** Create a search report from a search job */ export type SplunkV2ReportCreateParams = { resource: 'report'; operation: 'create'; /** * Search Job * @default {"mode":"list","value":""} */ searchJobId?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * The name of the report */ name?: string | Expression<string> | PlaceholderValue; }; export type SplunkV2ReportCreateNode = { type: 'n8n-nodes-base.splunk'; version: 2; credentials?: Credentials; config: NodeConfig<SplunkV2ReportCreateParams>; };