sec.credentialSetName

sec.credentialSetName(
   credential-name as String,
   new-name as String
) as null

Summary

This function updates the name of a credential.

Parameters
credential-name The name of the credential to update.
new-name The new name with which to update the credential.

Required Privileges

http://marklogic.com/xdmp/privileges/credential-set-name

Usage Notes

This function must be executed against the security database.

Example



    declareUpdate();
    const sec = require('/MarkLogic/security.xqy');

    sec.credentialSetName("my-secure-credential", "my-new-secure-credential");
      
Powered by MarkLogic Server | Terms of Use | Privacy Policy