MongoDB C++ Driver  mongocxx-3.0.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 
33 class MONGOCXX_API modify_collection {
34  public:
43  void index(bsoncxx::document::view_or_value index_spec, std::chrono::seconds seconds);
44 
53  void no_padding(bool no_padding);
54 
63  void validation_criteria(class validation_criteria validation);
64 
71  bsoncxx::document::value to_document() const;
72 
73  private:
74  stdx::optional<bsoncxx::document::view_or_value> _index;
75  stdx::optional<bool> _no_padding;
76  stdx::optional<class validation_criteria> _validation;
77 };
78 
79 } // namespace options
80 MONGOCXX_INLINE_NAMESPACE_END
81 } // namespace mongocxx
82 
83 #include <mongocxx/config/postlude.hpp>
Class representing criteria for document validation, to be applied to a collection.
Definition: validation_criteria.hpp:31
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:33
Class representing the optional arguments to a MongoDB create index operation.
Definition: index.hpp:38