
admin.foreignClusterGetXdqpSslAllowTls( config as element(configuration), cluster-id as (Number|String) ) as Boolean
This function returns true if the TLS protocol is enabled for the foreign cluster.
Otherwise, false is returned.
| 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');
var cfg = admin.getConfiguration()
var fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA")
admin.foreignClusterGetXdqpSslAllowTls(cfg, fcl)
//Returns 'true' if the TLS protocol is enabled for the foreign cluster.
//Otherwise, 'false'.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.