Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessmentDetectorFinding

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

The details of a detector's assessment within an analyzed session.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AssessmentDetectorFinding

Returns a new instance of GoogleCloudAiplatformV1beta1AssessmentDetectorFinding.



8850
8851
8852
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8850

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

Instance Attribute Details

#detector_idString

The detector ID. Corresponds to the JSON property detectorId

Returns:

  • (String)


8823
8824
8825
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8823

def detector_id
  @detector_id
end

#display_nameString

The detector display name. Corresponds to the JSON property displayName

Returns:

  • (String)


8828
8829
8830
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8828

def display_name
  @display_name
end

#explanationString

The explanation of the finding. Corresponds to the JSON property explanation

Returns:

  • (String)


8833
8834
8835
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8833

def explanation
  @explanation
end

#probabilityFloat

The probability that this finding is an anomaly, in the range [0.0, 1.0]. Corresponds to the JSON property probability

Returns:

  • (Float)


8838
8839
8840
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8838

def probability
  @probability
end

#recommendationsArray<String>

The list of recommendations for this detector finding. Corresponds to the JSON property recommendations

Returns:

  • (Array<String>)


8843
8844
8845
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8843

def recommendations
  @recommendations
end

#severityString

The severity of the finding. Corresponds to the JSON property severity

Returns:

  • (String)


8848
8849
8850
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8848

def severity
  @severity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8855
8856
8857
8858
8859
8860
8861
8862
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8855

def update!(**args)
  @detector_id = args[:detector_id] if args.key?(:detector_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @explanation = args[:explanation] if args.key?(:explanation)
  @probability = args[:probability] if args.key?(:probability)
  @recommendations = args[:recommendations] if args.key?(:recommendations)
  @severity = args[:severity] if args.key?(:severity)
end