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.



21602
21603
21604
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21602

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)


21595
21596
21597
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21595

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



21600
21601
21602
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21600

def online_evaluators
  @online_evaluators
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21607
21608
21609
21610
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21607

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