class Google::Apis::DataprocV1beta2::WorkflowNode

The workflow node.

Attributes

error[RW]

Output only. The error detail. Corresponds to the JSON property `error` @return [String]

job_id[RW]

Output only. The job id; populated after the node enters RUNNING state. Corresponds to the JSON property `jobId` @return [String]

prerequisite_step_ids[RW]

Output only. Node's prerequisite nodes. Corresponds to the JSON property `prerequisiteStepIds` @return [Array<String>]

state[RW]

Output only. The node state. Corresponds to the JSON property `state` @return [String]

step_id[RW]

Output only. The name of the node. Corresponds to the JSON property `stepId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 3621
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataproc_v1beta2/classes.rb, line 3626
def update!(**args)
  @error = args[:error] if args.key?(:error)
  @job_id = args[:job_id] if args.key?(:job_id)
  @prerequisite_step_ids = args[:prerequisite_step_ids] if args.key?(:prerequisite_step_ids)
  @state = args[:state] if args.key?(:state)
  @step_id = args[:step_id] if args.key?(:step_id)
end