n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
24 lines (23 loc) • 898 B
TypeScript
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
* Get a list of Connected wireless clients from Aruba Central
*
* @param this The n8n execution context
* @returns Formatted list of wireless clients
*/
export declare function getWirelessClients(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a list of Connected wired clients from Aruba Central
*
* @param this The n8n execution context
* @returns Formatted list of wired clients
*/
export declare function getWiredClients(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a list of unified clients from Aruba Central
* This is a unified form of the wired and wireless client APIs
*
* @param this The n8n execution context
* @returns Formatted list of unified clients
*/
export declare function getUnifiedClients(this: IExecuteFunctions): Promise<INodeExecutionData[]>;