17 #include <bsoncxx/document/view_or_value.hpp> 18 #include <bsoncxx/stdx/optional.hpp> 19 #include <mongocxx/stdx.hpp> 20 #include <mongocxx/write_concern.hpp> 22 #include <mongocxx/config/prelude.hpp> 25 MONGOCXX_INLINE_NAMESPACE_BEGIN
48 update& bypass_document_validation(
bool bypass_document_validation);
55 const stdx::optional<bool>& bypass_document_validation()
const;
81 const stdx::optional<bsoncxx::document::view_or_value>& collation()
const;
99 update& upsert(
bool upsert);
106 const stdx::optional<bool>& upsert()
const;
130 const stdx::optional<class write_concern>&
write_concern()
const;
133 stdx::optional<bool> _bypass_document_validation;
134 stdx::optional<bsoncxx::document::view_or_value> _collation;
135 stdx::optional<bool> _upsert;
136 stdx::optional<class write_concern> _write_concern;
138 friend MONGOCXX_API
bool MONGOCXX_CALL operator==(
const update&,
const update&);
139 friend MONGOCXX_API
bool MONGOCXX_CALL operator!=(
const update&,
const update&);
143 MONGOCXX_INLINE_NAMESPACE_END
146 #include <mongocxx/config/postlude.hpp> Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:22
Class representing the optional arguments to a MongoDB update operation.
Definition: update.hpp:31
Class representing a view-or-value variant type.
Definition: view_or_value.hpp:30
Class representing the server-side requirement for reporting the success of a write operation...
Definition: write_concern.hpp:55