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

StreamObject

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

A specific stream object (e.g a specific DB table).

interface StreamObject {
backfillJob?: BackfillJob;
readonly createTime?: Date;
displayName?: string;
readonly errors?: Error[];
readonly name?: string;
sourceObject?: SourceObjectIdentifier;
readonly updateTime?: Date;
}

§Properties

§
backfillJob?: BackfillJob
[src]

The latest backfill job that was initiated for the stream object.

§
readonly createTime?: Date
[src]

Output only. The creation time of the object.

§
displayName?: string
[src]

Required. Display name.

§
readonly errors?: Error[]
[src]

Output only. Active errors on the object.

§
readonly name?: string
[src]

Output only. The object resource's name.

§

The object identifier in the data source.

§
readonly updateTime?: Date
[src]

Output only. The last update time of the object.