pub struct FailoverGroupUpdateProperties {
pub read_write_endpoint: Option<FailoverGroupReadWriteEndpoint>,
pub read_only_endpoint: Option<FailoverGroupReadOnlyEndpoint>,
pub databases: Vec<String>,
pub partner_servers: Vec<PartnerInfo>,
pub secondary_type: Option<SecondaryType>,
}Expand description
Properties of a failover group update.
Fields§
§read_write_endpoint: Option<FailoverGroupReadWriteEndpoint>Read-write endpoint of the failover group instance.
read_only_endpoint: Option<FailoverGroupReadOnlyEndpoint>Read-only endpoint of the failover group instance.
databases: Vec<String>List of databases in the failover group.
partner_servers: Vec<PartnerInfo>List of partner server information for the failover group.
secondary_type: Option<SecondaryType>Databases secondary type on partner server.
Implementations§
Trait Implementations§
Source§impl Clone for FailoverGroupUpdateProperties
impl Clone for FailoverGroupUpdateProperties
Source§fn clone(&self) -> FailoverGroupUpdateProperties
fn clone(&self) -> FailoverGroupUpdateProperties
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 Default for FailoverGroupUpdateProperties
impl Default for FailoverGroupUpdateProperties
Source§fn default() -> FailoverGroupUpdateProperties
fn default() -> FailoverGroupUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FailoverGroupUpdateProperties
impl<'de> Deserialize<'de> for FailoverGroupUpdateProperties
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 PartialEq for FailoverGroupUpdateProperties
impl PartialEq for FailoverGroupUpdateProperties
Source§fn eq(&self, other: &FailoverGroupUpdateProperties) -> bool
fn eq(&self, other: &FailoverGroupUpdateProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FailoverGroupUpdateProperties
Auto Trait Implementations§
impl Freeze for FailoverGroupUpdateProperties
impl RefUnwindSafe for FailoverGroupUpdateProperties
impl Send for FailoverGroupUpdateProperties
impl Sync for FailoverGroupUpdateProperties
impl Unpin for FailoverGroupUpdateProperties
impl UnwindSafe for FailoverGroupUpdateProperties
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