admin.foreignClusterGetSslCertificate( config as element(configuration), cluster-id as (Number|String) ) as String
This function returns the SSL certificate used to communicate with hosts in the foreign cluster.
Parameters | |
---|---|
config | A configuration specification, typically as returned from one of the Admin module functions. |
cluster-id | The ID of the foreign cluster. |
const admin = require('/MarkLogic/admin.xqy'); const cfg = admin.getConfiguration() const fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA") admin.foreignClusterGetSslCertificate(cfg, fcl) //Returns the SSL certificate used to communicate with the foreign cluster.