Struct gapi_grpc::google::cloud::aiplatform::v1beta1::ModelDeploymentMonitoringBigQueryTable[][src]

pub struct ModelDeploymentMonitoringBigQueryTable {
    pub log_source: i32,
    pub log_type: i32,
    pub bigquery_table_path: String,
}

ModelDeploymentMonitoringBigQueryTable specifies the BigQuery table name as well as some information of the logs stored in this table.

Fields

log_source: i32

The source of log.

log_type: i32

The type of log.

bigquery_table_path: String

The created BigQuery table to store logs. Customer could do their own query & analysis. Format: bq://<project_id>.model_deployment_monitoring_<endpoint_id>.<tolower(log_source)>_<tolower(log_type)>

Implementations

impl ModelDeploymentMonitoringBigQueryTable[src]

pub fn log_source(&self) -> LogSource[src]

Returns the enum value of log_source, or the default if the field is set to an invalid enum value.

pub fn set_log_source(&mut self, value: LogSource)[src]

Sets log_source to the provided enum value.

pub fn log_type(&self) -> LogType[src]

Returns the enum value of log_type, or the default if the field is set to an invalid enum value.

pub fn set_log_type(&mut self, value: LogType)[src]

Sets log_type to the provided enum value.

Trait Implementations

impl Clone for ModelDeploymentMonitoringBigQueryTable[src]

impl Debug for ModelDeploymentMonitoringBigQueryTable[src]

impl Default for ModelDeploymentMonitoringBigQueryTable[src]

impl Message for ModelDeploymentMonitoringBigQueryTable[src]

impl PartialEq<ModelDeploymentMonitoringBigQueryTable> for ModelDeploymentMonitoringBigQueryTable[src]

impl StructuralPartialEq for ModelDeploymentMonitoringBigQueryTable[src]

Auto Trait Implementations

impl RefUnwindSafe for ModelDeploymentMonitoringBigQueryTable

impl Send for ModelDeploymentMonitoringBigQueryTable

impl Sync for ModelDeploymentMonitoringBigQueryTable

impl Unpin for ModelDeploymentMonitoringBigQueryTable

impl UnwindSafe for ModelDeploymentMonitoringBigQueryTable

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]