UNPKG

n8n-nodes-arubacentral

Version:

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

68 lines (66 loc) 1.46 kB
// api/configuration/devices/operations/moveDevicesToGroup.descriptions.ts import type { INodeProperties } from 'n8n-workflow'; /** * Parameters for moveDevicesToGroup operation */ export const moveDevicesToGroupDescription: INodeProperties[] = [ { displayName: 'Group', name: 'group', type: 'string', required: true, default: '', description: 'Target group name to move devices to', displayOptions: { show: { operation: ['moveDevicesToGroup'], resource: ['devices'], domain: ['configuration'], }, }, }, { displayName: 'Device Serials', name: 'serials', type: 'string', required: true, default: '', typeOptions: { multipleValues: true, }, description: 'List of device serial numbers to move', displayOptions: { show: { operation: ['moveDevicesToGroup'], resource: ['devices'], domain: ['configuration'], }, }, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['devices'], domain: ['configuration'], operation: ['moveDevicesToGroup'], }, }, options: [ { displayName: 'Preserve Config Overrides', name: 'preserve_config_overrides', type: 'string', default: '', typeOptions: { multipleValues: true, }, description: 'List of configuration parameters to preserve during the move', }, ], }, ];