import { INodeProperties } from 'n8n-workflow';

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