RewrapManyDataKeyResult — Documentation by YARD 0.9.37 (original) (raw)
Class: Mongo::Crypt::RewrapManyDataKeyResult
Inherits:
Object
- Object
- Mongo::Crypt::RewrapManyDataKeyResult show all
Defined in:
lib/mongo/crypt/rewrap_many_data_key_result.rb
Overview
Represent result of the rewrap many data ke operation.
Instance Attribute Summary collapse
- #bulk_write_result ⇒ Object readonly
Instance Method Summarycollapse
- #initialize(bulk_write_result) ⇒ RewrapManyDataKeyResult constructor
A new instance of RewrapManyDataKeyResult.
Constructor Details
#initialize(bulk_write_result) ⇒ RewrapManyDataKeyResult
Returns a new instance of RewrapManyDataKeyResult.
32 33 34 | # File 'lib/mongo/crypt/rewrap_many_data_key_result.rb', line 32 def initialize(bulk_write_result) @bulk_write_result = bulk_write_result end |
---|
Instance Attribute Details
#bulk_write_result ⇒ Object
27 28 29 | # File 'lib/mongo/crypt/rewrap_many_data_key_result.rb', line 27 def bulk_write_result @bulk_write_result end |
---|