class Google::Apis::MlV1::GoogleCloudMlV1CompleteTrialRequest
The request message for the CompleteTrial service method.
Attributes
A message representing a measurement. Corresponds to the JSON property `finalMeasurement` @return [Google::Apis::MlV1::GoogleCloudMlV1Measurement]
Optional. A human readable reason why the trial was infeasible. This should only be provided if `trial_infeasible` is true. Corresponds to the JSON property `infeasibleReason` @return [String]
Optional. True if the trial cannot be run with the given Parameter, and final_measurement
will be ignored. Corresponds to the JSON property `trialInfeasible` @return [Boolean]
Optional. True if the trial cannot be run with the given Parameter, and final_measurement
will be ignored. Corresponds to the JSON property `trialInfeasible` @return [Boolean]
Public Class Methods
# File lib/google/apis/ml_v1/classes.rb, line 774 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/ml_v1/classes.rb, line 779 def update!(**args) @final_measurement = args[:final_measurement] if args.key?(:final_measurement) @infeasible_reason = args[:infeasible_reason] if args.key?(:infeasible_reason) @trial_infeasible = args[:trial_infeasible] if args.key?(:trial_infeasible) end