Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineJobDetail

Inherits:
Object
  • Object
show all
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

The runtime detail of PipelineJob.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PipelineJobDetail

Returns a new instance of GoogleCloudAiplatformV1beta1PipelineJobDetail.



17557
17558
17559
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17557

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#pipeline_contextGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Context

Instance of a general context. Corresponds to the JSON property pipelineContext



17545
17546
17547
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17545

def pipeline_context
  @pipeline_context
end

#pipeline_run_contextGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Context

Instance of a general context. Corresponds to the JSON property pipelineRunContext



17550
17551
17552
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17550

def pipeline_run_context
  @pipeline_run_context
end

#task_detailsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineTaskDetail>

Output only. The runtime details of the tasks under the pipeline. Corresponds to the JSON property taskDetails



17555
17556
17557
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17555

def task_details
  @task_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17562
17563
17564
17565
17566
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17562

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