import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for getSwitchDetails operation
 */
export const getSwitchDetailsDescription: INodeProperties[] = [
	{
		displayName: 'Serial',
		name: 'serial',
		type: 'string',
		required: true,
		default: '',
		description: 'Serial number of the switch to get details for',
		displayOptions: {
			show: {
				operation: ['getSwitchDetails'],
				resource: ['switch'],
				domain: ['monitoring'],
			},
		},
	},
];
