[][src]Struct google_sql1_beta4::OnPremisesConfiguration

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

On-premises instance configuration.

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

Fields

username: Option<String>

The username for connecting to on-premises instance.

kind: Option<String>

This is always sql#onPremisesConfiguration.

client_key: Option<String>

PEM representation of the slave's private key. The corresponsing public key is encoded in the client's certificate.

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.

dump_file_path: Option<String>

The dump file to create the Cloud SQL replica.

host_port: Option<String>

The host and port of the on-premises instance in host:port format

password: Option<String>

The password for connecting to on-premises instance.

Trait Implementations

impl Clone for OnPremisesConfiguration[src]

impl Debug for OnPremisesConfiguration[src]

impl Default for OnPremisesConfiguration[src]

impl<'de> Deserialize<'de> for OnPremisesConfiguration[src]

impl Part for OnPremisesConfiguration[src]

impl Serialize for OnPremisesConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any