UNPKG

n8n-nodes-arubacentral

Version:

n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities

33 lines (32 loc) 1.43 kB
import { getAps } from './operations/getAps.methods'; import { getBssids } from './operations/getBssids.methods'; import { getSerial } from './operations/getSerial.methods'; import { deleteSerial } from './operations/deleteSerial.methods'; import { getRf_summary } from './operations/getRf_summary.methods'; import { getBandwidth_usage } from './operations/getBandwidth_usage.methods'; import { getTopn } from './operations/getTopn.methods'; import { getClientMatchSteerHistory } from './operations/getClientMatchSteerHistory.methods'; import { getClientMatchInfo } from './operations/getClientMatchInfo.methods'; import { initiateClientSteer } from './operations/initiateClientSteer.methods'; /** * All operations available for the ap resource */ export declare const apOperations: { getAps: typeof getAps; getBssids: typeof getBssids; getSerial: typeof getSerial; deleteSerial: typeof deleteSerial; getRf_summary: typeof getRf_summary; getBandwidth_usage: typeof getBandwidth_usage; getTopn: typeof getTopn; getClientMatchSteerHistory: typeof getClientMatchSteerHistory; getClientMatchInfo: typeof getClientMatchInfo; initiateClientSteer: typeof initiateClientSteer; }; /** * Check if a ap operation exists * * @param operation Operation name to check * @returns boolean indicating if the operation exists */ export declare function hasApOperation(operation: string): boolean;