MongoDB C++ Driver  mongocxx-3.1.1
modify_collection.hpp
1 // Copyright 2015 MongoDB Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <chrono>
18 
19 #include <bsoncxx/document/value.hpp>
20 #include <bsoncxx/stdx/optional.hpp>
21 #include <mongocxx/stdx.hpp>
22 #include <mongocxx/validation_criteria.hpp>
23 
24 #include <mongocxx/config/prelude.hpp>
25 
26 namespace mongocxx {
27 MONGOCXX_INLINE_NAMESPACE_BEGIN
28 namespace options {
29 
37 class MONGOCXX_API modify_collection {
38  public:
48  std::chrono::seconds seconds);
49 
58  modify_collection& no_padding(bool no_padding);
59 
69 
76  bsoncxx::document::value to_document() const;
77 
78  private:
79  stdx::optional<bsoncxx::document::view_or_value> _index;
80  stdx::optional<bool> _no_padding;
81  stdx::optional<class validation_criteria> _validation;
82 };
83 
84 } // namespace options
85 MONGOCXX_INLINE_NAMESPACE_END
86 } // namespace mongocxx
87 
88 #include <mongocxx/config/postlude.hpp>
Class representing criteria for document validation, to be applied to a collection.
Definition: validation_criteria.hpp:31
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:22
A read-only BSON document that owns its underlying buffer.
Definition: value.hpp:33
Class representing the optional arguments to a MongoDB collMod command.
Definition: modify_collection.hpp:37
Class representing the optional arguments to a MongoDB create index operation.
Definition: index.hpp:39