Struct google_sqladmin1_beta4::ReplicaConfiguration[][src]

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

This is always sql#replicaConfiguration.

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 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 Default for ReplicaConfiguration
[src]

Returns the "default value" for a type. Read more

impl Clone for ReplicaConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReplicaConfiguration
[src]

Formats the value using the given formatter. Read more

impl Part for ReplicaConfiguration
[src]

Auto Trait Implementations