n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
23 lines (21 loc) • 505 B
text/typescript
import { INodeProperties } from 'n8n-workflow';
/**
* Parameters for getSwitchStackPortDetails operation
*/
export const getSwitchStackPortDetailsDescription: INodeProperties[] = [
{
displayName: 'Stack ID',
name: 'stack_id',
type: 'string',
required: true,
default: '',
description: 'Stack ID of the switch stack to get port details for',
displayOptions: {
show: {
operation: ['getSwitchStackPortDetails'],
resource: ['switch'],
domain: ['monitoring'],
},
},
},
];