import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for getCxSwitchStackNeighborInfo operation
 */
export const getCxSwitchStackNeighborInfoDescription: INodeProperties[] = [
	{
		displayName: 'Stack ID',
		name: 'stack_id',
		type: 'string',
		required: true,
		default: '',
		description: 'Stack ID of the CX switch stack to get LLDP neighbor info for',
		displayOptions: {
			show: {
				operation: ['getCxSwitchStackNeighborInfo'],
				resource: ['switch'],
				domain: ['monitoring'],
			},
		},
	},
];
