pub struct ReplicaStatus {
pub customer_managed_encryption: Option<CustomerManagedEncryptionStatus>,
pub location: Option<String>,
}Expand description
Describes the status of a user-managed replica for the SecretVersion.
This type is not used in any activity, and only used as part of another schema.
Fields§
§customer_managed_encryption: Option<CustomerManagedEncryptionStatus>Output only. The customer-managed encryption status of the SecretVersion. Only populated if customer-managed encryption is used.
location: Option<String>Output only. The canonical ID of the replica location. For example: "us-east1".
Trait Implementations§
Source§impl Clone for ReplicaStatus
impl Clone for ReplicaStatus
Source§fn clone(&self) -> ReplicaStatus
fn clone(&self) -> ReplicaStatus
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 ReplicaStatus
impl Debug for ReplicaStatus
Source§impl Default for ReplicaStatus
impl Default for ReplicaStatus
Source§fn default() -> ReplicaStatus
fn default() -> ReplicaStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplicaStatus
impl<'de> Deserialize<'de> for ReplicaStatus
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
Source§impl Serialize for ReplicaStatus
impl Serialize for ReplicaStatus
impl Part for ReplicaStatus
Auto Trait Implementations§
impl Freeze for ReplicaStatus
impl RefUnwindSafe for ReplicaStatus
impl Send for ReplicaStatus
impl Sync for ReplicaStatus
impl Unpin for ReplicaStatus
impl UnwindSafe for ReplicaStatus
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