// 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 #include #include #include #include #include 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& ssl_opts() const; /// /// The current TLS-related options. /// /// @return The TLS-related options. /// const stdx::optional& 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_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_opts() const; private: stdx::optional _tls_opts; stdx::optional _apm_opts; stdx::optional _auto_encrypt_opts; }; } // namespace options MONGOCXX_INLINE_NAMESPACE_END } // namespace mongocxx #include