UNPKG

n8n-nodes-arubacentral

Version:

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

87 lines (85 loc) 1.72 kB
import { INodeProperties } from 'n8n-workflow'; /** * Parameters for listSites operation */ export const listSitesDescription: 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: ['listSites'], resource: ['site'], domain: ['monitoring'], }, }, }, { displayName: 'Limit', name: 'limit', type: 'number', default: 50, description: 'Max number of results to return', typeOptions: { minValue: 1, }, displayOptions: { show: { operation: ['listSites'], resource: ['site'], domain: ['monitoring'], returnAll: [false], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { operation: ['listSites'], resource: ['site'], domain: ['monitoring'], }, }, options: [ { displayName: 'Calculate Total', name: 'calculate_total', type: 'boolean', default: false, description: 'Whether to calculate total number of sites', }, { displayName: 'Site Name', name: 'site_name', type: 'string', default: '', description: 'Filter by site name (exact match)', }, { displayName: 'Sort', name: 'sort', type: 'options', options: [ { name: 'Site Name (Ascending)', value: '+site_name', }, { name: 'Site Name (Descending)', value: '-site_name', }, ], default: '+site_name', description: 'Order in which to sort the results', }, ], }, ];