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

BackfillJob

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

Represents a backfill job on a specific stream object.

interface BackfillJob {
readonly errors?: Error[];
readonly lastEndTime?: Date;
readonly lastStartTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "NOT_STARTED"
| "PENDING"
| "ACTIVE"
| "STOPPED"
| "FAILED"
| "COMPLETED"
| "UNSUPPORTED";
trigger?: "TRIGGER_UNSPECIFIED" | "AUTOMATIC" | "MANUAL";
}

§Properties

§
readonly errors?: Error[]
[src]

Output only. Errors which caused the backfill job to fail.

§
readonly lastEndTime?: Date
[src]

Output only. Backfill job's end time.

§
readonly lastStartTime?: Date
[src]

Output only. Backfill job's start time.

§
readonly state?: "STATE_UNSPECIFIED" | "NOT_STARTED" | "PENDING" | "ACTIVE" | "STOPPED" | "FAILED" | "COMPLETED" | "UNSUPPORTED"
[src]

Output only. Backfill job state.

§
trigger?: "TRIGGER_UNSPECIFIED" | "AUTOMATIC" | "MANUAL"
[src]

Backfill job's triggering reason.