n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
49 lines (48 loc) • 1.42 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getClientDescription = exports.getWiredClientDetailsDescription = exports.getWirelessClientDetailsDescription = void 0;
/**
* UI parameters for the getWirelessClientDetails operation
*/
exports.getWirelessClientDetailsDescription = [
{
displayName: 'MAC Address',
name: 'macaddr',
type: 'string',
displayOptions: {
show: {
resource: ['client'],
domain: ['monitoring'],
operation: ['getWirelessClientDetails'],
},
},
default: '',
required: true,
description: 'MAC address of the wireless client',
},
];
/**
* UI parameters for the getWiredClientDetails operation
*/
exports.getWiredClientDetailsDescription = [
{
displayName: 'MAC Address',
name: 'macaddr',
type: 'string',
displayOptions: {
show: {
resource: ['client'],
domain: ['monitoring'],
operation: ['getWiredClientDetails'],
},
},
default: '',
required: true,
description: 'MAC address of the wired client',
},
];
// Combine all client descriptions
exports.getClientDescription = [
...exports.getWirelessClientDetailsDescription,
...exports.getWiredClientDetailsDescription,
];