UNPKG

n8n-nodes-arubacentral

Version:

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

54 lines (53 loc) 1.55 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.initiateClientSteerDescription = void 0; /** * Parameters for initiateClientSteer operation */ exports.initiateClientSteerDescription = [ { displayName: 'Serial', name: 'serial', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['ap'], domain: ['monitoring'], operation: ['initiateClientSteer'], }, }, description: 'Serial Number of AP to initiate client steering from. Note: This is an undocumented API that may not be available on all clusters or APs.', }, { displayName: 'Client MAC', name: 'client_mac', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['ap'], domain: ['monitoring'], operation: ['initiateClientSteer'], }, }, description: 'MAC address of the client to steer', }, { displayName: 'Target AP', name: 'target_ap', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['ap'], domain: ['monitoring'], operation: ['initiateClientSteer'], }, }, description: 'Serial number of the target AP to steer the client to', }, ];