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.32 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSwitchPortsDetailsDescription = void 0; /** * Parameters for getSwitchPortsDetails operation */ exports.getSwitchPortsDetailsDescription = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', description: 'Serial number of the switch to get port details for', displayOptions: { show: { operation: ['getSwitchPortsDetails'], resource: ['switch'], domain: ['monitoring'], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { operation: ['getSwitchPortsDetails'], resource: ['switch'], domain: ['monitoring'], }, }, options: [ { displayName: 'Slot', name: 'slot', type: 'string', default: '', description: 'Slot name of the ports to be queried (for chassis type switches only)', }, ], }, ];