Show / Hide Table of Contents

Class ClusterSelector

A selector that chooses target cluster for jobs based on metadata.

Inheritance
System.Object
ClusterSelector
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dataproc.v1beta2.Data
Assembly: Google.Apis.Dataproc.v1beta2.dll
Syntax
public class ClusterSelector : IDirectResponseSchema

Properties

ClusterLabels

Required. The cluster labels. Cluster must have all labels to match.

Declaration
[JsonProperty("clusterLabels")]
public virtual IDictionary<string, string> ClusterLabels { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Zone

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.

Declaration
[JsonProperty("zone")]
public virtual string Zone { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top