Struct google_datamigration1::api::CloudSqlConnectionProfile[][src]

pub struct CloudSqlConnectionProfile {
    pub cloud_sql_id: Option<String>,
    pub private_ip: Option<String>,
    pub public_ip: Option<String>,
    pub settings: Option<CloudSqlSettings>,
}

Specifies required connection parameters, and, optionally, the parameters required to create a Cloud SQL destination database instance.

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

Fields

cloud_sql_id: Option<String>

Output only. The Cloud SQL instance ID that this connection profile is associated with.

private_ip: Option<String>

Output only. The Cloud SQL database instance's private IP.

public_ip: Option<String>

Output only. The Cloud SQL database instance's public IP.

settings: Option<CloudSqlSettings>

Immutable. Metadata used to create the destination Cloud SQL database.

Trait Implementations

impl Clone for CloudSqlConnectionProfile[src]

impl Debug for CloudSqlConnectionProfile[src]

impl Default for CloudSqlConnectionProfile[src]

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

impl Part for CloudSqlConnectionProfile[src]

impl Serialize for CloudSqlConnectionProfile[src]

Auto Trait Implementations

impl RefUnwindSafe for CloudSqlConnectionProfile[src]

impl Send for CloudSqlConnectionProfile[src]

impl Sync for CloudSqlConnectionProfile[src]

impl Unpin for CloudSqlConnectionProfile[src]

impl UnwindSafe for CloudSqlConnectionProfile[src]

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> Instrument 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.