Struct google_ml1::GoogleCloudMlV1__Job[][src]

pub struct GoogleCloudMlV1__Job {
    pub training_input: Option<GoogleCloudMlV1__TrainingInput>,
    pub start_time: Option<String>,
    pub error_message: Option<String>,
    pub job_id: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub state: Option<String>,
    pub training_output: Option<GoogleCloudMlV1__TrainingOutput>,
    pub etag: Option<String>,
    pub prediction_input: Option<GoogleCloudMlV1__PredictionInput>,
    pub end_time: Option<String>,
    pub prediction_output: Option<GoogleCloudMlV1__PredictionOutput>,
    pub create_time: Option<String>,
}

Represents a training or prediction job.

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

Input parameters to create a training job.

Output only. When the job processing was started.

Output only. The details of a failure or a cancellation.

Required. The user-specified id of the job.

Optional. One or more labels that you can add, to organize your jobs. Each label is a key-value pair, where both the key and the value are arbitrary strings that you supply. For more information, see the documentation on using labels.

Output only. The detailed state of a job.

The current training job result.

etag is used for optimistic concurrency control as a way to help prevent simultaneous updates of a job from overwriting each other. It is strongly suggested that systems make use of the etag in the read-modify-write cycle to perform job updates in order to avoid race conditions: An etag is returned in the response to GetJob, and systems are expected to put that etag in the request to UpdateJob to ensure that their change will be applied to the same version of the job.

Input parameters to create a prediction job.

Output only. When the job processing was completed.

The current prediction job result.

Output only. When the job was created.

Trait Implementations

impl Default for GoogleCloudMlV1__Job
[src]

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

impl Clone for GoogleCloudMlV1__Job
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudMlV1__Job
[src]

Formats the value using the given formatter. Read more

impl RequestValue for GoogleCloudMlV1__Job
[src]

impl ResponseResult for GoogleCloudMlV1__Job
[src]

Auto Trait Implementations