Struct google_sqladmin1_beta4::DemoteMasterMySqlReplicaConfiguration[][src]

pub struct DemoteMasterMySqlReplicaConfiguration {
    pub username: Option<String>,
    pub kind: Option<String>,
    pub client_certificate: Option<String>,
    pub ca_certificate: Option<String>,
    pub password: Option<String>,
    pub client_key: Option<String>,
}

Read-replica configuration specific to MySQL databases.

This type is not used in any activity, and only used as part of another schema.

Fields

The username for the replication connection.

This is always sql#demoteMasterMysqlReplicaConfiguration.

PEM representation of the slave's x509 certificate.

PEM representation of the trusted CA's x509 certificate.

The password for the replication connection.

PEM representation of the slave's private key. The corresponsing public key is encoded in the client's certificate. The format of the slave's private key can be either PKCS #1 or PKCS #8.

Trait Implementations

impl Default for DemoteMasterMySqlReplicaConfiguration
[src]

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

impl Clone for DemoteMasterMySqlReplicaConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DemoteMasterMySqlReplicaConfiguration
[src]

Formats the value using the given formatter. Read more

impl Part for DemoteMasterMySqlReplicaConfiguration
[src]

Auto Trait Implementations