Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly
- 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
Tabular anomaly details.
Instance Attribute Summary collapse
-
#anomaly ⇒ Object
Anomaly body.
-
#anomaly_uri ⇒ String
Additional anomaly information.
-
#condition ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition
Monitoring alert triggered condition.
-
#summary ⇒ String
Overview of this anomaly.
-
#trigger_time ⇒ String
The time the anomaly was triggered.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly.
16527 16528 16529 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16527 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anomaly ⇒ Object
Anomaly body.
Corresponds to the JSON property anomaly
16505 16506 16507 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16505 def anomaly @anomaly end |
#anomaly_uri ⇒ String
Additional anomaly information. e.g. Google Cloud Storage uri.
Corresponds to the JSON property anomalyUri
16510 16511 16512 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16510 def anomaly_uri @anomaly_uri end |
#condition ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition
Monitoring alert triggered condition.
Corresponds to the JSON property condition
16515 16516 16517 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16515 def condition @condition end |
#summary ⇒ String
Overview of this anomaly.
Corresponds to the JSON property summary
16520 16521 16522 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16520 def summary @summary end |
#trigger_time ⇒ String
The time the anomaly was triggered.
Corresponds to the JSON property triggerTime
16525 16526 16527 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16525 def trigger_time @trigger_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16532 16533 16534 16535 16536 16537 16538 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16532 def update!(**args) @anomaly = args[:anomaly] if args.key?(:anomaly) @anomaly_uri = args[:anomaly_uri] if args.key?(:anomaly_uri) @condition = args[:condition] if args.key?(:condition) @summary = args[:summary] if args.key?(:summary) @trigger_time = args[:trigger_time] if args.key?(:trigger_time) end |