sec.credentialSetName( credential-name as String, new-name as String ) as null
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. |
http://marklogic.com/xdmp/privileges/credential-set-name
This function must be executed against the security database.
declareUpdate(); const sec = require('/MarkLogic/security.xqy'); sec.credentialSetName("my-secure-credential", "my-new-secure-credential");