UNPKG

n8n-nodes-arubacentral

Version:

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

47 lines (46 loc) 1.27 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSerialDescription = void 0; /** * Parameters for getSerial operation */ exports.getSerialDescription = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['mobilitycontroller'], domain: ['monitoring'], operation: ['getSerial'], }, }, description: 'Serial Number of Mobility Controller to be queried', }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['mobilitycontroller'], domain: ['monitoring'], operation: ['getSerial'], }, }, options: [ { displayName: 'Stats_metric', name: 'stats_metric', type: 'boolean', default: false, description: 'If set, gets the uplinks and tunnels count', }, ], }, ];