admin:cluster-get-external-config-encryption-key-id

admin:cluster-get-external-config-encryption-key-id(
   $config as element(configuration)
) as xs:string

Summary

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.

Required Privileges

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

Example


xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin" at "/MarkLogic/admin.xqy";

let $config := admin:get-configuration()
return
  admin:cluster-get-external-config-encryption-key-id($config)

  (: returns the key ID used to encrypt config files when kms-type is external :)
     
Powered by MarkLogic Server | Terms of Use | Privacy Policy