Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListOnlineEvaluatorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListOnlineEvaluatorsResponse
- 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 message for ListOnlineEvaluators.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve the next page.
-
#online_evaluators ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1OnlineEvaluator>
A list of OnlineEvaluators matching the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListOnlineEvaluatorsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ListOnlineEvaluatorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListOnlineEvaluatorsResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ListOnlineEvaluatorsResponse.
24197 24198 24199 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24197 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve the next page. Absence of this field indicates there are
no subsequent pages.
Corresponds to the JSON property nextPageToken
24190 24191 24192 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24190 def next_page_token @next_page_token end |
#online_evaluators ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1OnlineEvaluator>
A list of OnlineEvaluators matching the request.
Corresponds to the JSON property onlineEvaluators
24195 24196 24197 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24195 def online_evaluators @online_evaluators end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24202 24203 24204 24205 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24202 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 |