n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
39 lines (38 loc) • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.replaceApSettingsDescription = void 0;
/**
* Parameters for replaceApSettings operation
*/
exports.replaceApSettingsDescription = [
{
displayName: 'Serial Number',
name: 'serialNumber',
type: 'string',
required: true,
default: '',
description: 'AP serial number',
displayOptions: {
show: {
operation: ['replaceApSettings'],
resource: ['ap'],
domain: ['configuration'],
},
},
},
{
displayName: 'AP Settings (JSON)',
name: 'apSettings',
type: 'json',
required: true,
default: '{\n "clis": [\n "per-ap-settings APXXXXXXXX",\n " hostname my-ap"\n ]\n}',
description: 'Per-AP settings as JSON',
displayOptions: {
show: {
operation: ['replaceApSettings'],
resource: ['ap'],
domain: ['configuration'],
},
},
},
];