Struct google_ml1_beta1::GoogleCloudMlV1beta1__PredictionInput [] [src]

pub struct GoogleCloudMlV1beta1__PredictionInput {
    pub output_path: Option<String>,
    pub model_name: Option<String>,
    pub data_format: Option<String>,
    pub version_name: Option<String>,
    pub input_paths: Option<Vec<String>>,
    pub max_worker_count: Option<i64>,
    pub region: Option<String>,
}

Represents input parameters for a prediction job.

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

Fields

Required. The output Google Cloud Storage location.

Use this field if you want to use the default version for the specified model. The string must use the following format:

"projects/<var>[YOUR_PROJECT]</var>/models/<var>[YOUR_MODEL]</var>"

Required. The format of the input data files.

Use this field if you want to specify a version of the model to use. The string is formatted the same way as model_version, with the addition of the version information:

"projects/<var>[YOUR_PROJECT]</var>/models/<var>YOUR_MODEL/versions/<var>[YOUR_VERSION]</var>"

Required. The Google Cloud Storage location of the input data files. May contain wildcards.

Optional. The maximum number of workers to be used for parallel processing. Defaults to 10 if not specified.

Required. The Google Compute Engine region to run the prediction job in.

Trait Implementations

impl Default for GoogleCloudMlV1beta1__PredictionInput
[src]

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

impl Clone for GoogleCloudMlV1beta1__PredictionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudMlV1beta1__PredictionInput
[src]

Formats the value using the given formatter.

impl Part for GoogleCloudMlV1beta1__PredictionInput
[src]