n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
27 lines (26 loc) • 1.06 kB
TypeScript
import { getMcs } from './operations/getMcs.methods';
import { getSerial } from './operations/getSerial.methods';
import { deleteSerial } from './operations/deleteSerial.methods';
import { getUsage } from './operations/getUsage.methods';
import { getPorts } from './operations/getPorts.methods';
import { getInfo } from './operations/getInfo.methods';
import { getMobility_controllers } from './operations/getMobility_controllers.methods';
/**
* All operations available for the mobilitycontroller resource
*/
export declare const mobilitycontrollerOperations: {
getMcs: typeof getMcs;
getSerial: typeof getSerial;
deleteSerial: typeof deleteSerial;
getUsage: typeof getUsage;
getPorts: typeof getPorts;
getInfo: typeof getInfo;
getMobility_controllers: typeof getMobility_controllers;
};
/**
* Check if a mobilitycontroller operation exists
*
* @param operation Operation name to check
* @returns boolean indicating if the operation exists
*/
export declare function hasMobilitycontrollerOperation(operation: string): boolean;