pub struct CrdbDatabase {Show 15 fields
pub provider: Option<String>,
pub region: Option<String>,
pub redis_version_compliance: Option<String>,
pub public_endpoint: Option<String>,
pub private_endpoint: Option<String>,
pub memory_limit_in_gb: Option<f64>,
pub dataset_size_in_gb: Option<f64>,
pub memory_used_in_mb: Option<f64>,
pub read_operations_per_second: Option<i32>,
pub write_operations_per_second: Option<i32>,
pub data_persistence: Option<String>,
pub alerts: Option<Vec<DatabaseAlertSpec>>,
pub security: Option<Security>,
pub backup: Option<Backup>,
pub query_performance_factor: Option<String>,
}Expand description
Per-region configuration for an Active-Active (CRDB) database
Fields§
§provider: Option<String>Cloud provider
region: Option<String>Cloud region
redis_version_compliance: Option<String>Redis version compliance
public_endpoint: Option<String>Public endpoint
private_endpoint: Option<String>Private endpoint
memory_limit_in_gb: Option<f64>Memory limit in GB
dataset_size_in_gb: Option<f64>Dataset size in GB
memory_used_in_mb: Option<f64>Memory used in MB
read_operations_per_second: Option<i32>Read operations per second
write_operations_per_second: Option<i32>Write operations per second
data_persistence: Option<String>Data persistence setting for this region
alerts: Option<Vec<DatabaseAlertSpec>>Alert configurations for this region
security: Option<Security>Security configuration for this region
backup: Option<Backup>Backup configuration for this region
query_performance_factor: Option<String>Query performance factor
Trait Implementations§
Source§impl Clone for CrdbDatabase
impl Clone for CrdbDatabase
Source§fn clone(&self) -> CrdbDatabase
fn clone(&self) -> CrdbDatabase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CrdbDatabase
impl Debug for CrdbDatabase
Source§impl<'de> Deserialize<'de> for CrdbDatabase
impl<'de> Deserialize<'de> for CrdbDatabase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CrdbDatabase
impl RefUnwindSafe for CrdbDatabase
impl Send for CrdbDatabase
impl Sync for CrdbDatabase
impl Unpin for CrdbDatabase
impl UnwindSafe for CrdbDatabase
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more