pub struct GoogleCloudAiplatformV1beta1ModelMonitoringConfig {
pub stats_anomalies_base_directory: Option<GoogleCloudAiplatformV1beta1GcsDestination>,
pub alert_config: Option<GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig>,
pub analysis_instance_schema_uri: Option<String>,
pub objective_configs: Option<Vec<GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfig>>,
}Expand description
The model monitoring configuration used for Batch Prediction Job.
This type is not used in any activity, and only used as part of another schema.
Fields§
§stats_anomalies_base_directory: Option<GoogleCloudAiplatformV1beta1GcsDestination>A Google Cloud Storage location for batch prediction model monitoring to dump statistics and anomalies. If not provided, a folder will be created in customer project to hold statistics and anomalies.
alert_config: Option<GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig>Model monitoring alert config.
analysis_instance_schema_uri: Option<String>YAML schema file uri in Cloud Storage describing the format of a single instance that you want Tensorflow Data Validation (TFDV) to analyze. If there are any data type differences between predict instance and TFDV instance, this field can be used to override the schema. For models trained with Vertex AI, this field must be set as all the fields in predict instance formatted as string.
objective_configs: Option<Vec<GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfig>>Model monitoring objective config.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl Clone for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
Source§fn clone(&self) -> GoogleCloudAiplatformV1beta1ModelMonitoringConfig
fn clone(&self) -> GoogleCloudAiplatformV1beta1ModelMonitoringConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl Default for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
Source§fn default() -> GoogleCloudAiplatformV1beta1ModelMonitoringConfig
fn default() -> GoogleCloudAiplatformV1beta1ModelMonitoringConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
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 GoogleCloudAiplatformV1beta1ModelMonitoringConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl RefUnwindSafe for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl Send for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl Sync for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl Unpin for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
impl UnwindSafe for GoogleCloudAiplatformV1beta1ModelMonitoringConfig
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