n8n/packages/nodes-base/nodes/Splunk/descriptions/FiredAlertDescription.ts

25 lines
480 B
TypeScript
Raw Normal View History

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',
},
];