n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
23 lines (22 loc) • 981 B
TypeScript
import { getRogueApList } from './operations/getRogueApList.methods';
import { getInterferingApList } from './operations/getInterferingApList.methods';
import { getSuspectApList } from './operations/getSuspectApList.methods';
import { getNeighborApList } from './operations/getNeighborApList.methods';
import { getManuallyContainedApList } from './operations/getManuallyContainedApList.methods';
/**
* All operations available for the rogues resource
*/
export declare const roguesOperations: {
getRogueApList: typeof getRogueApList;
getInterferingApList: typeof getInterferingApList;
getSuspectApList: typeof getSuspectApList;
getNeighborApList: typeof getNeighborApList;
getManuallyContainedApList: typeof getManuallyContainedApList;
};
/**
* Check if a rogues operation exists
*
* @param operation Operation name to check
* @returns boolean indicating if the operation exists
*/
export declare function hasRoguesOperation(operation: string): boolean;