n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
30 lines (29 loc) • 1.25 kB
TypeScript
import { getWirelessClients, getWiredClients, getUnifiedClients } from './operations/getClients.methods';
import { getDetail } from './operations/getDetail.methods';
import { getWirelessClientDetails, getWiredClientDetails } from './operations/getClient.methods';
import { getMobility } from './operations/getMobility.methods';
import { getUsage } from './operations/getUsage.methods';
import { getTopn } from './operations/getTopn.methods';
import { getCount } from './operations/getCount.methods';
/**
* All operations available for the client resource
*/
export declare const clientOperations: {
getWirelessClients: typeof getWirelessClients;
getWiredClients: typeof getWiredClients;
getUnifiedClients: typeof getUnifiedClients;
getDetail: typeof getDetail;
getWirelessClientDetails: typeof getWirelessClientDetails;
getWiredClientDetails: typeof getWiredClientDetails;
getMobility: typeof getMobility;
getUsage: typeof getUsage;
getTopn: typeof getTopn;
getCount: typeof getCount;
};
/**
* Check if a client operation exists
*
* @param operation Operation name to check
* @returns boolean indicating if the operation exists
*/
export declare function hasClientOperation(operation: string): boolean;