[][src]Struct google_bigquery2::Model

pub struct Model {
    pub labels: Option<HashMap<String, String>>,
    pub description: Option<String>,
    pub model_reference: Option<ModelReference>,
    pub feature_columns: Option<Vec<StandardSqlField>>,
    pub label_columns: Option<Vec<StandardSqlField>>,
    pub creation_time: Option<String>,
    pub model_type: Option<String>,
    pub training_runs: Option<Vec<TrainingRun>>,
    pub etag: Option<String>,
    pub location: Option<String>,
    pub friendly_name: Option<String>,
    pub expiration_time: Option<String>,
    pub last_modified_time: Option<String>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

labels: Option<HashMap<String, String>>

[Optional] The labels associated with this model. You can use these to organize and group your models. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.

description: Option<String>

[Optional] A user-friendly description of this model.

model_reference: Option<ModelReference>

Required. Unique identifier for this model.

feature_columns: Option<Vec<StandardSqlField>>

Output only. Input feature columns that were used to train this model.

label_columns: Option<Vec<StandardSqlField>>

Output only. Label columns that were used to train this model. The output of the model will have a "predicted_" prefix to these columns.

creation_time: Option<String>

Output only. The time when this model was created, in millisecs since the epoch.

model_type: Option<String>

Output only. Type of the model resource.

training_runs: Option<Vec<TrainingRun>>

Output only. Information for all training runs in increasing order of start_time.

etag: Option<String>

Output only. A hash of this resource.

location: Option<String>

Output only. The geographic location where the model resides. This value is inherited from the dataset.

friendly_name: Option<String>

[Optional] A descriptive name for this model.

expiration_time: Option<String>

[Optional] The time when this model expires, in milliseconds since the epoch. If not present, the model will persist indefinitely. Expired models will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created models.

last_modified_time: Option<String>

Output only. The time when this model was last modified, in millisecs since the epoch.

Trait Implementations

impl Resource for Model[src]

impl ResponseResult for Model[src]

impl RequestValue for Model[src]

impl Default for Model[src]

impl Clone for Model[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Model[src]

impl Serialize for Model[src]

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

Auto Trait Implementations

impl Send for Model

impl Unpin for Model

impl Sync for Model

impl UnwindSafe for Model

impl RefUnwindSafe for Model

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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