Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail
- 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
-
#failed_jobs ⇒ Array<String>
Output only.
-
#job ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail
constructor
A new instance of GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail
Returns a new instance of GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail.
16886 16887 16888 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16886 def initialize(**args) update!(**args) end |
Instance Attribute Details
#failed_jobs ⇒ Array<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
16879 16880 16881 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16879 def failed_jobs @failed_jobs end |
#job ⇒ String
Output only. The name of the CustomJob.
Corresponds to the JSON property job
16884 16885 16886 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16884 def job @job end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16891 16892 16893 16894 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16891 def update!(**args) @failed_jobs = args[:failed_jobs] if args.key?(:failed_jobs) @job = args[:job] if args.key?(:job) end |