n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
46 lines (44 loc) • 889 B
text/typescript
import { INodeProperties } from 'n8n-workflow';
/**
* Parameters for getSwitchPoeInfo operation
*/
export const getSwitchPoeInfoDescription: INodeProperties[] = [
{
displayName: 'Serial',
name: 'serial',
type: 'string',
required: true,
default: '',
description: 'Serial number of the switch to get PoE info for',
displayOptions: {
show: {
operation: ['getSwitchPoeInfo'],
resource: ['switch'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
operation: ['getSwitchPoeInfo'],
resource: ['switch'],
domain: ['monitoring'],
},
},
options: [
{
displayName: 'Port',
name: 'port',
type: 'string',
default: '',
description: 'Filter by switch port',
},
],
},
];