Class: Google::Apis::DataprocV1::RddOperationNode
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::RddOperationNode
- 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
A node in the RDD operation graph. Corresponds to a single RDD.
Instance Attribute Summary collapse
-
#barrier ⇒ Boolean
(also: #barrier?)
Corresponds to the JSON property
barrier. -
#cached ⇒ Boolean
(also: #cached?)
Corresponds to the JSON property
cached. -
#callsite ⇒ String
Corresponds to the JSON property
callsite. -
#name ⇒ String
Corresponds to the JSON property
name. -
#node_id ⇒ Fixnum
Corresponds to the JSON property
nodeId. -
#output_deterministic_level ⇒ String
Corresponds to the JSON property
outputDeterministicLevel.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RddOperationNode
constructor
A new instance of RddOperationNode.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RddOperationNode
Returns a new instance of RddOperationNode.
6848 6849 6850 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6848 def initialize(**args) update!(**args) end |
Instance Attribute Details
#barrier ⇒ Boolean Also known as: barrier?
Corresponds to the JSON property barrier
6819 6820 6821 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6819 def @barrier end |
#cached ⇒ Boolean Also known as: cached?
Corresponds to the JSON property cached
6825 6826 6827 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6825 def cached @cached end |
#callsite ⇒ String
Corresponds to the JSON property callsite
6831 6832 6833 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6831 def callsite @callsite end |
#name ⇒ String
Corresponds to the JSON property name
6836 6837 6838 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6836 def name @name end |
#node_id ⇒ Fixnum
Corresponds to the JSON property nodeId
6841 6842 6843 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6841 def node_id @node_id end |
#output_deterministic_level ⇒ String
Corresponds to the JSON property outputDeterministicLevel
6846 6847 6848 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6846 def output_deterministic_level @output_deterministic_level end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6853 6854 6855 6856 6857 6858 6859 6860 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6853 def update!(**args) @barrier = args[:barrier] if args.key?(:barrier) @cached = args[:cached] if args.key?(:cached) @callsite = args[:callsite] if args.key?(:callsite) @name = args[:name] if args.key?(:name) @node_id = args[:node_id] if args.key?(:node_id) @output_deterministic_level = args[:output_deterministic_level] if args.key?(:output_deterministic_level) end |