n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
34 lines (33 loc) • 1.24 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.keymanagementOperations = void 0;
// keymanagement.methods.ts
const getHealth_methods_1 = require("./operations/getHealth.methods");
const getKeyCache_methods_1 = require("./operations/getKeyCache.methods");
const getRoamCache_methods_1 = require("./operations/getRoamCache.methods");
const getSyncedApList_methods_1 = require("./operations/getSyncedApList.methods");
const getKeyHash_methods_1 = require("./operations/getKeyHash.methods");
const getClientRoamHistory_methods_1 = require("./operations/getClientRoamHistory.methods");
/**
* Operations available in the keymanagement domain
*/
exports.keymanagementOperations = {
health: {
getHealth: getHealth_methods_1.getHealth,
},
keycache: {
getKeyCache: getKeyCache_methods_1.getKeyCache,
},
roamcache: {
getRoamCache: getRoamCache_methods_1.getRoamCache,
},
syncedaplist: {
getSyncedApList: getSyncedApList_methods_1.getSyncedApList,
},
keyhash: {
getKeyHash: getKeyHash_methods_1.getKeyHash,
},
clientroamhistory: {
getClientRoamHistory: getClientRoamHistory_methods_1.getClientRoamHistory,
},
};