class Google::Apis::MlV1::GoogleCloudMlV1Study
A message representing a Study.
Attributes
create_time[RW]
Output only. Time at which the study was created. Corresponds to the JSON property `createTime` @return [String]
inactive_reason[RW]
Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED. Corresponds to the JSON property `inactiveReason` @return [String]
name[RW]
Output only. The name of a study. Corresponds to the JSON property `name` @return [String]
state[RW]
Output only. The detailed state of a study. Corresponds to the JSON property `state` @return [String]
study_config[RW]
Represents configuration of a study. Corresponds to the JSON property `studyConfig` @return [Google::Apis::MlV1::GoogleCloudMlV1StudyConfig]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 2458 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 2463 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @inactive_reason = args[:inactive_reason] if args.key?(:inactive_reason) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @study_config = args[:study_config] if args.key?(:study_config) end