Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
The alert config for model monitoring.
Instance Attribute Summary collapse
-
#email_alert_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfigEmailAlertConfig
The config for email alert.
-
#enable_logging ⇒ Boolean
(also: #enable_logging?)
Dump the anomalies to Cloud Logging.
-
#notification_channels ⇒ Array<String>
Resource names of the NotificationChannels to send alert.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig.
16739 16740 16741 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16739 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email_alert_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfigEmailAlertConfig
The config for email alert.
Corresponds to the JSON property emailAlertConfig
16722 16723 16724 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16722 def email_alert_config @email_alert_config end |
#enable_logging ⇒ Boolean 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
16730 16731 16732 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16730 def enable_logging @enable_logging end |
#notification_channels ⇒ Array<String>
Resource names of the NotificationChannels to send alert. Must be of the
format projects//notificationChannels/
Corresponds to the JSON property notificationChannels
16737 16738 16739 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16737 def notification_channels @notification_channels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16744 16745 16746 16747 16748 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16744 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) @notification_channels = args[:notification_channels] if args.key?(:notification_channels) end |