MongoDB\Driver\ClientEncryption::removeKeyAltName

(mongodb >=1.15.0)

MongoDB\Driver\ClientEncryption::removeKeyAltNameRemoves an alternate name from a key document

说明

finalpublicMongoDB\Driver\ClientEncryption::removeKeyAltName(MongoDB\BSON\Binary$keyId, string$keyAltName): ?object

Removes keyAltName from the set of alternate names for the key document with the given UUID keyId.

参数

keyId

A MongoDB\BSON\Binary instance with subtype 4 (UUID) identifying the key document.

keyAltName

Alternate name to remove from the key document.

返回值

Returns the previous version of the key document, or null if no document matched.

错误/异常

参见

To Top