Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Study
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Study
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
A message representing a Study.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Required.
-
#inactive_reason ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#state ⇒ String
Output only.
-
#study_spec ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StudySpec
Represents specification of a Study.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1Study
constructor
A new instance of GoogleCloudAiplatformV1Study.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1Study
Returns a new instance of GoogleCloudAiplatformV1Study.
21386 21387 21388 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21386 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Time at which the study was created.
Corresponds to the JSON property createTime
21357 21358 21359 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21357 def create_time @create_time end |
#display_name ⇒ String
Required. Describes the Study, default value is empty string.
Corresponds to the JSON property displayName
21362 21363 21364 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21362 def display_name @display_name end |
#inactive_reason ⇒ String
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
21368 21369 21370 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21368 def inactive_reason @inactive_reason end |
#name ⇒ String
Output only. The name of a study. The study's globally unique identifier.
Format: projects/project/locations/location/studies/study`
Corresponds to the JSON propertyname`
21374 21375 21376 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21374 def name @name end |
#state ⇒ String
Output only. The detailed state of a Study.
Corresponds to the JSON property state
21379 21380 21381 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21379 def state @state end |
#study_spec ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StudySpec
Represents specification of a Study.
Corresponds to the JSON property studySpec
21384 21385 21386 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21384 def study_spec @study_spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21391 21392 21393 21394 21395 21396 21397 21398 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21391 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @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_spec = args[:study_spec] if args.key?(:study_spec) end |