MongoDB C++ Driver mongocxx-3.0.3
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
33class MONGOCXX_API modify_collection {
34 public:
44 std::chrono::seconds seconds);
45
54 modify_collection& no_padding(bool no_padding);
55
65
73
74 private:
75 stdx::optional<bsoncxx::document::view_or_value> _index;
76 stdx::optional<bool> _no_padding;
77 stdx::optional<class validation_criteria> _validation;
78};
79
80} // namespace options
81MONGOCXX_INLINE_NAMESPACE_END
82} // namespace mongocxx
83
84#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:33
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