n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
19 lines (18 loc) • 699 B
TypeScript
import { getInfrastructureAttacks } from './operations/getInfrastructureAttacks.methods';
import { getClientAttacks } from './operations/getClientAttacks.methods';
import { getWidsEvents } from './operations/getWidsEvents.methods';
/**
* All operations available for the wids resource
*/
export declare const widsOperations: {
getInfrastructureAttacks: typeof getInfrastructureAttacks;
getClientAttacks: typeof getClientAttacks;
getWidsEvents: typeof getWidsEvents;
};
/**
* Check if a wids operation exists
*
* @param operation Operation name to check
* @returns boolean indicating if the operation exists
*/
export declare function hasWidsOperation(operation: string): boolean;