Loading TOC...

admin:host-need-renew-xdqp-certificate

admin:host-need-renew-xdqp-certificate(
   $config as element(configuration),
   $duration as xs:duration?
) as xs:unsignedLong*

Summary

This function returns a list of hostid where the xdqp host certificate will expire within the specified duration

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
duration The duration that the xdqp host certificate will expire. The default is 3 months.

Example


xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
       at "/MarkLogic/admin.xqy";

let $config := admin:get-configuration()
return
  admin:host-need-renew-xdqp-certificate($config, xs:yearMonthDuration("P3M"))
     

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