Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobDetail
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobDetail
- 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
The runtime detail of PipelineJob.
Instance Attribute Summary collapse
-
#pipeline_context ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Context
Instance of a general context.
-
#pipeline_run_context ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Context
Instance of a general context.
-
#task_details ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskDetail>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineJobDetail
constructor
A new instance of GoogleCloudAiplatformV1PipelineJobDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineJobDetail
Returns a new instance of GoogleCloudAiplatformV1PipelineJobDetail.
18781 18782 18783 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18781 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pipeline_context ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Context
Instance of a general context.
Corresponds to the JSON property pipelineContext
18769 18770 18771 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18769 def pipeline_context @pipeline_context end |
#pipeline_run_context ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Context
Instance of a general context.
Corresponds to the JSON property pipelineRunContext
18774 18775 18776 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18774 def pipeline_run_context @pipeline_run_context end |
#task_details ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskDetail>
Output only. The runtime details of the tasks under the pipeline.
Corresponds to the JSON property taskDetails
18779 18780 18781 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18779 def task_details @task_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18786 18787 18788 18789 18790 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18786 def update!(**args) @pipeline_context = args[:pipeline_context] if args.key?(:pipeline_context) @pipeline_run_context = args[:pipeline_run_context] if args.key?(:pipeline_run_context) @task_details = args[:task_details] if args.key?(:task_details) end |