Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse
- 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
-
#agent_aggregates ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponseAgentAggregate>
Aggregated statistics — exactly one entry per unique MonitoredAgent matched by the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#summary ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListAnalyzedSessionsResponseViewSummary
The view summary.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1AggregateAnalyzedSessionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_aggregates ⇒ Array<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_token ⇒ String
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
6940 6941 6942 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6940 def next_page_token @next_page_token end |
#summary ⇒ Google::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 |