UNPKG

n8n-nodes-arubacentral

Version:

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

54 lines (53 loc) 1.54 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getRf_summaryDescription = void 0; /** * Parameters for getRf_summary operation */ exports.getRf_summaryDescription = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['ap'], domain: ['monitoring'], operation: ['getRf_summary'], }, }, description: 'Serial Number of AP to be queried', }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['ap'], domain: ['monitoring'], operation: ['getRf_summary'], }, }, options: [ { displayName: 'Band', name: 'band', type: 'string', default: '', description: 'Filter by band (2.4, 5 or 6). Valid only when serial parameter is specified.', }, { displayName: 'Radio_number', name: 'radio_number', type: 'number', default: 0, description: 'Filter by radio_number (0, 1 or 2). Valid only when serial parameter is specified.', }, ], }, ];