Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Study
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Study
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/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::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpec
Represents specification of a Study.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1Study
constructor
A new instance of GoogleCloudAiplatformV1beta1Study.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1Study
Returns a new instance of GoogleCloudAiplatformV1beta1Study.
62557 62558 62559 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62557 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
62528 62529 62530 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62528 def create_time @create_time end |
#display_name ⇒ String
Required. Describes the Study, default value is empty string.
Corresponds to the JSON property displayName
62533 62534 62535 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62533 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
62539 62540 62541 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62539 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`
62545 62546 62547 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62545 def name @name end |
#state ⇒ String
Output only. The detailed state of a Study.
Corresponds to the JSON property state
62550 62551 62552 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62550 def state @state end |
#study_spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpec
Represents specification of a Study.
Corresponds to the JSON property studySpec
62555 62556 62557 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62555 def study_spec @study_spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
62562 62563 62564 62565 62566 62567 62568 62569 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 62562 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 |