n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
68 lines (67 loc) • 1.86 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.associateSiteToDevicesDescription = void 0;
/**
* Parameters for associateSiteToDevices operation
*/
exports.associateSiteToDevicesDescription = [
{
displayName: 'Site ID',
name: 'site_id',
type: 'number',
required: true,
default: '',
description: 'ID of the site to associate with multiple devices',
displayOptions: {
show: {
operation: ['associateSiteToDevices'],
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 devices to associate with the site',
displayOptions: {
show: {
operation: ['associateSiteToDevices'],
resource: ['site'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Device IDs',
name: 'device_ids',
type: 'string',
required: true,
default: '',
description: 'Comma-separated list of device IDs/serial numbers to associate with the site (max 5000)',
displayOptions: {
show: {
operation: ['associateSiteToDevices'],
resource: ['site'],
domain: ['monitoring'],
},
},
},
];