n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
19 lines (18 loc) • 587 B
TypeScript
import { getTopn } from './operations/getTopn.methods';
import { getSwarms } from './operations/getSwarms.methods';
import { getSwarm } from './operations/getSwarm.methods';
/**
* All operations available for the swarm resource
*/
export declare const swarmOperations: {
getTopn: typeof getTopn;
getSwarms: typeof getSwarms;
getSwarm: typeof getSwarm;
};
/**
* Check if a swarm operation exists
*
* @param operation Operation name to check
* @returns boolean indicating if the operation exists
*/
export declare function hasSwarmOperation(operation: string): boolean;