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

IntegerRangePartition

import type { IntegerRangePartition } from "https://googleapis.deno.dev/v1/datastream:v1.ts";
interface IntegerRangePartition {
column?: string;
end?: bigint;
interval?: bigint;
start?: bigint;
}

§Properties

§
column?: string
[src]

Required. The partitioning column.

§
end?: bigint
[src]

Required. The ending value for range partitioning (exclusive).

§
interval?: bigint
[src]

Required. The interval of each range within the partition.

§
start?: bigint
[src]

Required. The starting value for range partitioning (inclusive).