UNPKG

n8n-nodes-arubacentral

Version:

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

64 lines (62 loc) 1.17 kB
import { INodeProperties } from 'n8n-workflow'; /** * Parameters for getSiteDetails operation */ export const getSiteDetailsDescription: INodeProperties[] = [ { displayName: 'Lookup By', name: 'lookupBy', type: 'options', options: [ { name: 'Site ID', value: 'id', }, { name: 'Site Name', value: 'name', }, ], default: 'id', description: 'How to identify the site', displayOptions: { show: { operation: ['getSiteDetails'], resource: ['site'], domain: ['monitoring'], }, }, }, { displayName: 'Site ID', name: 'site_id', type: 'number', required: true, default: '', description: 'ID of the site to get details for', displayOptions: { show: { operation: ['getSiteDetails'], resource: ['site'], domain: ['monitoring'], lookupBy: ['id'], }, }, }, { displayName: 'Site Name', name: 'site_name', type: 'string', required: true, default: '', description: 'Name of the site to get details for', displayOptions: { show: { operation: ['getSiteDetails'], resource: ['site'], domain: ['monitoring'], lookupBy: ['name'], }, }, }, ];