Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringAnomalyTabularAnomaly.



19105
19106
19107
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19105

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

Instance Attribute Details

#anomalyObject

Anomaly body. Corresponds to the JSON property anomaly

Returns:

  • (Object)


19083
19084
19085
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19083

def anomaly
  @anomaly
end

#anomaly_uriString

Additional anomaly information. e.g. Google Cloud Storage uri. Corresponds to the JSON property anomalyUri

Returns:

  • (String)


19088
19089
19090
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19088

def anomaly_uri
  @anomaly_uri
end

#conditionGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlertCondition

Monitoring alert triggered condition. Corresponds to the JSON property condition



19093
19094
19095
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19093

def condition
  @condition
end

#summaryString

Overview of this anomaly. Corresponds to the JSON property summary

Returns:

  • (String)


19098
19099
19100
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19098

def summary
  @summary
end

#trigger_timeString

The time the anomaly was triggered. Corresponds to the JSON property triggerTime

Returns:

  • (String)


19103
19104
19105
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19103

def trigger_time
  @trigger_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



19110
19111
19112
19113
19114
19115
19116
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19110

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