import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for the getSwarm operation
 */
export const getSwarmDescription: INodeProperties[] = [
	{
		displayName: 'Swarm ID',
		name: 'swarmId',
		type: 'string',
		required: true,
		default: '',
		description: 'The ID of the swarm to retrieve',
		displayOptions: {
			show: {
				operation: ['getSwarm'],
				resource: ['swarm'],
				domain: ['firmware'],
			},
		},
	},
];
