
admin.clusterGetExternalConfigEncryptionKeyId( config as element(configuration) ) as String
This function returns the encryption key ID in the external KMS to use for encryption of configuration files.
| Parameters | |
|---|---|
| config | A configuration specification, typically as returned from one of the Admin module functions. |
http://marklogic.com/xdmp/privileges/admin/cluster
const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration();
admin.clusterGetExternalConfigEncryptionKeyId(config);
// Returns the key ID used to encrypt config files when kms-type is external.