n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
39 lines (38 loc) • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCxSwitchPortPoeInfoDescription = void 0;
/**
* Parameters for getCxSwitchPortPoeInfo operation
*/
exports.getCxSwitchPortPoeInfoDescription = [
{
displayName: 'Serial',
name: 'serial',
type: 'string',
required: true,
default: '',
description: 'Serial number of the CX switch to get port PoE info for',
displayOptions: {
show: {
operation: ['getCxSwitchPortPoeInfo'],
resource: ['switch'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Port',
name: 'port',
type: 'string',
required: true,
default: '',
description: 'Switch port to get PoE info for',
displayOptions: {
show: {
operation: ['getCxSwitchPortPoeInfo'],
resource: ['switch'],
domain: ['monitoring'],
},
},
},
];