Show / Hide Table of Contents

Class MySqlReplicaConfiguration

Read-replica configuration specific to MySQL databases.

Inheritance
System.Object
MySqlReplicaConfiguration
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
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
System.String

ClientCertificate

PEM representation of the replica's x509 certificate.

Declaration
[JsonProperty("clientCertificate")]
public virtual string ClientCertificate { get; set; }
Property Value
Type Description
System.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
System.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
System.Nullable<System.Int32>

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
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

This is always sql#mysqlReplicaConfiguration.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

MasterHeartbeatPeriod

Interval in milliseconds between replication heartbeats.

Declaration
[JsonProperty("masterHeartbeatPeriod")]
public virtual long? MasterHeartbeatPeriod { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Password

The password for the replication connection.

Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
Type Description
System.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
System.String

Username

The username for the replication connection.

Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
Type Description
System.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
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top