UNPKG

n8n-nodes-arubacentral

Version:

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

34 lines (33 loc) 1.2 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.actioncommandDescriptions = exports.actioncommandOperationSelector = void 0; const deduplicate_1 = require("../../../helpers/deduplicate"); const postSwitch_descriptions_1 = require("./operations/postSwitch.descriptions"); /** * Operation selector for the actioncommand resource */ exports.actioncommandOperationSelector = { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { resource: ['actioncommand'], domain: ['troubleshooting'], }, }, options: [ { name: 'Post Switch', value: 'postSwitch', description: 'Action command for enroll est certificate', action: 'Create post switch', }, ], default: 'postSwitch', }; // Combined descriptions for all operations in this resource exports.actioncommandDescriptions = [exports.actioncommandOperationSelector]; // Add each operation's descriptions (0, deduplicate_1.addDescriptions)(exports.actioncommandDescriptions, postSwitch_descriptions_1.postSwitchDescription);