n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
38 lines (36 loc) • 781 B
text/typescript
import { INodeProperties } from 'n8n-workflow';
/**
* Parameters for getCxSwitchPortPoeInfo operation
*/
export const getCxSwitchPortPoeInfoDescription: INodeProperties[] = [
{
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'],
},
},
},
];