pub struct GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis {
pub disabled: Option<bool>,
pub staleness_days: Option<i32>,
pub monitoring_interval_days: Option<i32>,
}Expand description
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.
This type is not used in any activity, and only used as part of another schema.
Fields§
§disabled: Option<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.
staleness_days: Option<i32>Customized export features time window for snapshot analysis. Unit is one day. Default value is 3 weeks. Minimum value is 1 day. Maximum value is 4000 days.
monitoring_interval_days: Option<i32>Configuration of the snapshot analysis based monitoring pipeline running interval. The value indicates number of days.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl Clone for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
Source§fn clone(
&self,
) -> GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
fn clone( &self, ) -> GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl Default for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
Source§fn default() -> GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
fn default() -> GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl RefUnwindSafe for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl Send for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl Sync for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl Unpin for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
impl UnwindSafe for GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more