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.



12442
12443
12444
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12442

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



12425
12426
12427
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12425

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)


12433
12434
12435
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12433

def enable_logging
  @enable_logging
end

#notification_channelsArray<String>

Resource names of the NotificationChannels to send alert. Must be of the format projects//notificationChannels/ Corresponds to the JSON property notificationChannels

Returns:

  • (Array<String>)


12440
12441
12442
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12440

def notification_channels
  @notification_channels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12447
12448
12449
12450
12451
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12447

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