2023-06-26 18:21:40 +08:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2023-07-06 20:20:58 +08:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Default, PartialEq, Eq)]
|
2023-06-26 18:21:40 +08:00
|
|
|
#[serde(rename_all = "camelCase", default)]
|
|
|
|
pub struct RuntimeTogglableFeatures {
|
|
|
|
pub vector_store: bool,
|
2023-10-14 06:12:54 +08:00
|
|
|
pub metrics: bool,
|
2024-02-05 20:29:01 +08:00
|
|
|
pub logs_route: bool,
|
2023-06-26 18:21:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, Clone, Copy)]
|
|
|
|
pub struct InstanceTogglableFeatures {
|
|
|
|
pub metrics: bool,
|
2024-02-05 21:05:24 +08:00
|
|
|
pub logs_route: bool,
|
2023-06-26 18:21:40 +08:00
|
|
|
}
|