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.



6769
6770
6771
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6769

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



6756
6757
6758
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6756

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)


6762
6763
6764
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6762

def next_page_token
  @next_page_token
end

#summaryGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListAnalyzedSessionsResponseViewSummary

The view summary. Corresponds to the JSON property summary



6767
6768
6769
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6767

def summary
  @summary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6774
6775
6776
6777
6778
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6774

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