pub struct DemoteMasterMySqlReplicaConfiguration {
pub ca_certificate: Option<String>,
pub client_certificate: Option<String>,
pub client_key: Option<String>,
pub kind: Option<String>,
pub password: Option<String>,
pub username: Option<String>,
}Expand description
Read-replica configuration specific to MySQL databases.
This type is not used in any activity, and only used as part of another schema.
Fields§
§ca_certificate: Option<String>PEM representation of the trusted CA’s x509 certificate.
client_certificate: Option<String>PEM representation of the slave’s x509 certificate.
client_key: Option<String>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.
kind: Option<String>This is always sql#demoteMasterMysqlReplicaConfiguration.
password: Option<String>The password for the replication connection.
username: Option<String>The username for the replication connection.
Trait Implementations§
source§impl Clone for DemoteMasterMySqlReplicaConfiguration
impl Clone for DemoteMasterMySqlReplicaConfiguration
source§fn clone(&self) -> DemoteMasterMySqlReplicaConfiguration
fn clone(&self) -> DemoteMasterMySqlReplicaConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for DemoteMasterMySqlReplicaConfiguration
impl Default for DemoteMasterMySqlReplicaConfiguration
source§fn default() -> DemoteMasterMySqlReplicaConfiguration
fn default() -> DemoteMasterMySqlReplicaConfiguration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DemoteMasterMySqlReplicaConfiguration
impl<'de> Deserialize<'de> for DemoteMasterMySqlReplicaConfiguration
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more