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

VisualizationData

import type { VisualizationData } from "https://googleapis.deno.dev/v1/spanner:v1.ts";
interface VisualizationData {
dataSourceEndToken?: string;
dataSourceSeparatorToken?: string;
diagnosticMessages?: DiagnosticMessage[];
endKeyStrings?: string[];
hasPii?: boolean;
indexedKeys?: string[];
keySeparator?: string;
keyUnit?: "KEY_UNIT_UNSPECIFIED" | "KEY" | "CHUNK";
metrics?: Metric[];
prefixNodes?: PrefixNode[];
}

§Properties

§
dataSourceEndToken?: string
[src]

The token signifying the end of a data_source.

§
dataSourceSeparatorToken?: string
[src]

The token delimiting a datasource name from the rest of a key in a data_source.

§
diagnosticMessages?: DiagnosticMessage[]
[src]

The list of messages (info, alerts, ...)

§
endKeyStrings?: string[]
[src]

We discretize the entire keyspace into buckets. Assuming each bucket has an inclusive keyrange and covers keys from k(i) ... k(n). In this case k(n) would be an end key for a given range. end_key_string is the collection of all such end keys

§
hasPii?: boolean
[src]

Whether this scan contains PII.

§
indexedKeys?: string[]
[src]

Keys of key ranges that contribute significantly to a given metric Can be thought of as heavy hitters.

§
keySeparator?: string
[src]

The token delimiting the key prefixes.

§
keyUnit?: "KEY_UNIT_UNSPECIFIED" | "KEY" | "CHUNK"
[src]

The unit for the key: e.g. 'key' or 'chunk'.

§
metrics?: Metric[]
[src]

The list of data objects for each metric.

§
prefixNodes?: PrefixNode[]
[src]

The list of extracted key prefix nodes used in the key prefix hierarchy.