/** * 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 | PlaceholderValue; }; export type SplunkV2ReportCreateNode = { type: 'n8n-nodes-base.splunk'; version: 2; credentials?: Credentials; config: NodeConfig; };