/** * Splunk Node - Version 1 * Discriminator: resource=searchJob, operation=getAll */ interface Credentials { splunkApi: CredentialReference; } /** Retrieve many search configurations */ export type SplunkV1SearchJobGetAllParams = { resource: 'searchJob'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Options * @default {} */ options?: { /** Sort Direction * @default asc */ sort_dir?: 'asc' | 'desc' | Expression; /** Key name to use for sorting */ sort_key?: string | Expression | PlaceholderValue; /** Sort Mode * @default auto */ sort_mode?: 'auto' | 'alpha' | 'alpha_case' | 'num' | Expression; }; }; export type SplunkV1SearchJobGetAllNode = { type: 'n8n-nodes-base.splunk'; version: 1; credentials?: Credentials; config: NodeConfig; };