class Google::Apis::MlV1::GoogleCloudMlV1SuggestTrialsResponse
This message will be placed in the response field of a completed google. longrunning.Operation associated with a SuggestTrials request.
Attributes
end_time[RW]
The time at which operation processing completed. Corresponds to the JSON property `endTime` @return [String]
start_time[RW]
The time at which the operation was started. Corresponds to the JSON property `startTime` @return [String]
study_state[RW]
The state of the study. Corresponds to the JSON property `studyState` @return [String]
trials[RW]
A list of trials. Corresponds to the JSON property `trials` @return [Array<Google::Apis::MlV1::GoogleCloudMlV1Trial>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 2601 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ml_v1/classes.rb, line 2606 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) @study_state = args[:study_state] if args.key?(:study_state) @trials = args[:trials] if args.key?(:trials) end