summaryrefslogtreecommitdiff
path: root/src/mongo/db/write_concern_options.idl
diff options
context:
space:
mode:
authorKevin Pulo <kevin.pulo@mongodb.com>2019-09-26 19:53:04 +0000
committerevergreen <evergreen@mongodb.com>2019-09-26 19:53:04 +0000
commitae006f4586f21e294bdb14709d2610af681c592a (patch)
treebdeb6a9f7991cf9f779a9c4e7580a11ef98e4793 /src/mongo/db/write_concern_options.idl
parent68d5310c76cb589ad4ab1ea1775fa861277b0615 (diff)
downloadmongo-ae006f4586f21e294bdb14709d2610af681c592a.tar.gz
SERVER-43120 SERVER-43121 SERVER-43122 ReadWriteConcernDefaults component, setDefaultRWConcern and getDefaultRWConcern commands, check RWC default suitability
Diffstat (limited to 'src/mongo/db/write_concern_options.idl')
-rw-r--r--src/mongo/db/write_concern_options.idl44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/mongo/db/write_concern_options.idl b/src/mongo/db/write_concern_options.idl
new file mode 100644
index 00000000000..07c3cdbffc4
--- /dev/null
+++ b/src/mongo/db/write_concern_options.idl
@@ -0,0 +1,44 @@
+# Copyright (C) 2019-present MongoDB, Inc.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the Server Side Public License, version 1,
+# as published by MongoDB, Inc.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# Server Side Public License for more details.
+#
+# You should have received a copy of the Server Side Public License
+# along with this program. If not, see
+# <http://www.mongodb.com/licensing/server-side-public-license>.
+#
+# As a special exception, the copyright holders give permission to link the
+# code of portions of this program with the OpenSSL library under certain
+# conditions as described in each individual source file and distribute
+# linked combinations including the program with the OpenSSL library. You
+# must comply with the Server Side Public License in all respects for
+# all of the code used other than as permitted herein. If you modify file(s)
+# with this exception, you may extend this exception to your version of the
+# file(s), but you are not obligated to do so. If you do not wish to do so,
+# delete this exception statement from your version. If you delete this
+# exception statement from all source files in the program, then also delete
+# it in the license file.
+#
+global:
+ cpp_namespace: "mongo"
+ cpp_includes:
+ - "mongo/db/write_concern_options.h"
+
+
+imports:
+ - "mongo/idl/basic_types.idl"
+
+
+types:
+ WriteConcern:
+ description: "An object representing a write concern."
+ bson_serialization_type: object
+ cpp_type: "mongo::WriteConcernOptions"
+ serializer: "mongo::WriteConcernOptions::toBSON"
+ deserializer: "mongo::WriteConcernOptions::deserializerForIDL"