UNPKG

n8n-nodes-arubacentral

Version:

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

82 lines (81 loc) 2.38 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSwitchPortsBandwidthUsageDescription = void 0; /** * Parameters for getSwitchPortsBandwidthUsage operation */ exports.getSwitchPortsBandwidthUsageDescription = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', description: 'Serial number of the switch to get port bandwidth usage for', displayOptions: { show: { operation: ['getSwitchPortsBandwidthUsage'], resource: ['switch'], domain: ['monitoring'], }, }, }, { displayName: 'From', name: 'from_timestamp', type: 'dateTime', default: '', description: 'Start time for data retrieval (defaults to current time minus 3 hours)', displayOptions: { show: { operation: ['getSwitchPortsBandwidthUsage'], resource: ['switch'], domain: ['monitoring'], }, }, }, { displayName: 'To', name: 'to_timestamp', type: 'dateTime', default: '', description: 'End time for data retrieval (defaults to current time)', displayOptions: { show: { operation: ['getSwitchPortsBandwidthUsage'], resource: ['switch'], domain: ['monitoring'], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { operation: ['getSwitchPortsBandwidthUsage'], resource: ['switch'], domain: ['monitoring'], }, }, options: [ { displayName: 'Port', name: 'port', type: 'string', default: '', description: 'Filter by port', }, { displayName: 'Show Uplink', name: 'show_uplink', type: 'boolean', default: false, description: 'Show usage for uplink ports only', }, ], }, ];