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

SplitPoints

import type { SplitPoints } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

The split points of a table or an index.

interface SplitPoints {
expireTime?: Date;
index?: string;
keys?: Key[];
table?: string;
}

§Properties

§
expireTime?: Date
[src]

Optional. The expiration timestamp of the split points. A timestamp in the past means immediate expiration. The maximum value can be 30 days in the future. Defaults to 10 days in the future if not specified.

§
index?: string
[src]

The index to split. If specified, the table field must refer to the index's base table.

§
keys?: Key[]
[src]

Required. The list of split keys. In essence, the split boundaries.

§
table?: string
[src]

The table to split.