Database Instance Replica Configuration Args
data class DatabaseInstanceReplicaConfigurationArgs(val caCertificate: Output<String>? = null, val clientCertificate: Output<String>? = null, val clientKey: Output<String>? = null, val connectRetryInterval: Output<Int>? = null, val dumpFilePath: Output<String>? = null, val failoverTarget: Output<Boolean>? = null, val masterHeartbeatPeriod: Output<Int>? = null, val password: Output<String>? = null, val sslCipher: Output<String>? = null, val username: Output<String>? = null, val verifyServerCertificate: Output<Boolean>? = null) : ConvertibleToJava<DatabaseInstanceReplicaConfigurationArgs>
Constructors
Link copied to clipboard
constructor(caCertificate: Output<String>? = null, clientCertificate: Output<String>? = null, clientKey: Output<String>? = null, connectRetryInterval: Output<Int>? = null, dumpFilePath: Output<String>? = null, failoverTarget: Output<Boolean>? = null, masterHeartbeatPeriod: Output<Int>? = null, password: Output<String>? = null, sslCipher: Output<String>? = null, username: Output<String>? = null, verifyServerCertificate: Output<Boolean>? = null)
Properties
Link copied to clipboard
PEM representation of the trusted CA's x509 certificate.
Link copied to clipboard
PEM representation of the replica's x509 certificate.
Link copied to clipboard
The number of seconds between connect retries. MySQL's default is 60 seconds.
Link copied to clipboard
Path to a SQL file in GCS from which replica instances are created. Format is gs://bucket/filename
.
Link copied to clipboard
Specifies if the replica is the failover target. If the field is set to true the replica will be designated as a failover replica. If the master instance fails, the replica instance will be promoted as the new master instance.
Link copied to clipboard
Time in ms between replication heartbeats.
Link copied to clipboard
True if the master's common name value is checked during the SSL handshake.