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

LabelDescriptor

import type { LabelDescriptor } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

A description of a label.

interface LabelDescriptor {
description?: string;
key?: string;
valueType?: "STRING" | "BOOL" | "INT64";
}

§Properties

§
description?: string
[src]

A human-readable description for the label.

§
key?: string
[src]

The key for this label. The key must meet the following criteria: Does not exceed 100 characters. Matches the following regular expression: [a-zA-Z][a-zA-Z0-9_]* The first character must be an upper- or lower-case letter. The remaining characters must be letters, digits, or underscores.

§
valueType?: "STRING" | "BOOL" | "INT64"
[src]

The type of data that can be assigned to the label.