UNPKG

n8n-nodes-arubacentralnextgen

Version:

n8n community node for Aruba Central NextGen API integration with modern monitoring and management capabilities

162 lines (161 loc) 6.13 kB
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; /** * List all gateways */ export declare function listGateways(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway details */ export declare function getGatewayDetails(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster leader details */ export declare function getClusterLeaderDetails(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster VLAN mismatch summary */ export declare function getClusterVlanMismatchSummary(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster connectivity graph */ export declare function getClusterConnectivityGraph(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway VLAN detail */ export declare function getGatewayVlanDetail(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List cluster members */ export declare function listClusterMembers(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway tunnel detail */ export declare function getGatewayTunnelDetail(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway wired interfaces */ export declare function listGatewayWiredInterfaces(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List cluster tunnels */ export declare function listClusterTunnels(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway VLANs */ export declare function listGatewayVlans(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway LAN tunnels */ export declare function listGatewayLanTunnels(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway WAN interfaces */ export declare function listGatewayWanInterfaces(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway CPU utilization trend */ export declare function getGatewayCpuUtilizationTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway memory utilization trend */ export declare function getGatewayMemoryUtilizationTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway LAN tunnel throughput trend */ export declare function getGatewayLanTunnelThroughputTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway LAN tunnel status trend */ export declare function getGatewayLanTunnelStatusTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster capacity trend */ export declare function getClusterCapacityTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster member capacity trend */ export declare function getClusterMemberCapacityTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway interface throughput trend */ export declare function getGatewayInterfaceThroughputTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster tunnel health summary */ export declare function getClusterTunnelHealthSummary(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get cluster tunnel status summary */ export declare function getClusterTunnelStatusSummary(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway tunnel health summary */ export declare function getGatewayTunnelHealthSummary(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway WAN availability trend */ export declare function getGatewayWanAvailabilityTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway VPN availability trend */ export declare function getGatewayVpnAvailabilityTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway port frames trend */ export declare function getGatewayPortFramesTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway port frames errors trend */ export declare function getGatewayPortFramesErrorsTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway port frames packets trend */ export declare function getGatewayPortFramesPacketsTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway tunnel dropped packets trend */ export declare function getGatewayTunnelDroppedPacketsTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway WAN tunnels */ export declare function listGatewayWanTunnels(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway WAN tunnel detail */ export declare function getGatewayWanTunnelDetail(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway WAN tunnel health summary */ export declare function getGatewayWanTunnelHealthSummary(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway uplink details */ export declare function getGatewayUplinkDetails(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway uplink throughput trend */ export declare function getGatewayUplinkThroughputTrend(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway WAN compression trends */ export declare function getGatewayWanCompressionTrends(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway uplink probes */ export declare function listGatewayUplinkProbes(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * List gateway uplink performance trends */ export declare function listGatewayUplinkPerformanceTrends(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway uplink modem stats */ export declare function getGatewayUplinkModemStats(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway uplink WAN availability trends */ export declare function getGatewayUplinkWanAvailabilityTrends(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get gateway uplink VPN availability trends */ export declare function getGatewayUplinkVpnAvailabilityTrends(this: IExecuteFunctions): Promise<INodeExecutionData[]>;