admin.clusterGetInternalConfigEncryptionKeyId

admin.clusterGetInternalConfigEncryptionKeyId(
   config as element(configuration)
) as String

Summary

This function returns the encryption key ID in the internal KMS to use for encryption of configuration files.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.

Required Privileges

http://marklogic.com/xdmp/privileges/admin/cluster

Example


const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration();

admin.clusterGetInternalConfigEncryptionKeyId(config);

// Returns the key ID used to encrypt config files when kms-type is internal.
     
   
Powered by MarkLogic Server | Terms of Use | Privacy Policy