Class: Google::Apis::MlV1::GoogleCloudMlV1CompleteTrialRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/ml_v1/classes.rb,
lib/google/apis/ml_v1/representations.rb,
lib/google/apis/ml_v1/representations.rb

Overview

The request message for the CompleteTrial service method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1CompleteTrialRequest

Returns a new instance of GoogleCloudMlV1CompleteTrialRequest.



774
775
776
# File 'lib/google/apis/ml_v1/classes.rb', line 774

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

Instance Attribute Details

#final_measurementGoogle::Apis::MlV1::GoogleCloudMlV1Measurement

A message representing a measurement. Corresponds to the JSON property finalMeasurement



759
760
761
# File 'lib/google/apis/ml_v1/classes.rb', line 759

def final_measurement
  @final_measurement
end

#infeasible_reasonString

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

Returns:

  • (String)


765
766
767
# File 'lib/google/apis/ml_v1/classes.rb', line 765

def infeasible_reason
  @infeasible_reason
end

#trial_infeasibleBoolean Also known as: trial_infeasible?

Optional. True if the trial cannot be run with the given Parameter, and final_measurement will be ignored. Corresponds to the JSON property trialInfeasible

Returns:

  • (Boolean)


771
772
773
# File 'lib/google/apis/ml_v1/classes.rb', line 771

def trial_infeasible
  @trial_infeasible
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



779
780
781
782
783
# 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