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

ColumnFamily

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

A set of columns within a table which share a common configuration.

interface ColumnFamily {
gcRule?: GcRule;
readonly stats?: ColumnFamilyStats;
valueType?: Type;
}

§Properties

§
gcRule?: GcRule
[src]

Garbage collection rule specified as a protobuf. Must serialize to at most 500 bytes. NOTE: Garbage collection executes opportunistically in the background, and so it's possible for reads to return a cell even if it matches the active GC expression for its family.

§
readonly stats?: ColumnFamilyStats
[src]

Output only. Only available with STATS_VIEW, this includes summary statistics about column family contents. For statistics over an entire table, see TableStats above.

§
valueType?: Type
[src]

The type of data stored in each of this family's cell values, including its full encoding. If omitted, the family only serves raw untyped bytes. For now, only the Aggregate type is supported. Aggregate can only be set at family creation and is immutable afterwards. If value_type is Aggregate, written data must be compatible with: * value_type.input_type for AddInput mutations