Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListOnlineEvaluatorsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Response message for ListOnlineEvaluators.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ListOnlineEvaluatorsResponse

Returns a new instance of GoogleCloudAiplatformV1ListOnlineEvaluatorsResponse.



22825
22826
22827
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22825

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

Instance Attribute Details

#next_page_tokenString

A token to retrieve the next page. Absence of this field indicates there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


22818
22819
22820
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22818

def next_page_token
  @next_page_token
end

#online_evaluatorsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1OnlineEvaluator>

A list of OnlineEvaluators matching the request. Corresponds to the JSON property onlineEvaluators



22823
22824
22825
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22823

def online_evaluators
  @online_evaluators
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22830
22831
22832
22833
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22830

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