class Google::Apis::MlV1::GoogleCloudMlV1CheckTrialEarlyStoppingStateMetatdata

This message will be placed in the metadata field of a google.longrunning. Operation associated with a CheckTrialEarlyStoppingState request.

Attributes

create_time[RW]

The time at which the operation was submitted. Corresponds to the JSON property `createTime` @return [String]

study[RW]

The name of the study that the trial belongs to. Corresponds to the JSON property `study` @return [String]

trial[RW]

The trial name. Corresponds to the JSON property `trial` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 694
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 699
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @study = args[:study] if args.key?(:study)
  @trial = args[:trial] if args.key?(:trial)
end