Class: Google::Apis::DataprocV1::WorkflowTemplatePlacement
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::WorkflowTemplatePlacement
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1/classes.rb,
generated/google/apis/dataproc_v1/representations.rb,
generated/google/apis/dataproc_v1/representations.rb
Overview
Specifies workflow execution target.Either managed_cluster or cluster_selector is required.
Instance Attribute Summary collapse
-
#cluster_selector ⇒ Google::Apis::DataprocV1::ClusterSelector
A selector that chooses target cluster for jobs based on metadata.
-
#managed_cluster ⇒ Google::Apis::DataprocV1::ManagedCluster
Cluster that is managed by the workflow.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkflowTemplatePlacement
constructor
A new instance of WorkflowTemplatePlacement.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkflowTemplatePlacement
Returns a new instance of WorkflowTemplatePlacement.
3569 3570 3571 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 3569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cluster_selector ⇒ Google::Apis::DataprocV1::ClusterSelector
A selector that chooses target cluster for jobs based on metadata.
Corresponds to the JSON property clusterSelector
3562 3563 3564 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 3562 def cluster_selector @cluster_selector end |
#managed_cluster ⇒ Google::Apis::DataprocV1::ManagedCluster
Cluster that is managed by the workflow.
Corresponds to the JSON property managedCluster
3567 3568 3569 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 3567 def managed_cluster @managed_cluster end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3574 3575 3576 3577 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 3574 def update!(**args) @cluster_selector = args[:cluster_selector] if args.key?(:cluster_selector) @managed_cluster = args[:managed_cluster] if args.key?(:managed_cluster) end |