Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListHyperparameterTuningJobsResponse

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 JobService.ListHyperparameterTuningJobs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ListHyperparameterTuningJobsResponse

Returns a new instance of GoogleCloudAiplatformV1ListHyperparameterTuningJobsResponse.



13037
13038
13039
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13037

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hyperparameter_tuning_jobsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1HyperparameterTuningJob>

List of HyperparameterTuningJobs in the requested page. HyperparameterTuningJob.trials of the jobs will be not be returned. Corresponds to the JSON property hyperparameterTuningJobs



13029
13030
13031
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13029

def hyperparameter_tuning_jobs
  @hyperparameter_tuning_jobs
end

#next_page_tokenString

A token to retrieve the next page of results. Pass to ListHyperparameterTuningJobsRequest.page_token to obtain that page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


13035
13036
13037
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13035

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13042
13043
13044
13045
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13042

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