UNPKG

n8n-nodes-arubacentral

Version:

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

71 lines (68 loc) 1.43 kB
import { INodeProperties } from 'n8n-workflow'; /** * Parameters for getNetworks operation */ export const getNetworksDescription: INodeProperties[] = [ { displayName: 'Return All', name: 'returnAll', type: 'boolean', default: false, description: 'Whether to return all results or only up to a given limit', displayOptions: { show: { operation: ['getNetworks'], resource: ['network'], domain: ['monitoring'], }, }, }, { displayName: 'Limit', name: 'limit', type: 'number', default: 50, description: 'Max number of results to return', typeOptions: { minValue: 1, }, displayOptions: { show: { operation: ['getNetworks'], resource: ['network'], domain: ['monitoring'], returnAll: [false], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['network'], domain: ['monitoring'], operation: ['getNetworks'], }, }, options: [ { displayName: 'Calculate_client_count', name: 'calculate_client_count', type: 'boolean', default: false, description: 'Whether to calculate client count per SSID', }, { displayName: 'Sort', name: 'sort', type: 'string', default: '', description: "Sort parameter may be one of +essid, -essid. Default is '+essid'", }, ], }, ];