n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
10 lines (9 loc) • 347 B
TypeScript
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
* Retrieves a list of swarms with their firmware details
* GET /firmware/v1/swarms
*
* @param this The n8n execution context
* @returns List of swarms with firmware details
*/
export declare function getSwarms(this: IExecuteFunctions): Promise<INodeExecutionData[]>;