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

GcRule

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

Rule for determining which cells to delete during garbage collection.

interface GcRule {
intersection?: Intersection;
maxAge?: number;
maxNumVersions?: number;
union?: Union;
}

§Properties

§
intersection?: Intersection
[src]

Delete cells that would be deleted by every nested rule.

§
maxAge?: number
[src]

Delete cells in a column older than the given age. Values must be at least one millisecond, and will be truncated to microsecond granularity.

§
maxNumVersions?: number
[src]

Delete all cells in a column except the most recent N.

§
union?: Union
[src]

Delete cells that would be deleted by any nested rule.