UNPKG

n8n-nodes-arubacentral

Version:

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

23 lines (21 loc) 433 B
import { INodeProperties } from 'n8n-workflow'; /** * Parameters for the getSwarm operation */ export const getSwarmDescription: INodeProperties[] = [ { displayName: 'Swarm ID', name: 'swarmId', type: 'string', required: true, default: '', description: 'The ID of the swarm to retrieve', displayOptions: { show: { operation: ['getSwarm'], resource: ['swarm'], domain: ['firmware'], }, }, }, ];