n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
30 lines (29 loc) • 934 B
TypeScript
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 declare const keymanagementOperations: {
health: {
getHealth: typeof getHealth;
};
keycache: {
getKeyCache: typeof getKeyCache;
};
roamcache: {
getRoamCache: typeof getRoamCache;
};
syncedaplist: {
getSyncedApList: typeof getSyncedApList;
};
keyhash: {
getKeyHash: typeof getKeyHash;
};
clientroamhistory: {
getClientRoamHistory: typeof getClientRoamHistory;
};
};