Class: Google::Apis::DataprocV1::RddOperationNode

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

A node in the RDD operation graph. Corresponds to a single RDD.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RddOperationNode

Returns a new instance of RddOperationNode.



6850
6851
6852
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6850

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

Instance Attribute Details

#barrierBoolean Also known as: barrier?

Corresponds to the JSON property barrier

Returns:

  • (Boolean)


6821
6822
6823
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6821

def barrier
  @barrier
end

#cachedBoolean Also known as: cached?

Corresponds to the JSON property cached

Returns:

  • (Boolean)


6827
6828
6829
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6827

def cached
  @cached
end

#callsiteString

Corresponds to the JSON property callsite

Returns:

  • (String)


6833
6834
6835
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6833

def callsite
  @callsite
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


6838
6839
6840
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6838

def name
  @name
end

#node_idFixnum

Corresponds to the JSON property nodeId

Returns:

  • (Fixnum)


6843
6844
6845
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6843

def node_id
  @node_id
end

#output_deterministic_levelString

Corresponds to the JSON property outputDeterministicLevel

Returns:

  • (String)


6848
6849
6850
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6848

def output_deterministic_level
  @output_deterministic_level
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6855
6856
6857
6858
6859
6860
6861
6862
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6855

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