[][src]Struct google_sqladmin1_beta4::ReplicaConfiguration

pub struct ReplicaConfiguration {
    pub kind: Option<String>,
    pub failover_target: Option<bool>,
    pub mysql_replica_configuration: Option<MySqlReplicaConfiguration>,
}

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

kind: Option<String>

This is always sql#replicaConfiguration.

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.

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

impl Part for ReplicaConfiguration[src]

impl Default for ReplicaConfiguration[src]

impl Clone for ReplicaConfiguration[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ReplicaConfiguration[src]

impl Serialize for ReplicaConfiguration[src]

impl<'de> Deserialize<'de> for ReplicaConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]