mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
30 lines
958 B
TypeScript
30 lines
958 B
TypeScript
import type { INodeProperties, IExecuteFunctions, IDataObject } from 'n8n-workflow';
|
|
import { updateDisplayOptions } from '../../../../../utils/utilities';
|
|
import { splunkApiRequest } from '../../transport';
|
|
import { searchJobRLC } from '../../helpers/descriptions';
|
|
|
|
const properties: INodeProperties[] = [searchJobRLC];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['search'],
|
|
operation: ['deleteJob'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(
|
|
this: IExecuteFunctions,
|
|
i: number,
|
|
): Promise<IDataObject | IDataObject[]> {
|
|
// https://docs.splunk.com/Documentation/Splunk/8.2.2/RESTREF/RESTsearch#search.2Fjobs.2F.7Bsearch_id.7D
|
|
|
|
const searchJobId = this.getNodeParameter('searchJobId', i, '', { extractValue: true }) as string;
|
|
const endpoint = `/services/search/jobs/${searchJobId}`;
|
|
|
|
await splunkApiRequest.call(this, 'DELETE', endpoint);
|
|
|
|
return { success: true };
|
|
}
|