Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse
- 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 JobService.ListHyperparameterTuningJobs
Instance Attribute Summary collapse
-
#hyperparameter_tuning_jobs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1HyperparameterTuningJob>
List of HyperparameterTuningJobs in the requested page.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse.
13601 13602 13603 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13601 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hyperparameter_tuning_jobs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1HyperparameterTuningJob>
List of HyperparameterTuningJobs in the requested page.
HyperparameterTuningJob.trials of the jobs will be not be returned.
Corresponds to the JSON property hyperparameterTuningJobs
13593 13594 13595 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13593 def hyperparameter_tuning_jobs @hyperparameter_tuning_jobs end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass to
ListHyperparameterTuningJobsRequest.page_token to obtain that page.
Corresponds to the JSON property nextPageToken
13599 13600 13601 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13599 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13606 13607 13608 13609 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13606 def update!(**args) @hyperparameter_tuning_jobs = args[:hyperparameter_tuning_jobs] if args.key?(:hyperparameter_tuning_jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |