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.24 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSwitchPoeInfoDescription = void 0; /** * Parameters for getSwitchPoeInfo operation */ exports.getSwitchPoeInfoDescription = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', description: 'Serial number of the switch to get PoE info for', displayOptions: { show: { operation: ['getSwitchPoeInfo'], resource: ['switch'], domain: ['monitoring'], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { operation: ['getSwitchPoeInfo'], resource: ['switch'], domain: ['monitoring'], }, }, options: [ { displayName: 'Port', name: 'port', type: 'string', default: '', description: 'Filter by switch port', }, ], }, ];