UNPKG

n8n-nodes-netbox

Version:

n8n community node for NetBox API integration with comprehensive DCIM, IPAM, Virtualization, Circuits, Wireless, and data center management operations

28 lines (27 loc) 775 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.healthCheckFields = exports.healthCheckOperations = void 0; // Health Check Operations exports.healthCheckOperations = { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { domain: ['status'], resource: ['health-check'], }, }, options: [ { name: 'Get Status', value: 'get', description: 'Get NetBox application health status', action: 'Get NetBox health status', }, ], default: 'get', }; // Health Check Fields - No additional fields needed for status check exports.healthCheckFields = [];