UNPKG

n8n-nodes-arubacentral

Version:

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

23 lines (21 loc) 503 B
import { INodeProperties } from 'n8n-workflow'; /** * Parameters for getCxSwitchNeighborInfo operation */ export const getCxSwitchNeighborInfoDescription: INodeProperties[] = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', description: 'Serial number of the CX switch to get LLDP neighbor info for', displayOptions: { show: { operation: ['getCxSwitchNeighborInfo'], resource: ['switch'], domain: ['monitoring'], }, }, }, ];