n8n/packages/nodes-base/nodes/Splunk/v1/descriptions/FiredAlertDescription.ts
2024-07-04 16:07:17 +03:00

25 lines
480 B
TypeScript

import type { INodeProperties } from 'n8n-workflow';
export const firedAlertOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['firedAlert'],
},
},
options: [
{
name: 'Get Report',
value: 'getReport',
description: 'Retrieve a fired alerts report',
action: 'Get a fired alerts report',
},
],
default: 'getReport',
},
];