UNPKG

n8n-nodes-arubacentral

Version:

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

68 lines (67 loc) 1.81 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.associateSiteToDeviceDescription = void 0; /** * Parameters for associateSiteToDevice operation */ exports.associateSiteToDeviceDescription = [ { displayName: 'Site ID', name: 'site_id', type: 'number', required: true, default: '', description: 'ID of the site to associate with the device', displayOptions: { show: { operation: ['associateSiteToDevice'], resource: ['site'], domain: ['monitoring'], }, }, }, { displayName: 'Device Type', name: 'device_type', type: 'options', options: [ { name: 'Access Point', value: 'IAP', }, { name: 'Switch', value: 'SWITCH', }, { name: 'Controller', value: 'CONTROLLER', }, ], required: true, default: 'IAP', description: 'Type of device to associate with the site', displayOptions: { show: { operation: ['associateSiteToDevice'], resource: ['site'], domain: ['monitoring'], }, }, }, { displayName: 'Device ID', name: 'device_id', type: 'string', required: true, default: '', description: 'ID/Serial number of the device to associate with the site', displayOptions: { show: { operation: ['associateSiteToDevice'], resource: ['site'], domain: ['monitoring'], }, }, }, ];