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

SequenceEntity

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

Sequence's parent is a schema.

interface SequenceEntity {
cache?: bigint;
customFeatures?: {
[key: string]: any;
}
;
cycle?: boolean;
increment?: bigint;
maxValue?: Uint8Array;
minValue?: Uint8Array;
startValue?: Uint8Array;
}

§Properties

§
cache?: bigint
[src]

Indicates number of entries to cache / precreate.

§
customFeatures?: {
[key: string]: any;
}
[src]

Custom engine specific features.

§
cycle?: boolean
[src]

Indicates whether the sequence value should cycle through.

§
increment?: bigint
[src]

Increment value for the sequence.

§
maxValue?: Uint8Array
[src]

Maximum number for the sequence represented as bytes to accommodate large. numbers

§
minValue?: Uint8Array
[src]

Minimum number for the sequence represented as bytes to accommodate large. numbers

§
startValue?: Uint8Array
[src]

Start number for the sequence represented as bytes to accommodate large. numbers