class Mongo::Crypt::RewrapManyDataKeyResult
Represent result of the rewrap many data ke operation.
@api semiprivate
Attributes
bulk_write_result[R]
@returns [ BulkWrite::Result
] the result of the bulk write operation
used to update the key vault collection with rewrapped data keys.
Public Class Methods
new(bulk_write_result)
click to toggle source
@param [ BulkWrite::Result
| nil ] bulk_write_result
The result of the
bulk write operation used to update the key vault collection with rewrapped data keys.
# File lib/mongo/crypt/rewrap_many_data_key_result.rb, line 32 def initialize(bulk_write_result) @bulk_write_result = bulk_write_result end