n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
39 lines (38 loc) • 983 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.setApHostnameDescription = void 0;
/**
* Parameters for setApHostname operation
*/
exports.setApHostnameDescription = [
{
displayName: 'Serial Number',
name: 'serialNumber',
type: 'string',
required: true,
default: '',
description: 'AP serial number',
displayOptions: {
show: {
operation: ['setApHostname'],
resource: ['ap'],
domain: ['configuration'],
},
},
},
{
displayName: 'Hostname',
name: 'hostname',
type: 'string',
required: true,
default: '',
description: 'Hostname to set for the AP',
displayOptions: {
show: {
operation: ['setApHostname'],
resource: ['ap'],
domain: ['configuration'],
},
},
},
];