admin.foreignHostGetId( fh as element(cl.foreignHost) ) as (Number|String)
This function returns the id of the foreign bootstrap host.
Parameters | |
---|---|
fh |
The foreign host configuration element returned by the admin:foreign-host
or admin:foreign-cluster-get-bootstrap-hosts function.
|
const admin = require('/MarkLogic/admin.xqy'); var cfg = admin.getConfiguration() var fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA") var fh = admin.foreignClusterGetBootstrapHosts(cfg, fcl) admin.foreignHostGetId(fh) //Returns the id of the foreign bootstrap host.