UNPKG

n8n-nodes-arubacentral

Version:

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

24 lines (22 loc) 461 B
// getInfo.descriptions.ts import { INodeProperties } from 'n8n-workflow'; /** * Parameters for getInfo operation */ export const getInfoDescription: INodeProperties[] = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['gateway'], domain: ['monitoring'], operation: ['getInfo'], }, }, description: 'Serial number of gateway to be queried', }, ];