pub struct ReplicaConfiguration {
pub failover_target: Option<bool>,
pub kind: Option<String>,
pub mysql_replica_configuration: Option<MySqlReplicaConfiguration>,
}
Expand description
Read-replica configuration for connecting to the master.
This type is not used in any activity, and only used as part of another schema.
Fields§
§failover_target: Option<bool>
Specifies if the replica is the failover target. If the field is set to
true
the replica will be designated as a failover replica. In
case the master instance fails, the replica instance will be promoted as
the new master instance.
Only one replica can be specified as failover target, and the replica has to be in different zone with the master instance.
kind: Option<String>
This is always sql#replicaConfiguration
.
mysql_replica_configuration: Option<MySqlReplicaConfiguration>
MySQL specific configuration when replicating from a MySQL on-premises
master. Replication configuration information such as the username,
password, certificates, and keys are not stored in the instance metadata.
The configuration information is used only to set up the replication
connection and is stored by MySQL in a file named master.info
in the data directory.
Trait Implementations§
Source§impl Clone for ReplicaConfiguration
impl Clone for ReplicaConfiguration
Source§fn clone(&self) -> ReplicaConfiguration
fn clone(&self) -> ReplicaConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ReplicaConfiguration
impl Debug for ReplicaConfiguration
Source§impl Default for ReplicaConfiguration
impl Default for ReplicaConfiguration
Source§fn default() -> ReplicaConfiguration
fn default() -> ReplicaConfiguration
Source§impl<'de> Deserialize<'de> for ReplicaConfiguration
impl<'de> Deserialize<'de> for ReplicaConfiguration
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>,
Source§impl Serialize for ReplicaConfiguration
impl Serialize for ReplicaConfiguration
impl Part for ReplicaConfiguration
Auto Trait Implementations§
impl Freeze for ReplicaConfiguration
impl RefUnwindSafe for ReplicaConfiguration
impl Send for ReplicaConfiguration
impl Sync for ReplicaConfiguration
impl Unpin for ReplicaConfiguration
impl UnwindSafe for ReplicaConfiguration
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more