import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for getClientMatchInfo operation
 */
export const getClientMatchInfoDescription: INodeProperties[] = [
	{
		displayName: 'Serial',
		name: 'serial',
		type: 'string',
		required: true,
		default: '',
		displayOptions: {
			show: {
				resource: ['ap'],
				domain: ['monitoring'],
				operation: ['getClientMatchInfo'],
			},
		},
		description:
			'Serial Number of AP to get client match information for. Note: This is an undocumented API that may not be available on all clusters or APs.',
	},
];
