MongoDB C++ Driver mongocxx-3.1.1
Loading...
Searching...
No Matches
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
26namespace mongocxx {
27MONGOCXX_INLINE_NAMESPACE_BEGIN
28namespace options {
29
37class MONGOCXX_API modify_collection {
38 public:
48 std::chrono::seconds seconds);
49
58 modify_collection& no_padding(bool no_padding);
59
69
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
85MONGOCXX_INLINE_NAMESPACE_END
86} // namespace mongocxx
87
88#include <mongocxx/config/postlude.hpp>
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
modify_collection & no_padding(bool no_padding)
When true, disables the power of 2 sizes allocation for the collection.
bsoncxx::document::value to_document() const
Return a bson document representing a collMod command with the given options set on this object.
modify_collection & validation_criteria(class validation_criteria validation)
Specify validation criteria for this collection.
modify_collection & index(bsoncxx::document::view_or_value index_spec, std::chrono::seconds seconds)
The index flag changes the expiration time of a TTL collection.
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