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

Modification

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

A create, update, or delete of a particular column family.

interface Modification {
create?: ColumnFamily;
drop?: boolean;
id?: string;
update?: ColumnFamily;
updateMask?: string;
}

§Properties

§

Create a new column family with the specified schema, or fail if one already exists with the given ID.

§
drop?: boolean
[src]

Drop (delete) the column family with the given ID, or fail if no such family exists.

§
id?: string
[src]

The ID of the column family to be modified.

§

Update an existing column family to the specified schema, or fail if no column family exists with the given ID.

§
updateMask?: string
[src]

Optional. A mask specifying which fields (e.g. gc_rule) in the update mod should be updated, ignored for other modification types. If unset or empty, we treat it as updating gc_rule to be backward compatible.