Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail

Returns a new instance of GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail.



18178
18179
18180
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18178

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>)


18171
18172
18173
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18171

def failed_jobs
  @failed_jobs
end

#jobString

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

Returns:

  • (String)


18176
18177
18178
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18176

def job
  @job
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18183
18184
18185
18186
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18183

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