Loading TOC...

MarkLogic 12 Product Documentation
admin.foreignClusterGetXdqpSslMinAllowTls

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

Summary

This function returns the minimum allow TLS protocol for 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.

Example

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

   //Returns the minimum allow TLS protocol for the foreign cluster.
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.