Struct gapi_grpc::google::cloud::aiplatform::v1beta1::schema::trainingjob::definition::ExportEvaluatedDataItemsConfig[][src]

pub struct ExportEvaluatedDataItemsConfig {
    pub destination_bigquery_uri: String,
    pub override_existing_table: bool,
}

Configuration for exporting test set predictions to a BigQuery table.

Fields

destination_bigquery_uri: String

URI of desired destination BigQuery table. Expected format: bq://<project_id>:<dataset_id>:

If not specified, then results are exported to the following auto-created BigQuery table:

<project_id>:export_evaluated_examples_<model_name>_<yyyy_MM_dd’T’HH_mm_ss_SSS’Z’>.evaluated_examples

override_existing_table: bool

If true and an export destination is specified, then the contents of the destination are overwritten. Otherwise, if the export destination already exists, then the export operation fails.

Trait Implementations

impl Clone for ExportEvaluatedDataItemsConfig[src]

impl Debug for ExportEvaluatedDataItemsConfig[src]

impl Default for ExportEvaluatedDataItemsConfig[src]

impl Message for ExportEvaluatedDataItemsConfig[src]

impl PartialEq<ExportEvaluatedDataItemsConfig> for ExportEvaluatedDataItemsConfig[src]

impl StructuralPartialEq for ExportEvaluatedDataItemsConfig[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> 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>, 
[src]

impl<T> WithSubscriber for T[src]