pub struct CloudDetail {
pub provider: Option<String>,
pub cloud_account_id: Option<i32>,
pub aws_account_id: Option<String>,
pub total_size_in_gb: Option<f64>,
pub regions: Option<Vec<SubscriptionRegion>>,
}Expand description
Cloud provider details for a subscription
Fields§
§provider: Option<String>Cloud provider (e.g., “AWS”, “GCP”, “Azure”)
cloud_account_id: Option<i32>Cloud account ID (Redis Cloud internal or BYOA)
aws_account_id: Option<String>AWS account ID (for AWS deployments)
total_size_in_gb: Option<f64>Total size of the subscription in GB
regions: Option<Vec<SubscriptionRegion>>Regions configured for this cloud provider
Trait Implementations§
Source§impl Clone for CloudDetail
impl Clone for CloudDetail
Source§fn clone(&self) -> CloudDetail
fn clone(&self) -> CloudDetail
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 CloudDetail
impl Debug for CloudDetail
Source§impl<'de> Deserialize<'de> for CloudDetail
impl<'de> Deserialize<'de> for CloudDetail
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 CloudDetail
impl RefUnwindSafe for CloudDetail
impl Send for CloudDetail
impl Sync for CloudDetail
impl Unpin for CloudDetail
impl UnwindSafe for CloudDetail
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