Struct gapi_grpc::google::cloud::sql::v1beta4::OnPremisesConfiguration[][src]

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

On-premises instance configuration.

Fields

host_port: String

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

kind: String

This is always sql#onPremisesConfiguration.

username: String

The username for connecting to on-premises instance.

password: String

The password for connecting to on-premises instance.

ca_certificate: String

PEM representation of the trusted CA’s x509 certificate.

client_certificate: String

PEM representation of the replica’s x509 certificate.

client_key: String

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

dump_file_path: String

The dump file to create the Cloud SQL replica.

Trait Implementations

impl Clone for OnPremisesConfiguration[src]

impl Debug for OnPremisesConfiguration[src]

impl Default for OnPremisesConfiguration[src]

impl Message for OnPremisesConfiguration[src]

impl PartialEq<OnPremisesConfiguration> for OnPremisesConfiguration[src]

impl StructuralPartialEq for OnPremisesConfiguration[src]

Auto Trait Implementations

impl RefUnwindSafe for OnPremisesConfiguration

impl Send for OnPremisesConfiguration

impl Sync for OnPremisesConfiguration

impl Unpin for OnPremisesConfiguration

impl UnwindSafe for OnPremisesConfiguration

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]