Class MySqlReplicaConfiguration
Read-replica configuration specific to MySQL databases.
Implements
Inherited Members
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class MySqlReplicaConfiguration : IDirectResponseSchema
Properties
CaCertificate
PEM representation of the trusted CA's x509 certificate.
Declaration
[JsonProperty("caCertificate")]
public virtual string CaCertificate { get; set; }
Property Value
Type | Description |
---|---|
string |
ClientCertificate
PEM representation of the replica's x509 certificate.
Declaration
[JsonProperty("clientCertificate")]
public virtual string ClientCertificate { get; set; }
Property Value
Type | Description |
---|---|
string |
ClientKey
PEM representation of the replica's private key. The corresponsing public key is encoded in the client's certificate.
Declaration
[JsonProperty("clientKey")]
public virtual string ClientKey { get; set; }
Property Value
Type | Description |
---|---|
string |
ConnectRetryInterval
Seconds to wait between connect retries. MySQL's default is 60 seconds.
Declaration
[JsonProperty("connectRetryInterval")]
public virtual int? ConnectRetryInterval { get; set; }
Property Value
Type | Description |
---|---|
int? |
DumpFilePath
Path to a SQL dump file in Google Cloud Storage from which the replica instance is to be created. The URI is in the form gs://bucketName/fileName. Compressed gzip files (.gz) are also supported. Dumps have the binlog co-ordinates from which replication begins. This can be accomplished by setting --master-data to 1 when using mysqldump.
Declaration
[JsonProperty("dumpFilePath")]
public virtual string DumpFilePath { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Kind
This is always sql#mysqlReplicaConfiguration
.
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
MasterHeartbeatPeriod
Interval in milliseconds between replication heartbeats.
Declaration
[JsonProperty("masterHeartbeatPeriod")]
public virtual long? MasterHeartbeatPeriod { get; set; }
Property Value
Type | Description |
---|---|
long? |
Password
The password for the replication connection.
Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
Type | Description |
---|---|
string |
SslCipher
A list of permissible ciphers to use for SSL encryption.
Declaration
[JsonProperty("sslCipher")]
public virtual string SslCipher { get; set; }
Property Value
Type | Description |
---|---|
string |
Username
The username for the replication connection.
Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
Type | Description |
---|---|
string |
VerifyServerCertificate
Whether or not to check the primary instance's Common Name value in the certificate that it sends during the SSL handshake.
Declaration
[JsonProperty("verifyServerCertificate")]
public virtual bool? VerifyServerCertificate { get; set; }
Property Value
Type | Description |
---|---|
bool? |