Struct gapi_grpc::google::cloud::aiplatform::v1beta1::featurestore_monitoring_config::SnapshotAnalysis[][src]

pub struct SnapshotAnalysis {
    pub disabled: bool,
    pub monitoring_interval: Option<Duration>,
}

Configuration of the Featurestore’s Snapshot Analysis Based Monitoring. This type of analysis generates statistics for each Feature based on a snapshot of the latest feature value of each entities every monitoring_interval.

Fields

disabled: bool

The monitoring schedule for snapshot analysis. For EntityType-level config: unset / disabled = true indicates disabled by default for Features under it; otherwise by default enable snapshot analysis monitoring with monitoring_interval for Features under it. Feature-level config: disabled = true indicates disabled regardless of the EntityType-level config; unset monitoring_interval indicates going with EntityType-level config; otherwise run snapshot analysis monitoring with monitoring_interval regardless of the EntityType-level config. Explicitly Disable the snapshot analysis based monitoring.

monitoring_interval: Option<Duration>

Configuration of the snapshot analysis based monitoring pipeline running interval. The value is rolled up to full day.

Trait Implementations

impl Clone for SnapshotAnalysis[src]

impl Debug for SnapshotAnalysis[src]

impl Default for SnapshotAnalysis[src]

impl Message for SnapshotAnalysis[src]

impl PartialEq<SnapshotAnalysis> for SnapshotAnalysis[src]

impl StructuralPartialEq for SnapshotAnalysis[src]

Auto Trait Implementations

impl RefUnwindSafe for SnapshotAnalysis

impl Send for SnapshotAnalysis

impl Sync for SnapshotAnalysis

impl Unpin for SnapshotAnalysis

impl UnwindSafe for SnapshotAnalysis

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]