Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AnalyzedSessionSeveritySummary
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AnalyzedSessionSeveritySummary
- 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
Breaks down anomalies by severity.
Instance Attribute Summary collapse
-
#detector_ids ⇒ Array<String>
The list of detectors summaries for this severity level.
-
#sessions_count ⇒ Fixnum
Output only.
-
#severity_level ⇒ String
The severity level of the detector.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AnalyzedSessionSeveritySummary
constructor
A new instance of GoogleCloudAiplatformV1beta1AnalyzedSessionSeveritySummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AnalyzedSessionSeveritySummary
Returns a new instance of GoogleCloudAiplatformV1beta1AnalyzedSessionSeveritySummary.
8495 8496 8497 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8495 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detector_ids ⇒ Array<String>
The list of detectors summaries for this severity level.
Corresponds to the JSON property detectorIds
8479 8480 8481 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8479 def detector_ids @detector_ids end |
#sessions_count ⇒ Fixnum
Output only. The number of distinct sessions whose maximum severity equals
severity_level. Each session is counted in exactly one bucket (its highest
severity). Scope depends on where this appears: a global count on
AggregateAnalyzedSessionsResponse.summary, per-agent on agent_aggregates
entries, and page-scoped on ListAnalyzedSessionsResponse.
Corresponds to the JSON property sessionsCount
8488 8489 8490 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8488 def sessions_count @sessions_count end |
#severity_level ⇒ String
The severity level of the detector.
Corresponds to the JSON property severityLevel
8493 8494 8495 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8493 def severity_level @severity_level end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8500 8501 8502 8503 8504 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8500 def update!(**args) @detector_ids = args[:detector_ids] if args.key?(:detector_ids) @sessions_count = args[:sessions_count] if args.key?(:sessions_count) @severity_level = args[:severity_level] if args.key?(:severity_level) end |