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

GoogleBigtableAdminV2TypeMap

import type { GoogleBigtableAdminV2TypeMap } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

A mapping of keys to values of a given type. Values of type Map are stored in a Value.array_value where each entry is another Value.array_value with two elements (the key and the value, in that order). Normally encoded Map values won't have repeated keys, however, clients are expected to handle the case in which they do. If the same key appears multiple times, the last value takes precedence.

interface GoogleBigtableAdminV2TypeMap {
keyType?: Type;
valueType?: Type;
}

§Properties

§
keyType?: Type
[src]

The type of a map key. Only Bytes, String, and Int64 are allowed as key types.

§
valueType?: Type
[src]

The type of the values in a map.