Struct google_ml1_beta1::GoogleCloudMlV1beta1__Version [] [src]

pub struct GoogleCloudMlV1beta1__Version {
    pub description: Option<String>,
    pub name: Option<String>,
    pub deployment_uri: Option<String>,
    pub create_time: Option<String>,
    pub is_default: Option<bool>,
    pub last_use_time: Option<String>,
}

Represents a version of the model.

Each version is a trained model deployed in the cloud, ready to handle prediction requests. A model can have multiple versions. You can get information about all of the versions of a given model by calling projects.models.versions.list.

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

Optional. The description specified for the version when it was created.

Required.The name specified for the version when it was created.

The version name must be unique within the model it is created in.

Required. The Google Cloud Storage location of the trained model used to create the version. See the overview of model deployment for more informaiton.

When passing Version to projects.models.versions.create the model service uses the specified location as the source of the model. Once deployed, the model version is hosted by the prediction service, so this location is useful only as a historical record.

Output only. The time the version was created.

Output only. If true, this version will be used to handle prediction requests that do not specify a version.

You can change the default version by calling projects.methods.versions.setDefault.

Output only. The time the version was last used for prediction.

Trait Implementations

impl Debug for GoogleCloudMlV1beta1__Version
[src]

Formats the value using the given formatter.

impl Clone for GoogleCloudMlV1beta1__Version
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for GoogleCloudMlV1beta1__Version
[src]

Returns the "default value" for a type. Read more

impl RequestValue for GoogleCloudMlV1beta1__Version
[src]

impl ResponseResult for GoogleCloudMlV1beta1__Version
[src]