39#include <system_error>
56 : username_{ std::move(username) }
57 , password_{ std::move(password) }
69 : username_{ std::move(authenticator.username_) }
70 , password_{ std::move(authenticator.password_) }
72 if (authenticator.ldap_compatible_) {
73 sasl_mechanisms_ = { {
"PLAIN" } };
85 : certificate_path_{ std::move(authenticator.certificate_path_) }
86 , key_path_{ std::move(authenticator.key_path_) }
222 return transactions_;
235 return application_telemetry_;
248 if (strategy ==
nullptr) {
249 throw std::invalid_argument(
"retry strategy cannot be null");
251 default_retry_strategy_ = std::move(strategy);
282 compression_.build(),
290 transactions_.build(),
291 default_retry_strategy_,
292 application_telemetry_.build(),
297 std::string username_{};
298 std::string password_{};
299 std::string certificate_path_{};
300 std::string key_path_{};
301 std::optional<std::vector<std::string>> sasl_mechanisms_{};
312 std::shared_ptr<retry_strategy> default_retry_strategy_{
nullptr };
316#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
Definition application_telemetry_options.hxx:27
Definition behavior_options.hxx:25
Definition certificate_authenticator.hxx:25
auto behavior() -> behavior_options &
Returns misc options that affects cluster behavior.
Definition cluster_options.hxx:207
cluster_options(password_authenticator authenticator)
Definition cluster_options.hxx:68
cluster_options(certificate_authenticator authenticator)
Definition cluster_options.hxx:84
cluster_options(std::string username, std::string password)
Definition cluster_options.hxx:55
auto application_telemetry() -> application_telemetry_options &
Returns the Application Telemetry options.
Definition cluster_options.hxx:233
auto tracing() -> tracing_options &
Returns tracing options.
Definition cluster_options.hxx:194
auto build() const -> built
Definition cluster_options.hxx:274
auto default_retry_strategy(std::shared_ptr< retry_strategy > strategy) -> cluster_options &
Override default retry strategy.
Definition cluster_options.hxx:246
auto security() -> security_options &
Returns security options (including TLS)
Definition cluster_options.hxx:155
void apply_profile(const std::string &profile_name)
Apply settings profile by name.
Definition cluster_options.hxx:103
auto network() -> network_options &
Returns network options.
Definition cluster_options.hxx:168
auto dns() -> dns_options &
Returns options for DNS-SRV bootstrap.
Definition cluster_options.hxx:142
auto compression() -> compression_options &
Returns compression options.
Definition cluster_options.hxx:116
auto timeouts() -> timeout_options &
Returns various timeout options.
Definition cluster_options.hxx:129
auto transactions() -> transactions::transactions_config &
Returns the transactions options which effect the transactions behavior.
Definition cluster_options.hxx:220
auto metrics() -> metrics_options &
Returns metrics and observability options.
Definition cluster_options.hxx:181
The cluster is the main entry point when connecting to a Couchbase cluster.
Definition cluster.hxx:60
Definition compression_options.hxx:25
static void apply_profile(const std::string &name, couchbase::cluster_options &options)
Apply a profile to an instance of cluster_options.
Definition dns_options.hxx:28
Definition metrics_options.hxx:29
Definition network_options.hxx:30
Definition password_authenticator.hxx:25
Definition security_options.hxx:28
Definition timeout_options.hxx:26
Definition tracing_options.hxx:29
Configuration parameters for transactions.
Definition transactions_config.hxx:43
Represents a single item from the result of scan()
Definition allow_querying_search_index_options.hxx:28
std::function< void(error, cluster)> cluster_connect_handler
The signature for the handler of the connect()
Definition cluster_options.hxx:326
Definition application_telemetry_options.hxx:102
Definition behavior_options.hxx:70
Definition cluster_options.hxx:255
std::string password
Definition cluster_options.hxx:257
metrics_options::built metrics
Definition cluster_options.hxx:266
network_options::built network
Definition cluster_options.hxx:265
compression_options::built compression
Definition cluster_options.hxx:261
std::shared_ptr< retry_strategy > default_retry_strategy
Definition cluster_options.hxx:270
security_options::built security
Definition cluster_options.hxx:264
std::string username
Definition cluster_options.hxx:256
timeout_options::built timeouts
Definition cluster_options.hxx:262
transactions::transactions_config::built transactions
Definition cluster_options.hxx:269
std::optional< std::vector< std::string > > allowed_sasl_mechanisms
Definition cluster_options.hxx:260
std::string certificate_path
Definition cluster_options.hxx:258
std::string key_path
Definition cluster_options.hxx:259
tracing_options::built tracing
Definition cluster_options.hxx:267
behavior_options::built behavior
Definition cluster_options.hxx:268
dns_options::built dns
Definition cluster_options.hxx:263
application_telemetry_options::built application_telemetry
Definition cluster_options.hxx:271
Definition compression_options.hxx:45
Definition dns_options.hxx:45
Definition metrics_options.hxx:51
Definition network_options.hxx:117
Definition security_options.hxx:54
Definition timeout_options.hxx:111
Definition tracing_options.hxx:127