17 #include <bsoncxx/array/view_or_value.hpp> 18 #include <bsoncxx/document/view_or_value.hpp> 19 #include <bsoncxx/stdx/optional.hpp> 20 #include <mongocxx/stdx.hpp> 21 #include <mongocxx/write_concern.hpp> 23 #include <mongocxx/config/prelude.hpp> 26 MONGOCXX_INLINE_NAMESPACE_BEGIN
49 update& bypass_document_validation(
bool bypass_document_validation);
56 const stdx::optional<bool>& bypass_document_validation()
const;
82 const stdx::optional<bsoncxx::document::view_or_value>& collation()
const;
100 update& upsert(
bool upsert);
107 const stdx::optional<bool>& upsert()
const;
131 const stdx::optional<class write_concern>&
write_concern()
const;
155 const stdx::optional<bsoncxx::array::view_or_value>& array_filters()
const;
158 stdx::optional<bool> _bypass_document_validation;
159 stdx::optional<bsoncxx::document::view_or_value> _collation;
160 stdx::optional<bool> _upsert;
161 stdx::optional<class write_concern> _write_concern;
162 stdx::optional<bsoncxx::array::view_or_value> _array_filters;
164 friend MONGOCXX_API
bool MONGOCXX_CALL operator==(
const update&,
const update&);
165 friend MONGOCXX_API
bool MONGOCXX_CALL operator!=(
const update&,
const update&);
169 MONGOCXX_INLINE_NAMESPACE_END
172 #include <mongocxx/config/postlude.hpp> Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
Class representing the optional arguments to a MongoDB update operation.
Definition: update.hpp:32
Class representing the server-side requirement for reporting the success of a write operation...
Definition: write_concern.hpp:55