n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
27 lines (25 loc) • 553 B
text/typescript
// 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',
},
];