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.
7480 7481 7482 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7480 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
7464 7465 7466 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7464 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
7473 7474 7475 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7473 def sessions_count @sessions_count end |
#severity_level ⇒ String
The severity level of the detector.
Corresponds to the JSON property severityLevel
7478 7479 7480 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7478 def severity_level @severity_level end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7485 7486 7487 7488 7489 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7485 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 |