Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineTaskExecutorDetailCustomJobDetail

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 detailed info for a custom job executor.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PipelineTaskExecutorDetailCustomJobDetail

Returns a new instance of GoogleCloudAiplatformV1beta1PipelineTaskExecutorDetailCustomJobDetail.



20747
20748
20749
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20747

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

Instance Attribute Details

#failed_jobsArray<String>

Output only. The names of the previously failed CustomJob. The list includes the all attempts in chronological order. Corresponds to the JSON property failedJobs

Returns:

  • (Array<String>)


20740
20741
20742
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20740

def failed_jobs
  @failed_jobs
end

#jobString

Output only. The name of the CustomJob. Corresponds to the JSON property job

Returns:

  • (String)


20745
20746
20747
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20745

def job
  @job
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20752
20753
20754
20755
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20752

def update!(**args)
  @failed_jobs = args[:failed_jobs] if args.key?(:failed_jobs)
  @job = args[:job] if args.key?(:job)
end