ReplicaConfigurationArgs

data class ReplicaConfigurationArgs(val failoverTarget: Output<Boolean>? = null, val kind: Output<String>? = null, val mysqlReplicaConfiguration: Output<MySqlReplicaConfigurationArgs>? = null) : ConvertibleToJava<ReplicaConfigurationArgs>

Read-replica configuration for connecting to the primary instance.

Constructors

Link copied to clipboard
fun ReplicaConfigurationArgs(failoverTarget: Output<Boolean>? = null, kind: Output<String>? = null, mysqlReplicaConfiguration: Output<MySqlReplicaConfigurationArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ReplicaConfigurationArgs

Properties

Link copied to clipboard
val failoverTarget: Output<Boolean>? = null

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 primary instance fails, the replica instance will be promoted as the new primary instance. Only one replica can be specified as failover target, and the replica has to be in different zone with the primary instance.

Link copied to clipboard
val kind: Output<String>? = null

This is always sql#replicaConfiguration.

Link copied to clipboard

MySQL specific configuration when replicating from a MySQL on-premises primary instance. 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.