Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobDetail

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineJobDetail

Returns a new instance of GoogleCloudAiplatformV1PipelineJobDetail.



21844
21845
21846
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21844

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

Instance Attribute Details

#pipeline_contextGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1Context

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



21832
21833
21834
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21832

def pipeline_context
  @pipeline_context
end

#pipeline_run_contextGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1Context

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



21837
21838
21839
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21837

def pipeline_run_context
  @pipeline_run_context
end

#task_detailsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskDetail>

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



21842
21843
21844
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21842

def task_details
  @task_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21849
21850
21851
21852
21853
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21849

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