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

PatchInstanceFilterGroupLabel

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

Targets a group of VM instances by using their assigned labels. Labels are key-value pairs. A GroupLabel is a combination of labels that is used to target VMs for a patch job. For example, a patch job can target VMs that have the following GroupLabel: {"env":"test", "app":"web"}. This means that the patch job is applied to VMs that have both the labels env=test and app=web.

interface PatchInstanceFilterGroupLabel {
labels?: {
[key: string]: string;
}
;
}

§Properties

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

Compute Engine instance labels that must be present for a VM instance to be targeted by this filter.