Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelMonitoringAlertConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ModelMonitoringAlertConfig

Returns a new instance of GoogleCloudAiplatformV1ModelMonitoringAlertConfig.



10899
10900
10901
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10899

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#email_alert_configGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelMonitoringAlertConfigEmailAlertConfig

The config for email alert. Corresponds to the JSON property emailAlertConfig



10888
10889
10890
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10888

def email_alert_config
  @email_alert_config
end

#enable_loggingBoolean Also known as: enable_logging?

Dump the anomalies to Cloud Logging. The anomalies will be put to json payload encoded from proto google.cloud.aiplatform.logging. ModelMonitoringAnomaliesLogEntry. This can be further sinked to Pub/Sub or any other services supported by Cloud Logging. Corresponds to the JSON property enableLogging

Returns:

  • (Boolean)


10896
10897
10898
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10896

def enable_logging
  @enable_logging
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10904
10905
10906
10907
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10904

def update!(**args)
  @email_alert_config = args[:email_alert_config] if args.key?(:email_alert_config)
  @enable_logging = args[:enable_logging] if args.key?(:enable_logging)
end