couchbase 4.4.3 → 4.4.4
Sign up to get free protection for your applications and to get access to all the features.
- package/BUILDING.md +182 -0
- package/CMakeLists.txt +11 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +4 -2
- package/deps/couchbase-cxx-cache/boringssl/e31ea00c1ea52052d2d78d44006cc88c80fa24a9/boringssl/src/BUILDING.md +206 -0
- package/deps/couchbase-cxx-client/CMakeLists.txt +3 -1
- package/deps/couchbase-cxx-client/README.md +2 -2
- package/deps/couchbase-cxx-client/cmake/APKBUILD.in +54 -0
- package/deps/couchbase-cxx-client/cmake/CompilerWarnings.cmake +0 -5
- package/deps/couchbase-cxx-client/cmake/Packaging.cmake +174 -11
- package/deps/couchbase-cxx-client/cmake/RPath.cmake +10 -0
- package/deps/couchbase-cxx-client/cmake/VersionInfo.cmake +4 -0
- package/deps/couchbase-cxx-client/cmake/build_version.hxx.in +1 -0
- package/deps/couchbase-cxx-client/cmake/couchbase-cxx-client.spec.in +2 -2
- package/deps/couchbase-cxx-client/cmake/couchbase_cxx_client.pc.in +2 -2
- package/deps/couchbase-cxx-client/cmake/debian/changelog.in +5 -0
- package/deps/couchbase-cxx-client/cmake/debian/compat +1 -0
- package/deps/couchbase-cxx-client/cmake/debian/control +40 -0
- package/deps/couchbase-cxx-client/cmake/debian/rules +41 -0
- package/deps/couchbase-cxx-client/cmake/debian/source/format +1 -0
- package/deps/couchbase-cxx-client/core/impl/analytics.cxx +1 -0
- package/deps/couchbase-cxx-client/core/impl/collection.cxx +27 -3
- package/deps/couchbase-cxx-client/core/impl/error.cxx +24 -3
- package/deps/couchbase-cxx-client/core/impl/get_replica.hxx +2 -0
- package/deps/couchbase-cxx-client/core/impl/lookup_in_replica.hxx +2 -0
- package/deps/couchbase-cxx-client/core/impl/observe_seqno.hxx +2 -0
- package/deps/couchbase-cxx-client/core/impl/query.cxx +1 -0
- package/deps/couchbase-cxx-client/core/impl/search.cxx +2 -0
- package/deps/couchbase-cxx-client/core/io/http_command.hxx +2 -2
- package/deps/couchbase-cxx-client/core/io/mcbp_command.hxx +1 -1
- package/deps/couchbase-cxx-client/core/meta/features.hxx +11 -0
- package/deps/couchbase-cxx-client/core/meta/version.cxx +47 -6
- package/deps/couchbase-cxx-client/core/operations/document_analytics.cxx +23 -17
- package/deps/couchbase-cxx-client/core/operations/document_analytics.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/document_append.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_decrement.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_exists.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_get.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_get_all_replicas.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_get_and_lock.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_get_and_touch.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_get_any_replica.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_get_projected.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_increment.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_insert.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_lookup_in.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_lookup_in_all_replicas.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_lookup_in_any_replica.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_mutate_in.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_prepend.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_query.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/document_remove.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_replace.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_search.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/document_touch.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_unlock.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_upsert.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_view.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/http_noop.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataset_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_dataverse_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_get_pending_mutations.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_index_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_index_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_index_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_connect.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_disconnect.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.cxx +23 -15
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_get_all.hxx +4 -3
- package/deps/couchbase-cxx-client/core/operations/management/analytics_link_replace.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_describe.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_flush.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_get.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/bucket_update.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/change_password.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/cluster_describe.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/collection_create.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/collection_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/collection_update.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/collections_manifest_get.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/eventing_deploy_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_drop_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_get_all_functions.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_get_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_get_status.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_pause_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_resume_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_undeploy_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/eventing_upsert_function.hxx +3 -2
- package/deps/couchbase-cxx-client/core/operations/management/freeform.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_get.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/group_upsert.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/query_index_build.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/query_index_build_deferred.hxx +3 -0
- package/deps/couchbase-cxx-client/core/operations/management/query_index_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/query_index_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.hxx +3 -0
- package/deps/couchbase-cxx-client/core/operations/management/role_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/scope_create.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/scope_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/scope_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_get_stats.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_control_query.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_get_stats.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/search_index_upsert.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/user_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/user_get.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/user_get_all.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/user_upsert.cxx +3 -3
- package/deps/couchbase-cxx-client/core/operations/management/user_upsert.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_drop.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_get.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_get_all.hxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/management/view_index_upsert.hxx +1 -0
- package/deps/couchbase-cxx-client/core/transactions/async_attempt_context.hxx +9 -21
- package/deps/couchbase-cxx-client/core/transactions/attempt_context.hxx +6 -33
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.cxx +41 -41
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.hxx +15 -16
- package/deps/couchbase-cxx-client/core/transactions/transaction_context.cxx +2 -2
- package/deps/couchbase-cxx-client/core/transactions/transaction_get_result.hxx +0 -20
- package/deps/couchbase-cxx-client/couchbase/common_options.hxx +16 -1
- package/deps/couchbase-cxx-client/couchbase/metrics/otel_meter.hxx +16 -20
- package/dist/analyticsindexmanager.d.ts +98 -14
- package/dist/analyticsindexmanager.js +452 -411
- package/dist/binding.d.ts +53 -4
- package/dist/bindingutilities.d.ts +26 -1
- package/dist/bindingutilities.js +108 -1
- package/dist/couchbase.d.ts +3 -1
- package/dist/couchbase.js +2 -0
- package/dist/rangeScan.d.ts +1 -1
- package/dist/rangeScan.js +1 -1
- package/dist/transactions.d.ts +34 -3
- package/dist/transactions.js +25 -18
- package/dist/transcoders.d.ts +68 -0
- package/dist/transcoders.js +194 -1
- package/dist/usermanager.d.ts +14 -14
- package/dist/usermanager.js +178 -228
- package/dist/utilities.js +4 -6
- package/dist/utilities_internal.js +1 -2
- package/package.json +9 -8
- package/src/connection.cpp +22 -0
- package/src/connection.hpp +12 -0
- package/src/connection_autogen.cpp +100 -0
- package/src/jstocbpp_autogen.hpp +315 -8
- package/src/jstocbpp_transactions.hpp +1 -2
- package/tools/gen-bindings-js.js +38 -3
- package/tools/gen-bindings-json.py +575 -328
@@ -38,25 +38,33 @@ analytics_link_get_all_request::encode_to(encoded_request_type& encoded,
|
|
38
38
|
encoded.headers["content-type"] = "application/x-www-form-urlencoded";
|
39
39
|
encoded.headers["accept"] = "application/json";
|
40
40
|
encoded.method = "GET";
|
41
|
-
if (!link_type.empty()) {
|
42
|
-
values["type"] = link_type;
|
41
|
+
if (link_type.has_value() && !link_type.value().empty()) {
|
42
|
+
values["type"] = link_type.value();
|
43
43
|
}
|
44
|
-
if (
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
44
|
+
if ((link_name.has_value() && !link_name.value().empty()) &&
|
45
|
+
(!dataverse_name.has_value() || dataverse_name.value().empty())) {
|
46
|
+
return couchbase::errc::common::invalid_argument;
|
47
|
+
}
|
48
|
+
|
49
|
+
if (dataverse_name.has_value() && !dataverse_name.value().empty()) {
|
50
|
+
if (std::count(dataverse_name.value().begin(), dataverse_name.value().end(), '/') == 0) {
|
51
|
+
values["dataverse"] = dataverse_name.value();
|
52
|
+
if (link_name.has_value() && !link_name.value().empty()) {
|
53
|
+
values["name"] = link_name.value();
|
49
54
|
}
|
50
|
-
|
51
|
-
encoded.path = "/analytics/link";
|
52
|
-
} else {
|
53
|
-
if (link_name.empty()) {
|
54
|
-
encoded.path =
|
55
|
-
fmt::format("/analytics/link/{}", utils::string_codec::v2::path_escape(dataverse_name));
|
55
|
+
encoded.path = "/analytics/link";
|
56
56
|
} else {
|
57
|
-
|
58
|
-
"/analytics/link/{}
|
57
|
+
if (!link_name.has_value() || link_name.value().empty()) {
|
58
|
+
encoded.path = fmt::format("/analytics/link/{}",
|
59
|
+
utils::string_codec::v2::path_escape(dataverse_name.value()));
|
60
|
+
} else {
|
61
|
+
encoded.path = fmt::format("/analytics/link/{}/{}",
|
62
|
+
utils::string_codec::v2::path_escape(dataverse_name.value()),
|
63
|
+
link_name.value());
|
64
|
+
}
|
59
65
|
}
|
66
|
+
} else {
|
67
|
+
encoded.path = "/analytics/link";
|
60
68
|
}
|
61
69
|
if (!values.empty()) {
|
62
70
|
encoded.path.append(fmt::format("?{}", utils::string_codec::v2::form_encode(values)));
|
@@ -48,10 +48,11 @@ struct analytics_link_get_all_request {
|
|
48
48
|
using error_context_type = error_context::http;
|
49
49
|
|
50
50
|
static const inline service_type type = service_type::analytics;
|
51
|
+
static const inline std::string observability_identifier = "manager_analytics_get_links";
|
51
52
|
|
52
|
-
std::string link_type{};
|
53
|
-
std::string link_name{};
|
54
|
-
std::string dataverse_name{};
|
53
|
+
std::optional<std::string> link_type{};
|
54
|
+
std::optional<std::string> link_name{};
|
55
|
+
std::optional<std::string> dataverse_name{};
|
55
56
|
|
56
57
|
std::optional<std::string> client_context_id{};
|
57
58
|
std::optional<std::chrono::milliseconds> timeout{};
|
@@ -51,6 +51,7 @@ struct analytics_link_replace_request {
|
|
51
51
|
using error_context_type = error_context::http;
|
52
52
|
|
53
53
|
static const inline service_type type = service_type::analytics;
|
54
|
+
static const inline std::string observability_identifier = "manager_analytics_replace_link";
|
54
55
|
|
55
56
|
analytics_link_type link{};
|
56
57
|
|
@@ -38,6 +38,7 @@ struct bucket_create_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::management;
|
41
|
+
static const inline std::string observability_identifier = "manager_buckets_create_bucket";
|
41
42
|
|
42
43
|
couchbase::core::management::cluster::bucket_settings bucket{};
|
43
44
|
|
@@ -76,6 +76,7 @@ struct bucket_describe_request {
|
|
76
76
|
std::string name;
|
77
77
|
|
78
78
|
static const inline service_type type = service_type::management;
|
79
|
+
static const inline std::string observability_identifier = "manager_buckets_describe_bucket";
|
79
80
|
|
80
81
|
std::optional<std::string> client_context_id{};
|
81
82
|
std::optional<std::chrono::milliseconds> timeout{};
|
@@ -36,6 +36,7 @@ struct bucket_drop_request {
|
|
36
36
|
using error_context_type = error_context::http;
|
37
37
|
|
38
38
|
static const inline service_type type = service_type::management;
|
39
|
+
static const inline std::string observability_identifier = "manager_buckets_drop_bucket";
|
39
40
|
|
40
41
|
std::string name;
|
41
42
|
|
@@ -36,6 +36,7 @@ struct bucket_flush_request {
|
|
36
36
|
using error_context_type = error_context::http;
|
37
37
|
|
38
38
|
static const inline service_type type = service_type::management;
|
39
|
+
static const inline std::string observability_identifier = "manager_buckets_flush_bucket";
|
39
40
|
|
40
41
|
std::string name;
|
41
42
|
|
@@ -38,6 +38,7 @@ struct bucket_get_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::management;
|
41
|
+
static const inline std::string observability_identifier = "manager_buckets_get_bucket";
|
41
42
|
|
42
43
|
std::string name;
|
43
44
|
|
@@ -38,6 +38,7 @@ struct bucket_get_all_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::management;
|
41
|
+
static const inline std::string observability_identifier = "manager_buckets_get_all_buckets";
|
41
42
|
|
42
43
|
std::optional<std::string> client_context_id{};
|
43
44
|
std::optional<std::chrono::milliseconds> timeout{};
|
@@ -39,6 +39,7 @@ struct bucket_update_request {
|
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
41
|
static const inline service_type type = service_type::management;
|
42
|
+
static const inline std::string observability_identifier = "manager_buckets_update_bucket";
|
42
43
|
|
43
44
|
couchbase::core::management::cluster::bucket_settings bucket{};
|
44
45
|
|
@@ -37,6 +37,7 @@ struct change_password_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::management;
|
40
|
+
static const inline std::string observability_identifier = "manager_users_change_password";
|
40
41
|
|
41
42
|
std::string newPassword{};
|
42
43
|
|
@@ -61,6 +61,7 @@ struct cluster_describe_request {
|
|
61
61
|
using error_context_type = error_context::http;
|
62
62
|
|
63
63
|
static const inline service_type type = service_type::management;
|
64
|
+
static const inline std::string observability_identifier = "cluster_describe";
|
64
65
|
|
65
66
|
std::optional<std::string> client_context_id{};
|
66
67
|
std::optional<std::chrono::milliseconds> timeout{};
|
package/deps/couchbase-cxx-client/core/operations/management/cluster_developer_preview_enable.hxx
CHANGED
@@ -36,6 +36,7 @@ struct cluster_developer_preview_enable_request {
|
|
36
36
|
using error_context_type = error_context::http;
|
37
37
|
|
38
38
|
static const inline service_type type = service_type::management;
|
39
|
+
static const inline std::string observability_identifier = "enable_developer_preview";
|
39
40
|
|
40
41
|
std::optional<std::string> client_context_id{};
|
41
42
|
std::optional<std::chrono::milliseconds> timeout{};
|
@@ -37,6 +37,8 @@ struct collection_create_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::management;
|
40
|
+
static const inline std::string observability_identifier =
|
41
|
+
"manager_collections_create_collection";
|
40
42
|
|
41
43
|
std::string bucket_name;
|
42
44
|
std::string scope_name;
|
@@ -37,6 +37,7 @@ struct collection_drop_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::management;
|
40
|
+
static const inline std::string observability_identifier = "manager_collections_drop_collection";
|
40
41
|
|
41
42
|
std::string bucket_name;
|
42
43
|
std::string scope_name;
|
@@ -37,6 +37,8 @@ struct collection_update_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::management;
|
40
|
+
static const inline std::string observability_identifier =
|
41
|
+
"manager_collections_update_collection";
|
40
42
|
|
41
43
|
std::string bucket_name;
|
42
44
|
std::string scope_name;
|
@@ -40,6 +40,8 @@ struct collections_manifest_get_request {
|
|
40
40
|
using encoded_response_type =
|
41
41
|
protocol::client_response<protocol::get_collections_manifest_response_body>;
|
42
42
|
|
43
|
+
static const inline std::string observability_identifier = "get_collection_manifest";
|
44
|
+
|
43
45
|
document_id id{};
|
44
46
|
std::uint16_t partition{};
|
45
47
|
std::uint32_t opaque{};
|
@@ -38,13 +38,14 @@ struct eventing_deploy_function_request {
|
|
38
38
|
using encoded_response_type = io::http_response;
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
|
+
static const inline service_type type = service_type::eventing;
|
42
|
+
static const inline std::string observability_identifier = "manager_eventing_deploy_function";
|
43
|
+
|
41
44
|
std::string name;
|
42
45
|
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -38,13 +38,14 @@ struct eventing_drop_function_request {
|
|
38
38
|
using encoded_response_type = io::http_response;
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
|
+
static const inline service_type type = service_type::eventing;
|
42
|
+
static const inline std::string observability_identifier = "manager_eventing_drop_function";
|
43
|
+
|
41
44
|
std::string name;
|
42
45
|
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -39,11 +39,12 @@ struct eventing_get_all_functions_request {
|
|
39
39
|
using encoded_response_type = io::http_response;
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
|
+
static const inline service_type type = service_type::eventing;
|
43
|
+
static const inline std::string observability_identifier = "manager_eventing_drop_function";
|
44
|
+
|
42
45
|
std::optional<std::string> bucket_name{};
|
43
46
|
std::optional<std::string> scope_name{};
|
44
47
|
|
45
|
-
static const inline service_type type = service_type::eventing;
|
46
|
-
|
47
48
|
std::optional<std::string> client_context_id{};
|
48
49
|
std::optional<std::chrono::milliseconds> timeout{};
|
49
50
|
|
@@ -39,12 +39,13 @@ struct eventing_get_function_request {
|
|
39
39
|
using encoded_response_type = io::http_response;
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
|
+
static const inline service_type type = service_type::eventing;
|
43
|
+
static const inline std::string observability_identifier = "manager_eventing_get_function";
|
44
|
+
|
42
45
|
std::string name;
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -41,11 +41,12 @@ struct eventing_get_status_request {
|
|
41
41
|
using encoded_response_type = io::http_response;
|
42
42
|
using error_context_type = error_context::http;
|
43
43
|
|
44
|
+
static const inline service_type type = service_type::eventing;
|
45
|
+
static const inline std::string observability_identifier = "manager_eventing_functions_status";
|
46
|
+
|
44
47
|
std::optional<std::string> bucket_name{};
|
45
48
|
std::optional<std::string> scope_name{};
|
46
49
|
|
47
|
-
static const inline service_type type = service_type::eventing;
|
48
|
-
|
49
50
|
std::optional<std::string> client_context_id{};
|
50
51
|
std::optional<std::chrono::milliseconds> timeout{};
|
51
52
|
|
@@ -38,13 +38,14 @@ struct eventing_pause_function_request {
|
|
38
38
|
using encoded_response_type = io::http_response;
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
|
+
static const inline service_type type = service_type::eventing;
|
42
|
+
static const inline std::string observability_identifier = "manager_eventing_pause_function";
|
43
|
+
|
41
44
|
std::string name;
|
42
45
|
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -38,13 +38,14 @@ struct eventing_resume_function_request {
|
|
38
38
|
using encoded_response_type = io::http_response;
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
|
+
static const inline service_type type = service_type::eventing;
|
42
|
+
static const inline std::string observability_identifier = "manager_eventing_resume_function";
|
43
|
+
|
41
44
|
std::string name;
|
42
45
|
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -38,13 +38,14 @@ struct eventing_undeploy_function_request {
|
|
38
38
|
using encoded_response_type = io::http_response;
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
|
+
static const inline service_type type = service_type::eventing;
|
42
|
+
static const inline std::string observability_identifier = "manager_eventing_undeploy_function";
|
43
|
+
|
41
44
|
std::string name;
|
42
45
|
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -38,13 +38,14 @@ struct eventing_upsert_function_request {
|
|
38
38
|
using encoded_response_type = io::http_response;
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
|
+
static const inline service_type type = service_type::eventing;
|
42
|
+
static const inline std::string observability_identifier = "manager_eventing_upsert_function";
|
43
|
+
|
41
44
|
couchbase::core::management::eventing::function function{};
|
42
45
|
|
43
46
|
std::optional<std::string> bucket_name{};
|
44
47
|
std::optional<std::string> scope_name{};
|
45
48
|
|
46
|
-
static const inline service_type type = service_type::eventing;
|
47
|
-
|
48
49
|
std::optional<std::string> client_context_id{};
|
49
50
|
std::optional<std::chrono::milliseconds> timeout{};
|
50
51
|
|
@@ -39,6 +39,8 @@ struct freeform_request {
|
|
39
39
|
using encoded_response_type = io::http_response;
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
|
+
static const inline std::string observability_identifier = "freeform_http";
|
43
|
+
|
42
44
|
service_type type{};
|
43
45
|
std::string method;
|
44
46
|
std::string path;
|
@@ -35,6 +35,7 @@ struct group_drop_request {
|
|
35
35
|
using encoded_response_type = io::http_response;
|
36
36
|
using error_context_type = error_context::http;
|
37
37
|
|
38
|
+
static const inline std::string observability_identifier = "manager_users_drop_group";
|
38
39
|
static const inline service_type type = service_type::management;
|
39
40
|
|
40
41
|
std::string name{};
|
@@ -37,6 +37,7 @@ struct group_get_request {
|
|
37
37
|
using encoded_response_type = io::http_response;
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
|
+
static const inline std::string observability_identifier = "manager_users_get_group";
|
40
41
|
static const inline service_type type = service_type::management;
|
41
42
|
|
42
43
|
std::string name{};
|
@@ -37,6 +37,7 @@ struct group_get_all_request {
|
|
37
37
|
using encoded_response_type = io::http_response;
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
|
+
static const inline std::string observability_identifier = "manager_users_get_all_groups";
|
40
41
|
static const inline service_type type = service_type::management;
|
41
42
|
|
42
43
|
std::optional<std::string> client_context_id{};
|
@@ -37,6 +37,7 @@ struct group_upsert_request {
|
|
37
37
|
using encoded_response_type = io::http_response;
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
|
+
static const inline std::string observability_identifier = "manager_users_upsert_group";
|
40
41
|
static const inline service_type type = service_type::management;
|
41
42
|
|
42
43
|
couchbase::core::management::rbac::group group{};
|
@@ -43,6 +43,8 @@ struct query_index_build_request {
|
|
43
43
|
using error_context_type = error_context::http;
|
44
44
|
|
45
45
|
static const inline service_type type = service_type::query;
|
46
|
+
static const inline std::string observability_identifier = "manager_query_build_indexes";
|
47
|
+
|
46
48
|
static constexpr auto namespace_id = "default";
|
47
49
|
|
48
50
|
std::string bucket_name;
|
@@ -44,6 +44,9 @@ struct query_index_build_deferred_request {
|
|
44
44
|
using encoded_response_type = io::http_response;
|
45
45
|
using error_context_type = error_context::http;
|
46
46
|
|
47
|
+
static const inline service_type type = service_type::query;
|
48
|
+
static const inline std::string observability_identifier = "manager_query_build_deferred_indexes";
|
49
|
+
|
47
50
|
static constexpr auto namespace_id = "default";
|
48
51
|
|
49
52
|
std::string bucket_name;
|
@@ -43,6 +43,7 @@ struct query_index_create_request {
|
|
43
43
|
using error_context_type = error_context::http;
|
44
44
|
|
45
45
|
static const inline service_type type = service_type::query;
|
46
|
+
static const inline std::string observability_identifier = "manager_query_create_index";
|
46
47
|
|
47
48
|
static constexpr auto namespace_id = "default";
|
48
49
|
std::string bucket_name;
|
@@ -43,6 +43,7 @@ struct query_index_drop_request {
|
|
43
43
|
using error_context_type = error_context::http;
|
44
44
|
|
45
45
|
static const inline service_type type = service_type::query;
|
46
|
+
static const inline std::string observability_identifier = "manager_query_drop_index";
|
46
47
|
|
47
48
|
static constexpr auto namespace_id = "default";
|
48
49
|
std::string bucket_name;
|
@@ -40,6 +40,8 @@ struct query_index_get_all_request {
|
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
42
|
static const inline service_type type = service_type::query;
|
43
|
+
static const inline std::string observability_identifier = "manager_query_get_all_indexes";
|
44
|
+
|
43
45
|
static constexpr auto namespace_id = "default";
|
44
46
|
|
45
47
|
std::string bucket_name;
|
package/deps/couchbase-cxx-client/core/operations/management/query_index_get_all_deferred.hxx
CHANGED
@@ -40,6 +40,9 @@ struct query_index_get_all_deferred_request {
|
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
42
|
static const inline service_type type = service_type::query;
|
43
|
+
static const inline std::string observability_identifier =
|
44
|
+
"manager_query_get_all_deferred_indexes";
|
45
|
+
|
43
46
|
static constexpr auto namespace_id = "default";
|
44
47
|
|
45
48
|
std::string bucket_name;
|
@@ -37,6 +37,7 @@ struct role_get_all_request {
|
|
37
37
|
using encoded_response_type = io::http_response;
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
|
+
static const inline std::string observability_identifier = "manager_users_get_roles";
|
40
41
|
static const inline service_type type = service_type::management;
|
41
42
|
|
42
43
|
std::optional<std::string> client_context_id{};
|
@@ -37,6 +37,7 @@ struct scope_create_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::management;
|
40
|
+
static const inline std::string observability_identifier = "manager_collections_create_scope";
|
40
41
|
|
41
42
|
std::string bucket_name;
|
42
43
|
std::string scope_name;
|
@@ -37,6 +37,7 @@ struct scope_drop_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::management;
|
40
|
+
static const inline std::string observability_identifier = "manager_collections_drop_scope";
|
40
41
|
|
41
42
|
std::string bucket_name;
|
42
43
|
std::string scope_name;
|
@@ -38,6 +38,7 @@ struct scope_get_all_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::management;
|
41
|
+
static const inline std::string observability_identifier = "manager_collections_get_all_scopes";
|
41
42
|
|
42
43
|
std::string bucket_name;
|
43
44
|
|
@@ -37,6 +37,7 @@ struct search_get_stats_request {
|
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
39
|
static const inline service_type type = service_type::search;
|
40
|
+
static const inline std::string observability_identifier = "manager_search_get_stats";
|
40
41
|
|
41
42
|
std::optional<std::string> client_context_id{};
|
42
43
|
std::optional<std::chrono::milliseconds> timeout{};
|
package/deps/couchbase-cxx-client/core/operations/management/search_index_analyze_document.hxx
CHANGED
@@ -39,6 +39,7 @@ struct search_index_analyze_document_request {
|
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
41
|
static const inline service_type type = service_type::search;
|
42
|
+
static const inline std::string observability_identifier = "manager_search_analyze_document";
|
42
43
|
|
43
44
|
std::string index_name;
|
44
45
|
std::string encoded_document;
|
package/deps/couchbase-cxx-client/core/operations/management/search_index_control_ingest.hxx
CHANGED
@@ -38,6 +38,7 @@ struct search_index_control_ingest_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::search;
|
41
|
+
static const inline std::string observability_identifier = "manager_search_control_ingest";
|
41
42
|
|
42
43
|
std::string index_name;
|
43
44
|
bool pause;
|
package/deps/couchbase-cxx-client/core/operations/management/search_index_control_plan_freeze.hxx
CHANGED
@@ -40,6 +40,7 @@ struct search_index_control_plan_freeze_request {
|
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
42
|
static const inline service_type type = service_type::search;
|
43
|
+
static const inline std::string observability_identifier = "manager_search_control_plan_freeze";
|
43
44
|
|
44
45
|
std::string index_name;
|
45
46
|
bool freeze;
|
@@ -38,6 +38,7 @@ struct search_index_control_query_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::search;
|
41
|
+
static const inline std::string observability_identifier = "manager_search_control_querying";
|
41
42
|
|
42
43
|
std::string index_name;
|
43
44
|
bool allow;
|
@@ -38,6 +38,7 @@ struct search_index_drop_request {
|
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
40
|
static const inline service_type type = service_type::search;
|
41
|
+
static const inline std::string observability_identifier = "manager_search_drop_index";
|
41
42
|
|
42
43
|
std::string index_name;
|
43
44
|
|
@@ -40,6 +40,7 @@ struct search_index_get_request {
|
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
42
|
static const inline service_type type = service_type::search;
|
43
|
+
static const inline std::string observability_identifier = "manager_search_get_index";
|
43
44
|
|
44
45
|
std::string index_name;
|
45
46
|
std::optional<std::string> bucket_name;
|
@@ -40,6 +40,7 @@ struct search_index_get_all_request {
|
|
40
40
|
using error_context_type = error_context::http;
|
41
41
|
|
42
42
|
static const inline service_type type = service_type::search;
|
43
|
+
static const inline std::string observability_identifier = "manager_search_get_all_indexes";
|
43
44
|
|
44
45
|
std::optional<std::string> bucket_name;
|
45
46
|
std::optional<std::string> scope_name;
|
package/deps/couchbase-cxx-client/core/operations/management/search_index_get_documents_count.hxx
CHANGED
@@ -39,6 +39,8 @@ struct search_index_get_documents_count_request {
|
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
41
|
static const inline service_type type = service_type::search;
|
42
|
+
static const inline std::string observability_identifier =
|
43
|
+
"manager_search_get_indexed_documents_count";
|
42
44
|
|
43
45
|
std::string index_name;
|
44
46
|
|
@@ -39,6 +39,7 @@ struct search_index_get_stats_request {
|
|
39
39
|
using error_context_type = error_context::http;
|
40
40
|
|
41
41
|
static const inline service_type type = service_type::search;
|
42
|
+
static const inline std::string observability_identifier = "manager_search_get_stats";
|
42
43
|
|
43
44
|
std::string index_name;
|
44
45
|
|
@@ -41,6 +41,7 @@ struct search_index_upsert_request {
|
|
41
41
|
using error_context_type = error_context::http;
|
42
42
|
|
43
43
|
static const inline service_type type = service_type::search;
|
44
|
+
static const inline std::string observability_identifier = "manager_search_upsert_index";
|
44
45
|
|
45
46
|
couchbase::core::management::search::index index;
|
46
47
|
|
@@ -36,6 +36,7 @@ struct user_drop_request {
|
|
36
36
|
using encoded_response_type = io::http_response;
|
37
37
|
using error_context_type = error_context::http;
|
38
38
|
|
39
|
+
static const inline std::string observability_identifier = "manager_users_drop_user";
|
39
40
|
static const inline service_type type = service_type::management;
|
40
41
|
|
41
42
|
std::string username{};
|
@@ -37,6 +37,7 @@ struct user_get_request {
|
|
37
37
|
using encoded_response_type = io::http_response;
|
38
38
|
using error_context_type = error_context::http;
|
39
39
|
|
40
|
+
static const inline std::string observability_identifier = "manager_users_get_user";
|
40
41
|
static const inline service_type type = service_type::management;
|
41
42
|
|
42
43
|
std::string username{};
|