n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
32 lines (30 loc) • 753 B
text/typescript
// keymanagement.methods.ts
import { getHealth } from './operations/getHealth.methods';
import { getKeyCache } from './operations/getKeyCache.methods';
import { getRoamCache } from './operations/getRoamCache.methods';
import { getSyncedApList } from './operations/getSyncedApList.methods';
import { getKeyHash } from './operations/getKeyHash.methods';
import { getClientRoamHistory } from './operations/getClientRoamHistory.methods';
/**
* Operations available in the keymanagement domain
*/
export const keymanagementOperations = {
health: {
getHealth,
},
keycache: {
getKeyCache,
},
roamcache: {
getRoamCache,
},
syncedaplist: {
getSyncedApList,
},
keyhash: {
getKeyHash,
},
clientroamhistory: {
getClientRoamHistory,
},
};