// getKeyHash.descriptions.ts
import { INodeProperties } from 'n8n-workflow';

export const getKeyHashDescription: INodeProperties[] = [
	{
		displayName: 'Operation',
		name: 'operation',
		type: 'options',
		noDataExpression: true,
		displayOptions: {
			show: {
				domain: ['keymanagement'],
				resource: ['keyhash'],
			},
		},
		options: [
			{
				name: 'Get Key Hash',
				value: 'getKeyHash',
				description: 'Retrieve the encryption key hash from the cloud for verification',
				action: 'Get key hash',
			},
		],
		default: 'getKeyHash',
	},
];
