UNPKG

n8n-nodes-arubacentral

Version:

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

22 lines (20 loc) 488 B
// api/inventory/devices/deleteDevice.descriptions.ts import { INodeProperties } from 'n8n-workflow'; export const deleteDeviceDescription: INodeProperties[] = [ { displayName: 'Serial Number', name: 'serial', type: 'string', required: true, default: '', placeholder: 'ABC1234567', description: 'Serial number of the device to delete', displayOptions: { show: { domain: ['inventory'], resource: ['devices'], operation: ['deleteDevice'], }, }, }, ];