Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineTaskRerunConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineTaskRerunConfig
- 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
User provided rerun config to submit a rerun pipelinejob. This includes 1. Which task to rerun 2. User override input parameters and artifacts.
Instance Attribute Summary collapse
-
#inputs ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineTaskRerunConfigInputs
Runtime inputs data of the task.
-
#skip_downstream_tasks ⇒ Boolean
(also: #skip_downstream_tasks?)
Optional.
-
#skip_task ⇒ Boolean
(also: #skip_task?)
Optional.
-
#task_id ⇒ Fixnum
Optional.
-
#task_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PipelineTaskRerunConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1PipelineTaskRerunConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PipelineTaskRerunConfig
Returns a new instance of GoogleCloudAiplatformV1beta1PipelineTaskRerunConfig.
23417 23418 23419 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23417 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inputs ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineTaskRerunConfigInputs
Runtime inputs data of the task.
Corresponds to the JSON property inputs
23393 23394 23395 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23393 def inputs @inputs end |
#skip_downstream_tasks ⇒ Boolean Also known as: skip_downstream_tasks?
Optional. Whether to skip downstream tasks. Default value is False.
Corresponds to the JSON property skipDownstreamTasks
23398 23399 23400 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23398 def skip_downstream_tasks @skip_downstream_tasks end |
#skip_task ⇒ Boolean Also known as: skip_task?
Optional. Whether to skip this task. Default value is False.
Corresponds to the JSON property skipTask
23404 23405 23406 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23404 def skip_task @skip_task end |
#task_id ⇒ Fixnum
Optional. The system generated ID of the task. Retrieved from original run.
Corresponds to the JSON property taskId
23410 23411 23412 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23410 def task_id @task_id end |
#task_name ⇒ String
Optional. The name of the task.
Corresponds to the JSON property taskName
23415 23416 23417 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23415 def task_name @task_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23422 23423 23424 23425 23426 23427 23428 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23422 def update!(**args) @inputs = args[:inputs] if args.key?(:inputs) @skip_downstream_tasks = args[:skip_downstream_tasks] if args.key?(:skip_downstream_tasks) @skip_task = args[:skip_task] if args.key?(:skip_task) @task_id = args[:task_id] if args.key?(:task_id) @task_name = args[:task_name] if args.key?(:task_name) end |