import { INodeProperties } from 'n8n-workflow';

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