import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for getInfo operation
 */
export const getInfoDescription: INodeProperties[] = [
	{
		displayName: 'Serial',
		name: 'serial',
		type: 'string',
		required: true,
		default: '',
		displayOptions: {
			show: {
				resource: ['mobilitycontroller'],
				domain: ['monitoring'],
				operation: ['getInfo'],
			},
		},
		description: 'Serial number of mobility controller to be queried',
	},
];
