UNPKG

n8n-nodes-arubacentral

Version:

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

101 lines (100 loc) 2.79 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getTunnelsDescription = void 0; /** * Parameters for getTunnels operation */ exports.getTunnelsDescription = [ { displayName: 'Return All', name: 'returnAll', type: 'boolean', default: false, description: 'Whether to return all results or only up to a given limit', displayOptions: { show: { operation: ['getTunnels'], resource: ['gateway'], domain: ['monitoring'], }, }, }, { displayName: 'Limit', name: 'limit', type: 'number', default: 50, description: 'Max number of results to return', typeOptions: { minValue: 1, }, displayOptions: { show: { operation: ['getTunnels'], resource: ['gateway'], domain: ['monitoring'], returnAll: [false], }, }, }, { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['gateway'], domain: ['monitoring'], operation: ['getTunnels'], }, }, description: 'Serial number of gateway to be queried', }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['gateway'], domain: ['monitoring'], operation: ['getTunnels'], }, }, options: [ { displayName: 'Timerange', name: 'timerange', type: 'string', default: '', description: 'Time range for tunnel stats information. 3H = 3 Hours, 1D = 1 Day, 1W = 1 Week, 1M = 1Month, 3M = 3Months.', options: [ { name: '3H', value: '3H', }, { name: '1D', value: '1D', }, { name: '1W', value: '1W', }, { name: '1M', value: '1M', }, { name: '3M', value: '3M', }, ], }, ], }, ];