n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
46 lines (45 loc) • 1.3 kB
JavaScript
;
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: ['client'],
domain: ['monitoring'],
operation: ['getTopn'],
},
},
options: [
{
displayName: 'Cluster_id',
name: 'cluster_id',
type: 'string',
default: '',
description: 'Filter by Mobility Controller serial number',
},
{
displayName: 'Stack_id',
name: 'stack_id',
type: 'string',
default: '',
description: 'Filter by Switch stack_id',
},
{
displayName: 'Count',
name: 'count',
type: 'number',
default: 0,
description: 'Required top N clients count. Default is 5 and maximum is 100',
},
],
},
];