Class: Google::Apis::DataprocV1::WorkflowNode

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

The workflow node.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WorkflowNode

Returns a new instance of WorkflowNode.



11786
11787
11788
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11786

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#errorString

Output only. The error detail. Corresponds to the JSON property error

Returns:

  • (String)


11764
11765
11766
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11764

def error
  @error
end

#job_idString

Output only. The job id; populated after the node enters RUNNING state. Corresponds to the JSON property jobId

Returns:

  • (String)


11769
11770
11771
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11769

def job_id
  @job_id
end

#prerequisite_step_idsArray<String>

Output only. Node's prerequisite nodes. Corresponds to the JSON property prerequisiteStepIds

Returns:

  • (Array<String>)


11774
11775
11776
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11774

def prerequisite_step_ids
  @prerequisite_step_ids
end

#stateString

Output only. The node state. Corresponds to the JSON property state

Returns:

  • (String)


11779
11780
11781
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11779

def state
  @state
end

#step_idString

Output only. The name of the node. Corresponds to the JSON property stepId

Returns:

  • (String)


11784
11785
11786
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11784

def step_id
  @step_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11791
11792
11793
11794
11795
11796
11797
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11791

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