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.



22013
22014
22015
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22013

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)


22006
22007
22008
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22006

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



22011
22012
22013
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22011

def online_evaluators
  @online_evaluators
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22018
22019
22020
22021
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22018

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