n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
68 lines (67 loc) • 1.9 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.moveDevicesToGroupDescription = void 0;
/**
* Parameters for moveDevicesToGroup operation
*/
exports.moveDevicesToGroupDescription = [
{
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',
},
],
},
];