Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetail
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetail
- 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 a pipeline executor.
Instance Attribute Summary collapse
-
#container_detail ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
The detail of a container execution.
-
#custom_job_detail ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail
The detailed info for a custom job executor.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineTaskExecutorDetail
constructor
A new instance of GoogleCloudAiplatformV1PipelineTaskExecutorDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PipelineTaskExecutorDetail
Returns a new instance of GoogleCloudAiplatformV1PipelineTaskExecutorDetail.
18107 18108 18109 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18107 def initialize(**args) update!(**args) end |
Instance Attribute Details
#container_detail ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail
The detail of a container execution. It contains the job names of the
lifecycle of a container execution.
Corresponds to the JSON property containerDetail
18100 18101 18102 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18100 def container_detail @container_detail end |
#custom_job_detail ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineTaskExecutorDetailCustomJobDetail
The detailed info for a custom job executor.
Corresponds to the JSON property customJobDetail
18105 18106 18107 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18105 def custom_job_detail @custom_job_detail end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18112 18113 18114 18115 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18112 def update!(**args) @container_detail = args[:container_detail] if args.key?(:container_detail) @custom_job_detail = args[:custom_job_detail] if args.key?(:custom_job_detail) end |