Class: Google::Apis::DataprocV1::RddOperationCluster

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 grouping of nodes representing higher level constructs (stage, job etc.).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RddOperationCluster

Returns a new instance of RddOperationCluster.



6725
6726
6727
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6725

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

Instance Attribute Details

#child_clustersArray<Google::Apis::DataprocV1::RddOperationCluster>

Corresponds to the JSON property childClusters



6708
6709
6710
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6708

def child_clusters
  @child_clusters
end

#child_nodesArray<Google::Apis::DataprocV1::RddOperationNode>

Corresponds to the JSON property childNodes



6713
6714
6715
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6713

def child_nodes
  @child_nodes
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


6718
6719
6720
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6718

def name
  @name
end

#rdd_cluster_idString

Corresponds to the JSON property rddClusterId

Returns:

  • (String)


6723
6724
6725
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6723

def rdd_cluster_id
  @rdd_cluster_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6730
6731
6732
6733
6734
6735
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6730

def update!(**args)
  @child_clusters = args[:child_clusters] if args.key?(:child_clusters)
  @child_nodes = args[:child_nodes] if args.key?(:child_nodes)
  @name = args[:name] if args.key?(:name)
  @rdd_cluster_id = args[:rdd_cluster_id] if args.key?(:rdd_cluster_id)
end