123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- // Copyright 2014 MongoDB Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #pragma once
- #include <string>
- #include <bsoncxx/stdx/optional.hpp>
- #include <mongocxx/options/apm.hpp>
- #include <mongocxx/options/auto_encryption.hpp>
- #include <mongocxx/options/tls.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- namespace options {
- // NOTE: client options interface still evolving
- ///
- /// Class representing the optional arguments to a MongoDB driver client object.
- ///
- class MONGOCXX_API client {
- public:
- ///
- /// Sets the SSL-related options.
- ///
- /// @param ssl_opts
- /// The SSL-related options.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This
- /// facilitates method chaining.
- ///
- /// @deprecated
- /// Please use tls_opts instead.
- ///
- MONGOCXX_DEPRECATED client& ssl_opts(tls ssl_opts);
- ///
- /// Sets the TLS-related options.
- ///
- /// @param tls_opts
- /// The TLS-related options.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- client& tls_opts(tls tls_opts);
- ///
- /// The current SSL-related options.
- ///
- /// @return The SSL-related options.
- ///
- /// @deprecated Please use tls_opts instead.
- ///
- MONGOCXX_DEPRECATED const stdx::optional<tls>& ssl_opts() const;
- ///
- /// The current TLS-related options.
- ///
- /// @return The TLS-related options.
- ///
- const stdx::optional<tls>& tls_opts() const;
- ///
- /// Sets the automatic encryption options.
- ///
- /// @param auto_encryption_opts
- /// The options for automatic encryption.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- client& auto_encryption_opts(auto_encryption auto_encryption_opts);
- ///
- /// Gets the current automatic encryption options.
- ///
- /// @return
- /// The automatic encryption opts.
- ///
- const stdx::optional<auto_encryption>& auto_encryption_opts() const;
- ///
- /// Sets the APM-related options.
- ///
- /// @param apm_opts
- /// The APM-related options.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- client& apm_opts(apm apm_opts);
- ///
- /// The current APM-related options.
- ///
- /// @return The APM-related options.
- ///
- const stdx::optional<apm>& apm_opts() const;
- private:
- stdx::optional<tls> _tls_opts;
- stdx::optional<apm> _apm_opts;
- stdx::optional<auto_encryption> _auto_encrypt_opts;
- };
- } // namespace options
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|