UNPKG

n8n-nodes-arubacentral

Version:

n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities

17 lines (16 loc) 490 B
import { getInfo } from './operations/getInfo.methods'; import { postUsage } from './operations/postUsage.methods'; /** * All operations available for the vpn resource */ export declare const vpnOperations: { getInfo: typeof getInfo; postUsage: typeof postUsage; }; /** * Check if a vpn operation exists * * @param operation Operation name to check * @returns boolean indicating if the operation exists */ export declare function hasVpnOperation(operation: string): boolean;