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.



22000
22001
22002
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22000

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)


21993
21994
21995
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21993

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



21998
21999
22000
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21998

def online_evaluators
  @online_evaluators
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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