Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSpec
- 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
Monitoring monitoring job spec. It outlines the specifications for monitoring objectives, notifications, and result exports.
Instance Attribute Summary collapse
-
#notification_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringNotificationSpec
Notification spec(email, notification channel) for model monitoring statistics/ alerts.
-
#objective_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec
Monitoring objectives spec.
-
#output_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringOutputSpec
Specification for the export destination of monitoring results, including metrics, logs, etc.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringSpec
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringSpec
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringSpec.
17844 17845 17846 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17844 def initialize(**args) update!(**args) end |
Instance Attribute Details
#notification_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringNotificationSpec
Notification spec(email, notification channel) for model monitoring statistics/
alerts.
Corresponds to the JSON property notificationSpec
17831 17832 17833 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17831 def notification_spec @notification_spec end |
#objective_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveSpec
Monitoring objectives spec.
Corresponds to the JSON property objectiveSpec
17836 17837 17838 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17836 def objective_spec @objective_spec end |
#output_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringOutputSpec
Specification for the export destination of monitoring results, including
metrics, logs, etc.
Corresponds to the JSON property outputSpec
17842 17843 17844 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17842 def output_spec @output_spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17849 17850 17851 17852 17853 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17849 def update!(**args) @notification_spec = args[:notification_spec] if args.key?(:notification_spec) @objective_spec = args[:objective_spec] if args.key?(:objective_spec) @output_spec = args[:output_spec] if args.key?(:output_spec) end |