n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
65 lines (64 loc) • 2.34 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.keymanagementDescriptions = void 0;
const getHealth_descriptions_1 = require("./operations/getHealth.descriptions");
const getKeyCache_descriptions_1 = require("./operations/getKeyCache.descriptions");
const getRoamCache_descriptions_1 = require("./operations/getRoamCache.descriptions");
const getSyncedApList_descriptions_1 = require("./operations/getSyncedApList.descriptions");
const getKeyHash_descriptions_1 = require("./operations/getKeyHash.descriptions");
const getClientRoamHistory_descriptions_1 = require("./operations/getClientRoamHistory.descriptions");
const keymanagementResource = {
displayName: 'Resource',
name: 'resource',
type: 'options',
noDataExpression: true,
options: [
{
name: 'Health',
value: 'health',
description: 'Key Management Service health check',
},
{
name: 'Key Cache',
value: 'keycache',
description: 'PMK key cache records for clients',
},
{
name: 'Roam Cache',
value: 'roamcache',
description: 'Client roam cache records',
},
{
name: 'Synced AP List',
value: 'syncedaplist',
description: 'Access Points with synchronized keys',
},
{
name: 'Key Hash',
value: 'keyhash',
description: 'Encryption key hash verification',
},
{
name: 'Client Roam History',
value: 'clientroamhistory',
description: 'Historical roaming data for clients',
},
],
displayOptions: {
show: {
domain: ['keymanagement'],
},
},
default: 'health',
required: true,
description: 'Key Management resource to interact with',
};
exports.keymanagementDescriptions = [
keymanagementResource,
...getHealth_descriptions_1.getHealthDescription,
...getKeyCache_descriptions_1.getKeyCacheDescription,
...getRoamCache_descriptions_1.getRoamCacheDescription,
...getSyncedApList_descriptions_1.getSyncedApListDescription,
...getKeyHash_descriptions_1.getKeyHashDescription,
...getClientRoamHistory_descriptions_1.getClientRoamHistoryDescription,
];