[][src]Struct gcp_client::google::cloud::bigquery::connection::v1beta1::Connection

pub struct Connection {
    pub name: String,
    pub friendly_name: String,
    pub description: String,
    pub creation_time: i64,
    pub last_modified_time: i64,
    pub has_credential: bool,
    pub properties: Option<Properties>,
}

Configuration parameters to establish connection with an external data source, except the credential attributes.

Fields

name: String

The resource name of the connection in the form of: projects/{project_id}/locations/{location_id}/connections/{connection_id}

friendly_name: String

User provided display name for the connection.

description: String

User provided description.

creation_time: i64

Output only. The creation timestamp of the connection.

last_modified_time: i64

Output only. The last update timestamp of the connection.

has_credential: bool

Output only. True, if credential is configured for this connection.

properties: Option<Properties>

Properties specific to the underlying data source.

Trait Implementations

impl Clone for Connection[src]

impl Debug for Connection[src]

impl Default for Connection[src]

impl Message for Connection[src]

impl PartialEq<Connection> for Connection[src]

impl StructuralPartialEq for Connection[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> 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> 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>, 

impl<T> WithSubscriber for T[src]