Class: Google::Apis::DataprocV1::ClusterSelector
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::ClusterSelector
- 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 selector that chooses target cluster for jobs based on metadata.
Instance Attribute Summary collapse
-
#cluster_labels ⇒ Hash<String,String>
Required.
-
#zone ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClusterSelector
constructor
A new instance of ClusterSelector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClusterSelector
Returns a new instance of ClusterSelector.
890 891 892 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 890 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cluster_labels ⇒ Hash<String,String>
Required. The cluster labels. Cluster must have all labels to match.
Corresponds to the JSON property clusterLabels
881 882 883 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 881 def cluster_labels @cluster_labels end |
#zone ⇒ String
Optional. The zone where workflow process executes. This parameter does not
affect the selection of the cluster.If unspecified, the zone of the first
cluster matching the selector is used.
Corresponds to the JSON property zone
888 889 890 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 888 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
895 896 897 898 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 895 def update!(**args) @cluster_labels = args[:cluster_labels] if args.key?(:cluster_labels) @zone = args[:zone] if args.key?(:zone) end |