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

export const getHealthDescription: INodeProperties[] = [
	{
		displayName: 'Operation',
		name: 'operation',
		type: 'options',
		noDataExpression: true,
		displayOptions: {
			show: {
				domain: ['keymanagement'],
				resource: ['health'],
			},
		},
		options: [
			{
				name: 'Get Health Status',
				value: 'getHealth',
				description: 'Check the health status of the Key Management Service',
				action: 'Get health status',
			},
		],
		default: 'getHealth',
	},
];
