Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClusterSelector

import type { ClusterSelector } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";

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

interface ClusterSelector {
clusterLabels?: {
[key: string]: string;
}
;
zone?: string;
}

§Properties

§
clusterLabels?: {
[key: string]: string;
}
[src]

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

§
zone?: string
[src]

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.