admin.foreignClusterGetXdqpSslCiphers

admin.foreignClusterGetXdqpSslCiphers(
   config as element(configuration),
   cluster-id as (Number|String)
) as String

Summary

This function returns the SSL ciphers set for the specified 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.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  const cfg = admin.getConfiguration()
  const fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA")
  admin.foreignClusterGetXdqpSslCiphers(cfg, fcl)

   //Returns the ciphers set for the specified foreign cluster.  
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy