UNPKG

n8n-nodes-arubacentral

Version:

n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities

27 lines (25 loc) 559 B
// 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', }, ];