Struct google_dataproc1::ClusterSelector[][src]

pub struct ClusterSelector {
    pub cluster_labels: Option<HashMap<String, String>>,
    pub zone: Option<String>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

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

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.

Trait Implementations

impl Default for ClusterSelector
[src]

Returns the "default value" for a type. Read more

impl Clone for ClusterSelector
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ClusterSelector
[src]

Formats the value using the given formatter. Read more

impl Part for ClusterSelector
[src]

Auto Trait Implementations