Class: Google::Apis::DataprocV1::WorkflowTemplatePlacement

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

Specifies workflow execution target.Either managed_cluster or cluster_selector is required.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WorkflowTemplatePlacement

Returns a new instance of WorkflowTemplatePlacement.



6550
6551
6552
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6550

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

Instance Attribute Details

#cluster_selectorGoogle::Apis::DataprocV1::ClusterSelector

A selector that chooses target cluster for jobs based on metadata. Corresponds to the JSON property clusterSelector



6543
6544
6545
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6543

def cluster_selector
  @cluster_selector
end

#managed_clusterGoogle::Apis::DataprocV1::ManagedCluster

Cluster that is managed by the workflow. Corresponds to the JSON property managedCluster



6548
6549
6550
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6548

def managed_cluster
  @managed_cluster
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6555
6556
6557
6558
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6555

def update!(**args)
  @cluster_selector = args[:cluster_selector] if args.key?(:cluster_selector)
  @managed_cluster = args[:managed_cluster] if args.key?(:managed_cluster)
end