UNPKG

n8n-nodes-arubacentral

Version:

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

39 lines (38 loc) 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getTopnDescription = void 0; /** * Parameters for getTopn operation */ exports.getTopnDescription = [ { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['swarm'], domain: ['monitoring'], operation: ['getTopn'], }, }, options: [ { displayName: 'Count', name: 'count', type: 'number', default: 0, description: 'Required top N Swarm count. Default is 5 and maximum is 100', }, { displayName: 'Sort', name: 'sort', type: 'string', default: '', description: "Required sort 'by_peak' or 'by_avg'. Default is 'by_avg'", }, ], }, ];