Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse

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

Response containing aggregated AnalyzedSession statistics, grouped by MonitoredAgent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse

Returns a new instance of GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse.



6947
6948
6949
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6947

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

Instance Attribute Details

#agent_aggregatesArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponseAgentAggregate>

Aggregated statistics — exactly one entry per unique MonitoredAgent matched by the request. Corresponds to the JSON property agentAggregates



6934
6935
6936
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6934

def agent_aggregates
  @agent_aggregates
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6940
6941
6942
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6940

def next_page_token
  @next_page_token
end

#summaryGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListAnalyzedSessionsResponseViewSummary

The view summary. Corresponds to the JSON property summary



6945
6946
6947
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6945

def summary
  @summary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6952
6953
6954
6955
6956
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6952

def update!(**args)
  @agent_aggregates = args[:agent_aggregates] if args.key?(:agent_aggregates)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @summary = args[:summary] if args.key?(:summary)
end